From a3d216b0febda4096c1fb6313dbe808c4d12463d Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 09:49:31 +0200 Subject: [PATCH 01/31] feat: bump version for release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 409a1e8..22d3c72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rattler-build-conda-compat" description = "A package for exposing rattler-build API for conda-smithy" -version = "0.0.6" +version = "0.1.0" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } From 9b57294d1eaca777b1ae1013033c59aa5f6bd085 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 10:51:07 +0200 Subject: [PATCH 02/31] feat: update lock file --- pixi.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixi.lock b/pixi.lock index 7772eeb..6e36b31 100644 --- a/pixi.lock +++ b/pixi.lock @@ -6435,9 +6435,9 @@ packages: timestamp: 1713391855237 - kind: pypi name: rattler-build-conda-compat - version: 0.0.6 + version: 0.1.0 path: . - sha256: f11d32b1443e3574fc24925558cadcb965a275cabcda4e287ff5935e233c9227 + sha256: 324e11b9ddce4d7441796e04819a8240743a6dfda08ebec660a00fd31445ef86 requires_python: '>=3.8' editable: true - kind: conda From 8fe6ef6d27b5e3c53590036918eb099b6063bed3 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 11:02:21 +0200 Subject: [PATCH 03/31] feat: update to releasable version --- pixi.lock | 4 ++-- pixi.toml | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pixi.lock b/pixi.lock index 6e36b31..1c3aa2b 100644 --- a/pixi.lock +++ b/pixi.lock @@ -6435,9 +6435,9 @@ packages: timestamp: 1713391855237 - kind: pypi name: rattler-build-conda-compat - version: 0.1.0 + version: 0.1.2 path: . - sha256: 324e11b9ddce4d7441796e04819a8240743a6dfda08ebec660a00fd31445ef86 + sha256: 775cd60c25c0cc04f323d71c07f4c1cea8f79d5ef0b015110d4ed2e562fc4a11 requires_python: '>=3.8' editable: true - kind: conda diff --git a/pixi.toml b/pixi.toml index b16883a..2e5d2d2 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "rattler-build-conda-compat" -version = "0.0.6" +version = "0.1.2" description = "A package for exposing rattler-build API for conda-smithy" authors = ["nichmor "] channels = ["conda-forge"] diff --git a/pyproject.toml b/pyproject.toml index 22d3c72..6e79897 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rattler-build-conda-compat" description = "A package for exposing rattler-build API for conda-smithy" -version = "0.1.0" +version = "0.1.2" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } From 73df05777fcade44280d8317b9cf26f46fb809bd Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 11:06:47 +0200 Subject: [PATCH 04/31] feat: added some docs regarding releasing and update release --- docs/RELEASING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/RELEASING.md diff --git a/docs/RELEASING.md b/docs/RELEASING.md new file mode 100644 index 0000000..b42b595 --- /dev/null +++ b/docs/RELEASING.md @@ -0,0 +1,11 @@ +## Small guide to releasing + +Release new version: + +1. Update `pyproject.toml` and `pixi.toml` +2. Run `pixi install` +3. Add lock and toml files to commit. +4. Push to remote and see if CI is green. +5. Build an sdist using `pixi r build_sdist` +6. Create a tag `git tag v{version}` `git push --tags`. +7. Create the release on github and generate release notes. From 795604b8192ba09b426f8d0153af7708dabc8d1f Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 11:14:14 +0200 Subject: [PATCH 05/31] docs: updated docs some more --- docs/RELEASING.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/RELEASING.md b/docs/RELEASING.md index b42b595..d51ae6f 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -2,10 +2,11 @@ Release new version: -1. Update `pyproject.toml` and `pixi.toml` -2. Run `pixi install` -3. Add lock and toml files to commit. -4. Push to remote and see if CI is green. -5. Build an sdist using `pixi r build_sdist` -6. Create a tag `git tag v{version}` `git push --tags`. -7. Create the release on github and generate release notes. +1. Create a branch `release/v{version}` and do the following: +2. Update `pyproject.toml` and `pixi.toml` +3. Run `pixi install` +4. Add lock and toml files to commit. +5. Push to remote and see if CI is green. *if not*: either make changes in a seperate PR (if big), or here (if small). +6. Build an sdist using `pixi r build_sdist`. This needs to succeed. +7. Create a tag `git tag v{version}` `git push --tags`. +8. Create the release on github and generate release notes, update the generated sdist. From 8379be71864c5a8c16bcbd3ad11f2f4137517a28 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 11:15:37 +0200 Subject: [PATCH 06/31] fix: upload instead of update --- docs/RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/RELEASING.md b/docs/RELEASING.md index d51ae6f..decdbab 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -9,4 +9,4 @@ Release new version: 5. Push to remote and see if CI is green. *if not*: either make changes in a seperate PR (if big), or here (if small). 6. Build an sdist using `pixi r build_sdist`. This needs to succeed. 7. Create a tag `git tag v{version}` `git push --tags`. -8. Create the release on github and generate release notes, update the generated sdist. +8. Create the release on github and generate release notes, upload the generated sdist. From b8b686aba54b5ce20247c77b96afa41b6bb82d65 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 11:21:04 +0200 Subject: [PATCH 07/31] fix: typos --- docs/RELEASING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/RELEASING.md b/docs/RELEASING.md index decdbab..6ba0880 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -5,8 +5,8 @@ Release new version: 1. Create a branch `release/v{version}` and do the following: 2. Update `pyproject.toml` and `pixi.toml` 3. Run `pixi install` -4. Add lock and toml files to commit. -5. Push to remote and see if CI is green. *if not*: either make changes in a seperate PR (if big), or here (if small). +4. Add lock and toml files to commit. +5. Push to remote and see if CI is green. *if not*: either make changes in a separate PR (if big), or here (if small). 6. Build an sdist using `pixi r build_sdist`. This needs to succeed. 7. Create a tag `git tag v{version}` `git push --tags`. 8. Create the release on github and generate release notes, upload the generated sdist. From d94e19c45bced0a9ee529e1bfd3b2e311c1370d3 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 11:22:47 +0200 Subject: [PATCH 08/31] doc: add extra bullet --- docs/RELEASING.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/RELEASING.md b/docs/RELEASING.md index 6ba0880..59932c7 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -7,6 +7,7 @@ Release new version: 3. Run `pixi install` 4. Add lock and toml files to commit. 5. Push to remote and see if CI is green. *if not*: either make changes in a separate PR (if big), or here (if small). -6. Build an sdist using `pixi r build_sdist`. This needs to succeed. -7. Create a tag `git tag v{version}` `git push --tags`. -8. Create the release on github and generate release notes, upload the generated sdist. +7. Merge to main. +8. Build an sdist using `pixi r build_sdist`. This needs to succeed. +9. Create a tag `git tag v{version}` `git push --tags`. +10. Create the release on github and generate release notes, upload the generated sdist. From 99940de33fbcc14c994f2057366a4d835cfb0a4a Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 15:20:46 +0200 Subject: [PATCH 09/31] fix: logic error in url retrieval --- .gitignore | 1 + .../recipe_sources.py | 2 +- tests/data/outputs_source.yaml | 23 +++++++++++-------- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 0fb1fde..78e7d8d 100644 --- a/.gitignore +++ b/.gitignore @@ -165,3 +165,4 @@ mapping/*# pixi environments .pixi .vscode/ +.DS_store diff --git a/src/rattler_build_conda_compat/recipe_sources.py b/src/rattler_build_conda_compat/recipe_sources.py index 6485c33..441eaf5 100644 --- a/src/rattler_build_conda_compat/recipe_sources.py +++ b/src/rattler_build_conda_compat/recipe_sources.py @@ -43,7 +43,7 @@ def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: sources = output.get("source", None) sources = typing.cast(ConditionalList[Source], sources) if sources is None: - return + continue sources = visit_conditional_list(sources, None) for source in sources: if "url" in source: diff --git a/tests/data/outputs_source.yaml b/tests/data/outputs_source.yaml index 717c4c8..7559a01 100644 --- a/tests/data/outputs_source.yaml +++ b/tests/data/outputs_source.yaml @@ -1,11 +1,14 @@ outputs: - source: - - if: foo - then: - - url: https://foo.com - - if: bla - then: - - url: https://bar.com - else: - - url: https://baz.com - - url: https://qux.com + - package: + name: foo + version: 1.0.0 + - source: + - if: foo + then: + - url: https://foo.com + - if: bla + then: + - url: https://bar.com + else: + - url: https://baz.com + - url: https://qux.com From b1a23b93d65091f9211410baf9e34d7231ce6e4a Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 15:31:44 +0200 Subject: [PATCH 10/31] remove self type --- pixi.lock | 2 +- pyproject.toml | 1 + src/rattler_build_conda_compat/loader.py | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pixi.lock b/pixi.lock index 1c3aa2b..505012d 100644 --- a/pixi.lock +++ b/pixi.lock @@ -6437,7 +6437,7 @@ packages: name: rattler-build-conda-compat version: 0.1.2 path: . - sha256: 775cd60c25c0cc04f323d71c07f4c1cea8f79d5ef0b015110d4ed2e562fc4a11 + sha256: 26244d7fe823cdb32a6a8b63a5023e473a736a32805833183be07cd2c8c513a8 requires_python: '>=3.8' editable: true - kind: conda diff --git a/pyproject.toml b/pyproject.toml index 6e79897..077aa55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ ignore = [ "T201", # https://docs.astral.sh/ruff/rules/print/ "A003", # https://docs.astral.sh/ruff/rules/builtin-attribute-shadowing/ "PTH", # We dont want to change the API to pathlib just yet + "ANN101" # Deprecated ] exclude = [ "src/rattler_build_conda_compat/lint.py", diff --git a/src/rattler_build_conda_compat/loader.py b/src/rattler_build_conda_compat/loader.py index 2acef55..17b05c6 100644 --- a/src/rattler_build_conda_compat/loader.py +++ b/src/rattler_build_conda_compat/loader.py @@ -1,7 +1,7 @@ from __future__ import annotations from contextlib import contextmanager -from typing import TYPE_CHECKING, Any, Iterator, Self +from typing import TYPE_CHECKING, Any, Iterator import yaml @@ -14,7 +14,7 @@ class RecipeLoader(yaml.BaseLoader): @classmethod @contextmanager - def with_namespace(cls: Self, namespace: dict[str, Any] | None) -> Iterator[None]: + def with_namespace(cls: RecipeLoader, namespace: dict[str, Any] | None) -> Iterator[None]: try: cls._namespace = namespace yield @@ -22,7 +22,7 @@ def with_namespace(cls: Self, namespace: dict[str, Any] | None) -> Iterator[None del cls._namespace def construct_sequence( # noqa: C901 - self: Self, + self, node: yaml.Node, deep: bool = False, # noqa: FBT002, FBT001 ) -> list[yaml.Node]: From 44863d98756d07b6e2c7115c5fb27ae87a0f51a0 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 16:03:45 +0200 Subject: [PATCH 11/31] feat: add mypy --- .github/workflows/build.yml | 2 +- .github/workflows/type-check.yml | 21 ++ pixi.lock | 261 +++++++++++++++--- pixi.toml | 7 +- pyproject.toml | 12 +- .../conditional_list.py | 14 +- src/rattler_build_conda_compat/lint.py | 2 + src/rattler_build_conda_compat/loader.py | 11 +- .../recipe_sources.py | 25 +- src/rattler_build_conda_compat/render.py | 2 + 10 files changed, 298 insertions(+), 59 deletions(-) create mode 100644 .github/workflows/type-check.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3474366..7d3e6fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.5.1 with: pixi-version: "latest" - environments: test + environments: test, lint - name: run tests run: | diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml new file mode 100644 index 0000000..98829af --- /dev/null +++ b/.github/workflows/type-check.yml @@ -0,0 +1,21 @@ +# name: Run updater that will check for conda-forge packages +on: + push: + branches: [ "main" ] + pull_request: + +jobs: + run_tests: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: prefix-dev/setup-pixi@v0.5.1 + with: + pixi-version: "latest" + environments: lint + + - name: type check + run: | + pixi run type-check diff --git a/pixi.lock b/pixi.lock index 505012d..23cbb39 100644 --- a/pixi.lock +++ b/pixi.lock @@ -117,8 +117,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda @@ -237,8 +237,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda @@ -357,8 +357,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py312he37b823_0.conda @@ -462,8 +462,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda @@ -504,12 +504,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.10.1-py312h9a8786e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-4.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda @@ -521,6 +524,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.20240311-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.23.2-h9678756_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py312h8572e83_4.conda @@ -540,12 +545,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.10.1-py312hbd25219_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-4.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda @@ -557,6 +565,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.20240311-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.23.2-h686f776_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py312h49ebfd2_4.conda @@ -576,12 +586,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.10.1-py312h7e5086c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-4.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.4-h30c5eda_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda @@ -593,6 +606,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.20240311-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.23.2-h6e96688_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py312h389731b_4.conda @@ -617,11 +632,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/mypy-1.10.1-py312h4389bb4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-4.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.4-h889d299_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda @@ -632,6 +650,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.20240311-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.23.2-h813c833_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 @@ -764,8 +784,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda @@ -889,8 +909,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda @@ -1014,8 +1034,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py312he37b823_0.conda @@ -1124,8 +1144,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda @@ -4990,6 +5010,100 @@ packages: md5: b0309b72560df66f71a9d5e34a5efdfa size: 3227 timestamp: 1608166968312 +- kind: conda + name: mypy + version: 1.10.1 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/mypy-1.10.1-py312h4389bb4_0.conda + sha256: 00e7a8f7ac90709b9195eb5655a55f53b8a0297a563201d75b9406936ed69b0b + md5: 94e70ace716472016f5a717d4ab7531f + depends: + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 8414692 + timestamp: 1719301939732 +- kind: conda + name: mypy + version: 1.10.1 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.10.1-py312h7e5086c_0.conda + sha256: d07f260bde42e963558bedbb5d8607c18a16f71a0dff45fb7cecc85bfcd97c6f + md5: 0aea347a79c70d8134ebd2efc897dda0 + depends: + - __osx >=11.0 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 9622339 + timestamp: 1719301964191 +- kind: conda + name: mypy + version: 1.10.1 + build: py312h9a8786e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.10.1-py312h9a8786e_0.conda + sha256: d65af401f7368680f164990f110d084ee5139cd01a62189c76a88ab87ea50285 + md5: 35504aad41d76808fa379bee8cd6882e + depends: + - libgcc-ng >=12 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 16471696 + timestamp: 1719302037228 +- kind: conda + name: mypy + version: 1.10.1 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.10.1-py312hbd25219_0.conda + sha256: 353e75ea35e3c44294787f318e710379f7f0618962a918af90e91597a2710dea + md5: 38d751fa3fd6e793f11903f816ee1cfe + depends: + - __osx >=10.13 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 10370551 + timestamp: 1719302314714 +- kind: conda + name: mypy_extensions + version: 1.0.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + depends: + - python >=3.5 + license: MIT + license_family: MIT + size: 10492 + timestamp: 1675543414256 - kind: conda name: ncurses version: 6.4.20240210 @@ -5517,6 +5631,73 @@ packages: - pkg:pypi/psutil size: 503677 timestamp: 1705722843679 +- kind: conda + name: psutil + version: 6.0.0 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda + sha256: c9ed9457fa4c4900b7f2fc5e28493bdd3885acb823ed48c01dae59f043a65ad8 + md5: 86fd428b42be7495c93d0ff837adfc9e + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 509298 + timestamp: 1719275243368 +- kind: conda + name: psutil + version: 6.0.0 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda + sha256: d677457b2ce2e6ef6c2845c653e5bc39be9a59a900d95a5a7771b490f754cb5f + md5: e45a140733a4805d80e282c1ede40d0b + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 501703 + timestamp: 1719274787455 +- kind: conda + name: psutil + version: 6.0.0 + build: py312h9a8786e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda + sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d + md5: 1aeffa86c55972ca4e88ac843eccedf2 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 493452 + timestamp: 1719274737481 +- kind: conda + name: psutil + version: 6.0.0 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda + sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b + md5: db086d71e9be086313110a670b6d549f + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 499307 + timestamp: 1719274858092 - kind: conda name: py-lief version: 0.14.1 @@ -6437,8 +6618,10 @@ packages: name: rattler-build-conda-compat version: 0.1.2 path: . - sha256: 26244d7fe823cdb32a6a8b63a5023e473a736a32805833183be07cd2c8c513a8 - requires_python: '>=3.8' + sha256: 929085ee146b252230362c01316df05aae13720321830046cf3f5415a18e8651 + requires_dist: + - typing-extensions>=4.12.2 + requires_python: '>=3.10' editable: true - kind: conda name: readline @@ -7344,39 +7527,51 @@ packages: - pkg:pypi/truststore size: 20667 timestamp: 1694154740564 +- kind: conda + name: types-pyyaml + version: 6.0.12.20240311 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.20240311-pyhd8ed1ab_0.conda + sha256: 0101df6ec0d1bf632f215795225eb7d0308ae542c61a2f3a3ce66c39dad956fb + md5: df5d4b66033ecb54c7a4040627215529 + depends: + - python >=3.6 + license: Apache-2.0 AND MIT + size: 25219 + timestamp: 1710134479192 - kind: conda name: typing-extensions - version: 4.11.0 + version: 4.12.2 build: hd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - sha256: aecbd9c601ba5a6c128da8975276fd817b968a9edc969b7ae97aee76e80a14a6 - md5: 471e3988f8ca5e9eb3ce6be7eac3bcee + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + sha256: d3b9a8ed6da7c9f9553c5fd8a4fca9c3e0ab712fa5f497859f82337d67533b73 + md5: 52d648bd608f5737b123f510bb5514b5 depends: - - typing_extensions 4.11.0 pyha770c72_0 + - typing_extensions 4.12.2 pyha770c72_0 license: PSF-2.0 license_family: PSF purls: [] - size: 10093 - timestamp: 1712330094282 + size: 10097 + timestamp: 1717802659025 - kind: conda name: typing_extensions - version: 4.11.0 + version: 4.12.2 build: pyha770c72_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda - sha256: a7e8714d14f854058e971a6ed44f18cc37cc685f98ddefb2e6b7899a0cc4d1a2 - md5: 6ef2fc37559256cf682d8b3375e89b80 + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + sha256: 0fce54f8ec3e59f5ef3bb7641863be4e1bf1279623e5af3d3fa726e8f7628ddb + md5: ebe6952715e1d5eb567eeebf25250fa7 depends: - python >=3.8 license: PSF-2.0 license_family: PSF - purls: - - pkg:pypi/typing-extensions - size: 37583 - timestamp: 1712330089194 + size: 39888 + timestamp: 1717802653893 - kind: conda name: typos version: 1.23.2 diff --git a/pixi.toml b/pixi.toml index 2e5d2d2..e27fc0b 100644 --- a/pixi.toml +++ b/pixi.toml @@ -11,7 +11,7 @@ platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] build_sdist = "pixi run python -m build --sdist" [dependencies] -python = ">=3.8" +python = ">=3.10" build = "*" rattler-build = "*" conda-build = "*" @@ -19,6 +19,7 @@ conda-build = "*" conda = ">=4.2" pygithub = ">=2,<3" tomli = "*" +typing-extensions = ">=4.12.2,<4.13" [pypi-dependencies] rattler-build-conda-compat = { path = ".", editable = true} @@ -39,12 +40,16 @@ pre-commit = ">=3.7.1,<4" pre-commit-hooks = ">=4.6.0,<5" ruff = ">=0.4.8,<0.5" typos = ">=1.23.1,<2" +mypy = ">=1.10.1,<1.11" +types-pyyaml = ">=6.0.12.20240311,<6.0.13" [feature.lint.tasks] pre-commit-install = "pre-commit-install" pre-commit-run = "pre-commit run" +type-check = "mypy" [environments] test = ["test"] lint = { features = ["lint"], no-default-feature = true, solve-group = "default" } + diff --git a/pyproject.toml b/pyproject.toml index 077aa55..ebae1e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,11 +9,13 @@ version = "0.1.2" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } - -requires-python = ">=3.8" +dependencies = [ + "typing-extensions>=4.12.2" +] +requires-python = ">=3.10" [tool.ruff] -target-version = "py38" +target-version = "py310" line-length = 100 [tool.ruff.format] @@ -44,3 +46,7 @@ exclude = [ [tool.pyright] venvPath = ".pixi/envs" venv = "default" + +[tool.mypy] +python_version = "3.10" +allow_redefinition = true diff --git a/src/rattler_build_conda_compat/conditional_list.py b/src/rattler_build_conda_compat/conditional_list.py index 0eec947..453d8f7 100644 --- a/src/rattler_build_conda_compat/conditional_list.py +++ b/src/rattler_build_conda_compat/conditional_list.py @@ -1,8 +1,9 @@ from __future__ import annotations -from typing import Any, Callable, Generator, Generic, TypeVar, Union +from typing import Any, Callable, Generator, Generic, List, TypeVar, Union, cast T = TypeVar("T") +K = TypeVar("K") class IfStatement(Generic[T]): @@ -10,12 +11,11 @@ class IfStatement(Generic[T]): then: T | list[T] else_: T | list[T] | None - -ConditionalList = Union[T, "IfStatement[T]", list[Union[T, "IfStatement[T]"]]] +ConditionalList = Union[T, IfStatement[T], List[Union[T, IfStatement[T]]]] def visit_conditional_list( # noqa: C901 - value: ConditionalList[T], evaluator: Callable[[Any], bool] | None = None + value: T | IfStatement[T] | list[T | IfStatement[T]], evaluator: Callable[[Any], bool] | None = None ) -> Generator[T, None, None]: """ A function that yields individual branches of a conditional list. @@ -30,7 +30,7 @@ def visit_conditional_list( # noqa: C901 A generator that yields the individual branches. """ - def yield_from_list(value: list[T] | T) -> Generator[T, None, None]: + def yield_from_list(value: list[K] | K) -> Generator[K, None, None]: if isinstance(value, list): yield from value else: @@ -57,8 +57,8 @@ def yield_from_list(value: list[T] | T) -> Generator[T, None, None]: yield from yield_from_list(otherwise) else: # In this case its not an if statement - yield element + yield cast(T, element) # If the element is not a dictionary, just yield it else: # (tim) I get a pyright error here, but I don't know how to fix it - yield element + yield cast(T, element) diff --git a/src/rattler_build_conda_compat/lint.py b/src/rattler_build_conda_compat/lint.py index b298677..39105ac 100644 --- a/src/rattler_build_conda_compat/lint.py +++ b/src/rattler_build_conda_compat/lint.py @@ -1,3 +1,5 @@ +# mypy: ignore-errors + import re from inspect import cleandoc diff --git a/src/rattler_build_conda_compat/loader.py b/src/rattler_build_conda_compat/loader.py index 17b05c6..b58b4a1 100644 --- a/src/rattler_build_conda_compat/loader.py +++ b/src/rattler_build_conda_compat/loader.py @@ -1,20 +1,23 @@ from __future__ import annotations from contextlib import contextmanager -from typing import TYPE_CHECKING, Any, Iterator +from typing import TYPE_CHECKING, Any import yaml from rattler_build_conda_compat.conditional_list import visit_conditional_list if TYPE_CHECKING: + from collections.abc import Iterator from os import PathLike class RecipeLoader(yaml.BaseLoader): + _namespace: dict[str, Any]|None = None + @classmethod @contextmanager - def with_namespace(cls: RecipeLoader, namespace: dict[str, Any] | None) -> Iterator[None]: + def with_namespace(cls: type[RecipeLoader], namespace: dict[str, Any] | None) -> Iterator[None]: try: cls._namespace = namespace yield @@ -23,9 +26,9 @@ def with_namespace(cls: RecipeLoader, namespace: dict[str, Any] | None) -> Itera def construct_sequence( # noqa: C901 self, - node: yaml.Node, + node: yaml.ScalarNode|yaml.SequenceNode|yaml.MappingNode, deep: bool = False, # noqa: FBT002, FBT001 - ) -> list[yaml.Node]: + ) -> list[yaml.ScalarNode]: """deep is True when creating an object/mapping recursively, in that case want the underlying elements available during construction """ diff --git a/src/rattler_build_conda_compat/recipe_sources.py b/src/rattler_build_conda_compat/recipe_sources.py index 6485c33..a990f54 100644 --- a/src/rattler_build_conda_compat/recipe_sources.py +++ b/src/rattler_build_conda_compat/recipe_sources.py @@ -1,13 +1,18 @@ +from __future__ import annotations + import typing -from typing import Any, Iterator, Mapping, NotRequired, TypedDict +from typing import Any, TypedDict from .conditional_list import ConditionalList, visit_conditional_list +if typing.TYPE_CHECKING: + from collections.abc import Iterator, Mapping + OptionalUrlList = str | list[str] | None class Source(TypedDict): - url: NotRequired[str] + url: str | None def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: @@ -29,10 +34,10 @@ def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: # Try getting all url top-level sources if sources is not None: - sources = visit_conditional_list(sources, None) - for source in sources: - if "url" in source: - yield source["url"] + source_list = visit_conditional_list(sources, None) + for source in source_list: + if url:=source.get("url"): + yield url outputs = recipe.get("outputs", None) if outputs is None: @@ -44,7 +49,7 @@ def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: sources = typing.cast(ConditionalList[Source], sources) if sources is None: return - sources = visit_conditional_list(sources, None) - for source in sources: - if "url" in source: - yield source["url"] + source_list = visit_conditional_list(sources, None) + for source in source_list: + if url:=source.get("url"): + yield url diff --git a/src/rattler_build_conda_compat/render.py b/src/rattler_build_conda_compat/render.py index c7930b3..961ec3c 100644 --- a/src/rattler_build_conda_compat/render.py +++ b/src/rattler_build_conda_compat/render.py @@ -1,3 +1,5 @@ +# mypy: ignore-errors + from collections import OrderedDict import json import os From 72abb603ec26c7fb654d55f3740c59931923a536 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 16:07:26 +0200 Subject: [PATCH 12/31] fix: NotRequired --- pixi.toml | 2 +- src/rattler_build_conda_compat/recipe_sources.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pixi.toml b/pixi.toml index e27fc0b..d35d446 100644 --- a/pixi.toml +++ b/pixi.toml @@ -46,7 +46,7 @@ types-pyyaml = ">=6.0.12.20240311,<6.0.13" [feature.lint.tasks] pre-commit-install = "pre-commit-install" pre-commit-run = "pre-commit run" -type-check = "mypy" +type-check = "mypy src" [environments] diff --git a/src/rattler_build_conda_compat/recipe_sources.py b/src/rattler_build_conda_compat/recipe_sources.py index a990f54..bc657dd 100644 --- a/src/rattler_build_conda_compat/recipe_sources.py +++ b/src/rattler_build_conda_compat/recipe_sources.py @@ -1,10 +1,16 @@ from __future__ import annotations +import sys import typing from typing import Any, TypedDict from .conditional_list import ConditionalList, visit_conditional_list +if sys.version_info < (3, 11): + from typing_extensions import NotRequired +else: + from typing import NotRequired + if typing.TYPE_CHECKING: from collections.abc import Iterator, Mapping @@ -12,7 +18,7 @@ class Source(TypedDict): - url: str | None + url: NotRequired[str] def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: From 6a3872ad0503c9c95a65123252b48d79740b29cb Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 16:08:43 +0200 Subject: [PATCH 13/31] fix: typing --- pixi.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pixi.lock b/pixi.lock index 23cbb39..4f81aca 100644 --- a/pixi.lock +++ b/pixi.lock @@ -6618,9 +6618,9 @@ packages: name: rattler-build-conda-compat version: 0.1.2 path: . - sha256: 929085ee146b252230362c01316df05aae13720321830046cf3f5415a18e8651 + sha256: 77dfbe3091b4797586a11b506f5c012c63cefd0e133cdf455477858eb1beaf97 requires_dist: - - typing-extensions>=4.12.2 + - typing-extensions>=4.12,<5 requires_python: '>=3.10' editable: true - kind: conda diff --git a/pyproject.toml b/pyproject.toml index ebae1e6..3b48ecb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } dependencies = [ - "typing-extensions>=4.12.2" + "typing-extensions>=4.12,<5" ] requires-python = ">=3.10" From c0a55a9e3dbe6bbc0328f39d26289bc6798e4c8c Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 16:11:11 +0200 Subject: [PATCH 14/31] fix woopsie --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d3e6fd..3474366 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.5.1 with: pixi-version: "latest" - environments: test, lint + environments: test - name: run tests run: | From d76e4ad567925818aeab9704293b873d05ed5725 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 16:13:49 +0200 Subject: [PATCH 15/31] fix: fmt and lint --- pixi.toml | 1 - src/rattler_build_conda_compat/conditional_list.py | 11 ++++++++--- src/rattler_build_conda_compat/loader.py | 4 ++-- src/rattler_build_conda_compat/recipe_sources.py | 4 ++-- src/rattler_build_conda_compat/render.py | 7 ++++--- 5 files changed, 16 insertions(+), 11 deletions(-) diff --git a/pixi.toml b/pixi.toml index d35d446..b6faca6 100644 --- a/pixi.toml +++ b/pixi.toml @@ -52,4 +52,3 @@ type-check = "mypy src" [environments] test = ["test"] lint = { features = ["lint"], no-default-feature = true, solve-group = "default" } - diff --git a/src/rattler_build_conda_compat/conditional_list.py b/src/rattler_build_conda_compat/conditional_list.py index 453d8f7..a64eeae 100644 --- a/src/rattler_build_conda_compat/conditional_list.py +++ b/src/rattler_build_conda_compat/conditional_list.py @@ -1,6 +1,9 @@ from __future__ import annotations -from typing import Any, Callable, Generator, Generic, List, TypeVar, Union, cast +from typing import TYPE_CHECKING, Any, Generic, TypeVar, Union, cast + +if TYPE_CHECKING: + from collections.abc import Callable, Generator T = TypeVar("T") K = TypeVar("K") @@ -11,11 +14,13 @@ class IfStatement(Generic[T]): then: T | list[T] else_: T | list[T] | None -ConditionalList = Union[T, IfStatement[T], List[Union[T, IfStatement[T]]]] + +ConditionalList = Union[T, IfStatement[T], list[T | IfStatement[T]]] # noqa: UP007 def visit_conditional_list( # noqa: C901 - value: T | IfStatement[T] | list[T | IfStatement[T]], evaluator: Callable[[Any], bool] | None = None + value: T | IfStatement[T] | list[T | IfStatement[T]], + evaluator: Callable[[Any], bool] | None = None, ) -> Generator[T, None, None]: """ A function that yields individual branches of a conditional list. diff --git a/src/rattler_build_conda_compat/loader.py b/src/rattler_build_conda_compat/loader.py index b58b4a1..5354a4e 100644 --- a/src/rattler_build_conda_compat/loader.py +++ b/src/rattler_build_conda_compat/loader.py @@ -13,7 +13,7 @@ class RecipeLoader(yaml.BaseLoader): - _namespace: dict[str, Any]|None = None + _namespace: dict[str, Any] | None = None @classmethod @contextmanager @@ -26,7 +26,7 @@ def with_namespace(cls: type[RecipeLoader], namespace: dict[str, Any] | None) -> def construct_sequence( # noqa: C901 self, - node: yaml.ScalarNode|yaml.SequenceNode|yaml.MappingNode, + node: yaml.ScalarNode | yaml.SequenceNode | yaml.MappingNode, deep: bool = False, # noqa: FBT002, FBT001 ) -> list[yaml.ScalarNode]: """deep is True when creating an object/mapping recursively, diff --git a/src/rattler_build_conda_compat/recipe_sources.py b/src/rattler_build_conda_compat/recipe_sources.py index a10728f..b6d0d5f 100644 --- a/src/rattler_build_conda_compat/recipe_sources.py +++ b/src/rattler_build_conda_compat/recipe_sources.py @@ -42,7 +42,7 @@ def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: if sources is not None: source_list = visit_conditional_list(sources, None) for source in source_list: - if url:=source.get("url"): + if url := source.get("url"): yield url outputs = recipe.get("outputs", None) @@ -57,5 +57,5 @@ def get_all_url_sources(recipe: Mapping[Any, Any]) -> Iterator[str]: continue source_list = visit_conditional_list(sources, None) for source in source_list: - if url:=source.get("url"): + if url := source.get("url"): yield url diff --git a/src/rattler_build_conda_compat/render.py b/src/rattler_build_conda_compat/render.py index 961ec3c..2f45930 100644 --- a/src/rattler_build_conda_compat/render.py +++ b/src/rattler_build_conda_compat/render.py @@ -68,9 +68,10 @@ def render_recipes(self, variants) -> List[Dict]: platform_and_arch = f"{self.config.platform}-{self.config.arch}" try: - with tempfile.NamedTemporaryFile(mode="w+") as outfile, tempfile.NamedTemporaryFile( - mode="w" - ) as variants_file: + with ( + tempfile.NamedTemporaryFile(mode="w+") as outfile, + tempfile.NamedTemporaryFile(mode="w") as variants_file, + ): # dump variants in our variants that will be used to generate recipe if variants: yaml.dump(variants, variants_file, default_flow_style=False) From fb8509bb487fdeabbb0002489f1e96bf11a1ba87 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 18 Jul 2024 16:23:31 +0200 Subject: [PATCH 16/31] fix: pin mypy on major version --- pixi.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixi.toml b/pixi.toml index b6faca6..361feae 100644 --- a/pixi.toml +++ b/pixi.toml @@ -40,7 +40,7 @@ pre-commit = ">=3.7.1,<4" pre-commit-hooks = ">=4.6.0,<5" ruff = ">=0.4.8,<0.5" typos = ">=1.23.1,<2" -mypy = ">=1.10.1,<1.11" +mypy = ">=1.10.1,<2" types-pyyaml = ">=6.0.12.20240311,<6.0.13" [feature.lint.tasks] From 5230c9e993a3673e52dc85d3482657e0d30a38cc Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 16:41:30 +0200 Subject: [PATCH 17/31] feat: bump to release 0.2.0 --- pixi.toml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pixi.toml b/pixi.toml index 361feae..0a70619 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "rattler-build-conda-compat" -version = "0.1.2" +version = "0.2.0" description = "A package for exposing rattler-build API for conda-smithy" authors = ["nichmor "] channels = ["conda-forge"] diff --git a/pyproject.toml b/pyproject.toml index 3b48ecb..9d3cf9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rattler-build-conda-compat" description = "A package for exposing rattler-build API for conda-smithy" -version = "0.1.2" +version = "0.2.0" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } From 77bfd42487c5e6ffc8e5f93f2887eb33a2465872 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 18 Jul 2024 16:41:47 +0200 Subject: [PATCH 18/31] feat: update lock --- pixi.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixi.lock b/pixi.lock index 4f81aca..ceabf91 100644 --- a/pixi.lock +++ b/pixi.lock @@ -6616,9 +6616,9 @@ packages: timestamp: 1713391855237 - kind: pypi name: rattler-build-conda-compat - version: 0.1.2 + version: 0.2.0 path: . - sha256: 77dfbe3091b4797586a11b506f5c012c63cefd0e133cdf455477858eb1beaf97 + sha256: 33f05df172d9437c9a196e3784869ae40f3c2f4a0162fbf8aa88e16cc44c3b80 requires_dist: - typing-extensions>=4.12,<5 requires_python: '>=3.10' From 49baed5ca965d59df51dbc570c4cda82921748cd Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Thu, 18 Jul 2024 16:49:04 +0200 Subject: [PATCH 19/31] ci: Test against multiple Python versions --- .github/workflows/build.yml | 22 ---------------------- .github/workflows/tests.yml | 29 +++++++++++++++++++++++++++++ pixi.toml | 19 +++++++++++++------ 3 files changed, 42 insertions(+), 28 deletions(-) delete mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 3474366..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,22 +0,0 @@ -# name: Run updater that will check for conda-forge packages - -on: - push: - branches: [ "main" ] - pull_request: - -jobs: - run_tests: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - uses: prefix-dev/setup-pixi@v0.5.1 - with: - pixi-version: "latest" - environments: test - - - name: run tests - run: | - pixi run -e test pytest diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..f2ff2e5 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,29 @@ +# name: Run updater that will check for conda-forge packages + +on: + push: + branches: [ "main" ] + pull_request: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true +jobs: + run_tests: + name: ${{ matrix.pixi-environment }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + pixi-environment: + - py312 + - py311 + - py310 + steps: + - uses: actions/checkout@v4 + - uses: prefix-dev/setup-pixi@v0.5.1 + with: + pixi-version: "latest" + environments: ${{ matrix.pixi-environment }} + - name: run tests + run: | + pixi run --environment ${{ matrix.pixi-environment }} test diff --git a/pixi.toml b/pixi.toml index 0a70619..3385f59 100644 --- a/pixi.toml +++ b/pixi.toml @@ -7,7 +7,6 @@ channels = ["conda-forge"] platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] [tasks] - build_sdist = "pixi run python -m build --sdist" [dependencies] @@ -24,16 +23,14 @@ typing-extensions = ">=4.12.2,<4.13" [pypi-dependencies] rattler-build-conda-compat = { path = ".", editable = true} - [feature.test.dependencies] pytest = "*" syrupy = "*" ruff = "*" [feature.test.tasks] -test = "pytest" -snapshot_update = "pytest --snapshot-update" - +test = "pytest tests" +snapshot_update = "pytest --snapshot-update tests" [feature.lint.dependencies] pre-commit = ">=3.7.1,<4" @@ -48,7 +45,17 @@ pre-commit-install = "pre-commit-install" pre-commit-run = "pre-commit run" type-check = "mypy src" +[feature.py312.dependencies] +python = "3.12.*" + +[feature.py311.dependencies] +python = "3.11.*" + +[feature.py310.dependencies] +python = "3.10.*" [environments] -test = ["test"] +py312 = { features = ["py312"], solve-group = "py312" } +py311 = ["py311"] +py310 = ["py310"] lint = { features = ["lint"], no-default-feature = true, solve-group = "default" } From 0cff9aa44feb6dab809eb4d41b9d7c70a1827640 Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Thu, 18 Jul 2024 16:50:56 +0200 Subject: [PATCH 20/31] Adapt env and rerender lock file --- pixi.lock | 18427 ++++++++++++++++++++++++++++++++++++++++------------ pixi.toml | 6 +- 2 files changed, 14208 insertions(+), 4225 deletions(-) diff --git a/pixi.lock b/pixi.lock index ceabf91..de1cf42 100644 --- a/pixi.lock +++ b/pixi.lock @@ -662,7 +662,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 - test: + py310: channels: - url: https://conda.anaconda.org/conda-forge/ indexes: @@ -675,719 +675,2106 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py310hff52083_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.3.0-py312h7900ff3_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.3.0-py312h7900ff3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.5-py312h241aef2_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py310hff52083_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py310hff52083_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py310hb1bd9d3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py310hc51659f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py312h7900ff3_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.21.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py312hd9e9ff6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py310h39ff949_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.28-hfc55251_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.0.2-py312h7900ff3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py310h2372a71_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py310hff52083_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py312h7070661_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py310hc51659f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py310h76e45a6_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py310h2372a71_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py310h2372a71_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.3-hab00c5b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.14-hd12c33a_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py312h7900ff3_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py310hff52083_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-4_cp310.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.15.0-h614bb76_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py310h2372a71_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4.post0-h59595ed_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ripgrep-14.1.0-he8a937b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.0-py312h4b3b743_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.3.7-py312h9118e91_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.5.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py310h42e942d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py310h2372a71_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py310h2372a71_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py310h2372a71_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.22.0-py312hd58854c_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310h64cae3c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda - pypi: . osx-64: - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h9e9d8ca_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py310hdca579f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py310h2ec42d9_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.3.0-py312hb401068_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.3.0-py312hb401068_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.5-py312h3d16f4b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py310h2ec42d9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py310h2ec42d9_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py310h8d695f1_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py310h936d840_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py312hb401068_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.21.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py310h2ec42d9_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.3-hbcf5fad_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-h9ce406d_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py312h67f5953_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py310hd168405_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.28-h2d185b6_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.0.2-py312hb401068_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py310hb372a2b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py310h2ec42d9_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py312h1683c14_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py310h936d840_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py310hb4f5172_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h104f124_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py310h6729b98_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py310h6729b98_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.3-h1411813_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.14-h00d2728_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py310h2ec42d9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-4_cp310.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.15.0-hd81679c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py310h6729b98_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.4.post0-h93d8f39_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ripgrep-14.1.0-h11a7dfb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.18.0-py312h1b0e595_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.3.7-py312h1bc86af_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.5.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py310h12a1ced_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py310hb372a2b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py310hb372a2b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py310hb372a2b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.22.0-py312h7a629f7_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py310h0e17136_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda - pypi: . osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310h1253130_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.28.1-h93a5062_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py310hdcd7c05_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py310hbe9552e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.3.0-py312h81bd7bf_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.3.0-py312h81bd7bf_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.5-py312h99f8e83_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py310hbe9552e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py310hbe9552e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py310ha71c378_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py310ha6dd24b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-2.4-py312h81bd7bf_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.21.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py310hbe9552e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.2-hcacb583_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.7.1-h2d989ff_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.4-h83d404f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.3-h30cc82d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-h5090b49_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py312h344e357_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py310h5e0a2f6_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.28-h1059232_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.3-h091b4b1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.6-h0d0cfa8_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-h01dff8b_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h642e427_1000.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py312he37b823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.0.2-py312h81bd7bf_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4.20240210-h078ce10_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py310hd125d64_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py310hbe9552e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py312he37b823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py312h2721eaf_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py310ha6dd24b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py310h1c30a33_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py312h02f2b3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py310h2aa6e3c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py310h2aa6e3c_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.3-h4a7b5fc_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.14-h2469fbe_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py312h81bd7bf_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py310hbe9552e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-4_cp310.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py312h02f2b3b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.15.0-h2b8f702_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py310h2aa6e3c_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.4.post0-h965bd2d_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ripgrep-14.1.0-h5ef7bb8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.18.0-py312h77200ec_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.3.7-py312h1ae9fbf_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.5.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py310h947b723_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py310hd125d64_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py310hd125d64_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py312he37b823_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py310hd125d64_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.22.0-py312h7975427_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py310hd9c37c8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda - pypi: . win-64: - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h00ffb61_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py310h8d17308_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py310h5588dad_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.3.0-py312h2e8e312_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.3.0-py312h2e8e312_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.5-py312h1f4a190_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py310h5588dad_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py310h5588dad_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py310h25a5809_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py310ha8f682b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py312h2e8e312_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.21.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.2-h313118b_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.7.1-hd5e4a3a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py312h66cf91f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.28-h12be248_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py310h04f2035_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.6-hc3477c8_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-he774522_1000.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.0.2-py312h53d5487_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-msys2-runtime-3.4.9.1-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py310h8d17308_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py310h9e98ed7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py312h275cf98_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py310ha8f682b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py310h9e98ed7_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py310h8d17308_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py310h635b8f1_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.3-h2628c8c_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.14-h4de0772_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py312h2e8e312_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py310h5588dad_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-4_cp310.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.15.0-h7ea99a0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py310h8d17308_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ripgrep-11.0.2-1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.0-py312hfccd98a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.3.7-py312h60fbdae_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.5.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py310hc226416_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py310h8d17308_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py310h8d17308_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py310h8d17308_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.22.0-py312h01d794b_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310he5e10e1_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda - pypi: . -packages: -- kind: conda - name: _libgcc_mutex - version: '0.1' - build: conda_forge - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - md5: d7c89558ba9fa0495403155b64376d81 - license: None - size: 2562 - timestamp: 1578324546067 -- kind: conda - name: _openmp_mutex - version: '4.5' - build: 2_gnu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - md5: 73aaf86a425cc6e73fcf236a5a46396d - depends: - - _libgcc_mutex 0.1 conda_forge - - libgomp >=7.5.0 - constrains: - - openmp_impl 9999 - license: BSD-3-Clause - license_family: BSD - size: 23621 - timestamp: 1650670423406 -- kind: conda - name: archspec - version: 0.2.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda - sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7 - md5: 192278292e20704f663b9c766909d67b - depends: - - python >=3.6 - license: MIT OR Apache-2.0 - purls: - - pkg:pypi/archspec - size: 48780 - timestamp: 1708969700251 -- kind: conda - name: attrs - version: 23.2.0 - build: pyh71513ae_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea - md5: 5e4c0743c70186509d1412e03c2d8dfa - depends: - - python >=3.7 - license: MIT - license_family: MIT - purls: - - pkg:pypi/attrs - size: 54582 - timestamp: 1704011393776 -- kind: conda - name: beautifulsoup4 - version: 4.12.3 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 - md5: 332493000404d8411859539a5a630865 - depends: - - python >=3.6 - - soupsieve >=1.2 - license: MIT - license_family: MIT - purls: - - pkg:pypi/beautifulsoup4 - size: 118200 - timestamp: 1705564819537 -- kind: conda - name: boltons - version: 24.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc - md5: 61de176bd62041f9cd5bd4fcd09eb0ff - depends: - - python ==2.7.*|>=3.7 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/boltons - size: 297896 - timestamp: 1711936529147 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h30efb56_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda - sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f - md5: 45801a89533d3336a365284d93298e36 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hd590300_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 350604 - timestamp: 1695990206327 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h53d5487_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda - sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 - md5: d01a6667b99f0e8ad4097af66c938e62 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - libbrotlicommon 1.1.0 hcfcfb64_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 322514 - timestamp: 1695991054894 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h9f69965_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda - sha256: 3418b1738243abba99e931c017b952771eeaa1f353c07f7d45b55e83bb74fcb3 - md5: 1bc01b9ffdf42beb1a9fe4e9222e0567 - depends: - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hb547adb_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 343435 - timestamp: 1695990731924 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312heafc425_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda - sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 - md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a - depends: - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 366883 - timestamp: 1695990710194 -- kind: conda - name: build - version: 0.7.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb - md5: add7f31586d03678695b32b78a1337a1 - depends: - - importlib-metadata - - packaging - - pep517 >=0.9.1 - - python >=3.6 - - tomli - license: MIT - license_family: MIT - purls: - - pkg:pypi/build - size: 17759 - timestamp: 1631843776429 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h10d778d_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 127885 - timestamp: 1699280178474 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h2466b09_7 - build_number: 7 - subdir: win-64 + py311: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py311h38be061_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py311h4a61cc7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py311h331c9d8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py311hf2555c7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py311h331c9d8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py311h4332511_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py311h459d7ec_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py311h459d7ec_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4.post0-h59595ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ripgrep-14.1.0-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py311hb3a8bbb_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311h5cd10c7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda + - pypi: . + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py311hc0b63fd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py311h6eed73b_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py311h4ba4ffd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py311h72ae277_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-h9ce406d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py311h6c5c7ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py311h72ae277_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py311h8fdbec6_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py311h2725bcf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py311h2725bcf_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py311h2725bcf_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.4.post0-h93d8f39_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ripgrep-14.1.0-h11a7dfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py311h295b1db_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py311h51fa951_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda + - pypi: . + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py311h4a08483_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py311h267d04e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py311hcaeb4ce_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py311hd3f4193_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.4-h83d404f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-h5090b49_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py311h26e1311_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-h01dff8b_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py311hd3f4193_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py311h6376970_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py311heffc1b2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py311heffc1b2_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.9-h932a869_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py311heffc1b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.4.post0-h965bd2d_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ripgrep-14.1.0-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py311h98c6a39_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py311h4a6b76e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda + - pypi: . + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py311h1ea47a8_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py311h1ea47a8_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py311h1ea47a8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py311hfd75b31_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py311he736701_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py311h0317a69_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-msys2-runtime-3.4.9.1-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py311hda3d55a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py311he736701_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py311hda3d55a_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py311hd53affc_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.9-h631f459_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py311h1ea47a8_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py311ha68e1ae_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ripgrep-11.0.2-1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py311h533ab2d_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py311h53056dc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda + - pypi: . + py312: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py312h7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py312h7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py312hbcc2302_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py312h9a8786e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py312hd9e9ff6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py312h7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py312h7070661_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py312h7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4.post0-h59595ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ripgrep-14.1.0-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py312hf008fa9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312h3483029_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda + - pypi: . + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py312hb401068_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py312hb401068_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py312h7e81a9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py312hbd25219_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py312hb401068_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-h9ce406d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py312h67f5953_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py312hb401068_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py312h1683c14_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h104f124_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.4.post0-h93d8f39_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ripgrep-14.1.0-h11a7dfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py312ha47ea1c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py312h331e495_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda + - pypi: . + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py312h81bd7bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py312h81bd7bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py312had01cb0_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py312h7e5086c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py312h81bd7bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.4-h83d404f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-h5090b49_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py312h344e357_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-h01dff8b_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py312he37b823_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py312h81bd7bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py312h2721eaf_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py312h02f2b3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.4-h30c5eda_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py312h81bd7bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py312h02f2b3b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.4.post0-h965bd2d_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ripgrep-14.1.0-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py312h552d48e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py312he37b823_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h721a963_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda + - pypi: . + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py312h2e8e312_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py312h2e8e312_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py312h9500af3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py312h4389bb4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py312h66cf91f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-msys2-runtime-3.4.9.1-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py312h275cf98_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py312h275cf98_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.4-h889d299_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py312h2e8e312_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ripgrep-11.0.2-1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py312h2615798_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h7606c53_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda + - pypi: . +packages: +- kind: conda + name: _libgcc_mutex + version: '0.1' + build: conda_forge + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + size: 2562 + timestamp: 1578324546067 +- kind: conda + name: _libgcc_mutex + version: '0.1' + build: conda_forge + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + purls: [] + size: 2562 + timestamp: 1578324546067 +- kind: conda + name: _openmp_mutex + version: '4.5' + build: 2_gnu + build_number: 16 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- kind: conda + name: _openmp_mutex + version: '4.5' + build: 2_gnu + build_number: 16 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 23621 + timestamp: 1650670423406 +- kind: conda + name: archspec + version: 0.2.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7 + md5: 192278292e20704f663b9c766909d67b + depends: + - python >=3.6 + license: MIT OR Apache-2.0 + purls: + - pkg:pypi/archspec + size: 48780 + timestamp: 1708969700251 +- kind: conda + name: archspec + version: 0.2.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7 + md5: 192278292e20704f663b9c766909d67b + depends: + - python >=3.6 + license: MIT OR Apache-2.0 + purls: + - pkg:pypi/archspec?source=conda-forge-mapping + size: 48780 + timestamp: 1708969700251 +- kind: conda + name: attrs + version: 23.2.0 + build: pyh71513ae_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea + md5: 5e4c0743c70186509d1412e03c2d8dfa + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/attrs + size: 54582 + timestamp: 1704011393776 +- kind: conda + name: attrs + version: 23.2.0 + build: pyh71513ae_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea + md5: 5e4c0743c70186509d1412e03c2d8dfa + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/attrs?source=conda-forge-mapping + size: 54582 + timestamp: 1704011393776 +- kind: conda + name: beautifulsoup4 + version: 4.12.3 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 + md5: 332493000404d8411859539a5a630865 + depends: + - python >=3.6 + - soupsieve >=1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/beautifulsoup4 + size: 118200 + timestamp: 1705564819537 +- kind: conda + name: beautifulsoup4 + version: 4.12.3 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 + md5: 332493000404d8411859539a5a630865 + depends: + - python >=3.6 + - soupsieve >=1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/beautifulsoup4?source=conda-forge-mapping + size: 118200 + timestamp: 1705564819537 +- kind: conda + name: boltons + version: 24.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc + md5: 61de176bd62041f9cd5bd4fcd09eb0ff + depends: + - python ==2.7.*|>=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/boltons + size: 297896 + timestamp: 1711936529147 +- kind: conda + name: boltons + version: 24.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc + md5: 61de176bd62041f9cd5bd4fcd09eb0ff + depends: + - python ==2.7.*|>=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/boltons?source=conda-forge-mapping + size: 297896 + timestamp: 1711936529147 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310h00ffb61_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h00ffb61_1.conda + sha256: 8de77cf62a653dd6ffe19927b92c421f5fa73c078d7799181f5211a1bac2883b + md5: 42bfbc1d41cbe2696a3c9d8b0342324f + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 321672 + timestamp: 1695990897641 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310h1253130_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310h1253130_1.conda + sha256: dab21e18c0275bfd93a09b751096998485677ed17c2e2d08298bc5b43c10bee1 + md5: 26fab7f65a80fff9f402ec3b7860b88a + depends: + - libcxx >=15.0.7 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 344275 + timestamp: 1695990848681 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310h9e9d8ca_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h9e9d8ca_1.conda + sha256: 57d66ca3e072b889c94cfaf56eb7e1794d3b1b3179bd475a4edef50a03359354 + md5: 2362e323293e7699cf1e621d502f86d6 + depends: + - libcxx >=15.0.7 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 367037 + timestamp: 1695990378635 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310hc6cd4ac_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda + sha256: e22268d81905338570786921b3def88e55f9ed6d0ccdd17d9fbae31a02fbef69 + md5: 1f95722c94f00b69af69a066c7433714 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 349397 + timestamp: 1695990295884 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311h12c1d0e_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda + sha256: 5390e1e5e8e159d4893ecbfd2c08ca75ef51bdce1a4a44ff4ee9e2d596004aac + md5: 42fbf4e947c17ea605e6a4d7f526669a + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 322086 + timestamp: 1695990976742 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311ha891d26_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda + sha256: 2d78c79ccf2c17236c52ef217a4c34b762eb7908a6903d94439f787aac1c8f4b + md5: 5e802b015e33447d1283d599d21f052b + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 343332 + timestamp: 1695991223439 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311hb755f60_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda + sha256: 559093679e9fdb6061b7b80ca0f9a31fe6ffc213f1dae65bc5c82e2cd1a94107 + md5: cce9e7c3f1c307f2a5fb08a2922d6164 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 351340 + timestamp: 1695990160360 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311hdf8f085_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda + sha256: 0f5e0a7de58006f349220365e32db521a1fe494c37ee455e5ecf05b8fe567dcc + md5: 546fdccabb90492fbaf2da4ffb78f352 + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 366864 + timestamp: 1695990449997 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h30efb56_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda + sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f + md5: 45801a89533d3336a365284d93298e36 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli + size: 350604 + timestamp: 1695990206327 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h30efb56_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda + sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f + md5: 45801a89533d3336a365284d93298e36 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 350604 + timestamp: 1695990206327 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h53d5487_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda + sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 + md5: d01a6667b99f0e8ad4097af66c938e62 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli + size: 322514 + timestamp: 1695991054894 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h53d5487_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda + sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 + md5: d01a6667b99f0e8ad4097af66c938e62 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 322514 + timestamp: 1695991054894 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h9f69965_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda + sha256: 3418b1738243abba99e931c017b952771eeaa1f353c07f7d45b55e83bb74fcb3 + md5: 1bc01b9ffdf42beb1a9fe4e9222e0567 + depends: + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli + size: 343435 + timestamp: 1695990731924 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h9f69965_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda + sha256: 3418b1738243abba99e931c017b952771eeaa1f353c07f7d45b55e83bb74fcb3 + md5: 1bc01b9ffdf42beb1a9fe4e9222e0567 + depends: + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 343435 + timestamp: 1695990731924 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312heafc425_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda + sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 + md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a + depends: + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli + size: 366883 + timestamp: 1695990710194 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312heafc425_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda + sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 + md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a + depends: + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 366883 + timestamp: 1695990710194 +- kind: conda + name: build + version: 0.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb + md5: add7f31586d03678695b32b78a1337a1 + depends: + - importlib-metadata + - packaging + - pep517 >=0.9.1 + - python >=3.6 + - tomli + license: MIT + license_family: MIT + purls: + - pkg:pypi/build + size: 17759 + timestamp: 1631843776429 +- kind: conda + name: build + version: 0.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb + md5: add7f31586d03678695b32b78a1337a1 + depends: + - importlib-metadata + - packaging + - pep517 >=0.9.1 + - python >=3.6 + - tomli + license: MIT + license_family: MIT + purls: + - pkg:pypi/build?source=conda-forge-mapping + size: 17759 + timestamp: 1631843776429 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h10d778d_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 6097a6ca9ada32699b5fc4312dd6ef18 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 127885 + timestamp: 1699280178474 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h2466b09_7 + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b + md5: 276e7ffe9ffe39688abc665ef0f45596 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 54927 + timestamp: 1720974860185 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h2466b09_7 + build_number: 7 + subdir: win-64 url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b md5: 276e7ffe9ffe39688abc665ef0f45596 @@ -1395,4309 +2782,9515 @@ packages: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 - license_family: BSD - size: 54927 - timestamp: 1720974860185 + license: bzip2-1.0.6 + license_family: BSD + size: 54927 + timestamp: 1720974860185 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h4bc722e_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 252783 + timestamp: 1720974456583 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h4bc722e_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 252783 + timestamp: 1720974456583 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h93a5062_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda + sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f + md5: 1bbc659ca658bfd49a481b5ef7a0f40f + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 122325 + timestamp: 1699280294368 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h99b78c6_7 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 + md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 122909 + timestamp: 1720974522888 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h99b78c6_7 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 + md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + size: 122909 + timestamp: 1720974522888 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hcfcfb64_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda + sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 + md5: 26eb8ca6ea332b675e11704cce84a3be + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 124580 + timestamp: 1699280668742 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hd590300_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 69b8b6202a07720f448be700e300ccf4 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 254228 + timestamp: 1699279927352 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hfdf4475_7 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 + md5: 7ed4301d437b59045be7e051a0308211 + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 134188 + timestamp: 1720974491916 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hfdf4475_7 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 + md5: 7ed4301d437b59045be7e051a0308211 + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + size: 134188 + timestamp: 1720974491916 +- kind: conda + name: c-ares + version: 1.28.1 + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: d5eb7992227254c0e9a0ce71151f0079 + license: MIT + license_family: MIT + purls: [] + size: 152607 + timestamp: 1711819681694 +- kind: conda + name: c-ares + version: 1.28.1 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.28.1-h93a5062_0.conda + sha256: 2fc553d7a75e912efbdd6b82cd7916cc9cb2773e6cd873b77e02d631dd7be698 + md5: 04f776a6139f7eafc2f38668570eb7db + license: MIT + license_family: MIT + purls: [] + size: 150488 + timestamp: 1711819630164 +- kind: conda + name: c-ares + version: 1.28.1 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: dcde58ff9a1f30b0037a2315d1846d1f + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 168875 + timestamp: 1711819445938 +- kind: conda + name: c-ares + version: 1.32.2 + build: h4bc722e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 + md5: 8024af1ee7078e37fa3101c0a0296af2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 179740 + timestamp: 1721065841233 +- kind: conda + name: c-ares + version: 1.32.2 + build: h51dda26_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 + md5: be4a9b58fcf1374aeb79e873c1166e19 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: [] + size: 160929 + timestamp: 1721066014296 +- kind: conda + name: c-ares + version: 1.32.2 + build: h99b78c6_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + sha256: c9cb861e4cc5458df7e9277dd16623efc69491d1d74a85d826c121e2d831415c + md5: b0bcd3b8a19fb530d6106467dc681bb4 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: [] + size: 157768 + timestamp: 1721065989990 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: h56e8100_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda + sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 + md5: 63da060240ab8087b60d1357051ea7d6 + license: ISC + purls: [] + size: 155886 + timestamp: 1706843918052 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: h8857fd0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: f2eacee8c33c43692f1ccfd33d0f50b1 + license: ISC + purls: [] + size: 155665 + timestamp: 1706843838227 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hbcca054_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 2f4327a1cbe7f022401b236e915a5fef + license: ISC + purls: [] + size: 155432 + timestamp: 1706843687645 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hf0a4a13_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda + sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 + md5: fb416a1795f18dcc5a038bc2dc54edf9 + license: ISC + purls: [] + size: 155725 + timestamp: 1706844034242 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: h56e8100_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e + md5: 9caa97c9504072cd060cf0a3142cc0ed + license: ISC + purls: [] + size: 154943 + timestamp: 1720077592592 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: h56e8100_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e + md5: 9caa97c9504072cd060cf0a3142cc0ed + license: ISC + size: 154943 + timestamp: 1720077592592 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: h8857fd0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 + md5: 7df874a4b05b2d2b82826190170eaa0f + license: ISC + purls: [] + size: 154473 + timestamp: 1720077510541 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: h8857fd0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 + md5: 7df874a4b05b2d2b82826190170eaa0f + license: ISC + size: 154473 + timestamp: 1720077510541 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: hbcca054_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 + md5: 23ab7665c5f63cfb9f1f6195256daac6 + license: ISC + purls: [] + size: 154853 + timestamp: 1720077432978 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: hbcca054_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 + md5: 23ab7665c5f63cfb9f1f6195256daac6 + license: ISC + size: 154853 + timestamp: 1720077432978 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: hf0a4a13_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b + md5: 21f9a33e5fe996189e470c19c5354dbe + license: ISC + purls: [] + size: 154517 + timestamp: 1720077468981 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: hf0a4a13_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b + md5: 21f9a33e5fe996189e470c19c5354dbe + license: ISC + size: 154517 + timestamp: 1720077468981 +- kind: conda + name: cctools + version: '986' + build: h4c9edd9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda + sha256: bfbfc99da17828d007286f40af86b44315769cfbcc4beba62a8ae64264bd1193 + md5: abcfabe468c14e506fceab2e85380b3b + depends: + - cctools_osx-arm64 986 hd11630f_0 + - ld64 711 h4c6efb1_0 + - libllvm18 >=18.1.1,<18.2.0a0 + license: APSL-2.0 + license_family: Other + purls: [] + size: 21460 + timestamp: 1710484691219 +- kind: conda + name: cctools + version: '986' + build: hd3558d4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda + sha256: 0879b6169986404d3e79e16676fe3de0cd962b522b7e8ef0fdad345400a28571 + md5: 64cd107846d3407b8d75899078ffb2ab + depends: + - cctools_osx-64 986 h58a35ae_0 + - ld64 711 h4e51db5_0 + - libllvm18 >=18.1.1,<18.2.0a0 + license: APSL-2.0 + license_family: Other + purls: [] + size: 21451 + timestamp: 1710484533466 +- kind: conda + name: cctools_osx-64 + version: '986' + build: h58a35ae_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + sha256: a11f85e26b7189af87aa7e42b29a80f6bae73a92710cd5a40e278d6376a66ef5 + md5: 1139258589f2d752a578ed5b2680eb60 + depends: + - ld64_osx-64 >=711,<712.0a0 + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - sigtool + constrains: + - ld64 711.* + - cctools 986.* + - clang 18.1.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 1104790 + timestamp: 1710484461097 +- kind: conda + name: cctools_osx-64 + version: '986' + build: h58a35ae_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + sha256: a11f85e26b7189af87aa7e42b29a80f6bae73a92710cd5a40e278d6376a66ef5 + md5: 1139258589f2d752a578ed5b2680eb60 + depends: + - ld64_osx-64 >=711,<712.0a0 + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - sigtool + constrains: + - ld64 711.* + - cctools 986.* + - clang 18.1.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 1104790 + timestamp: 1710484461097 +- kind: conda + name: cctools_osx-arm64 + version: '986' + build: hd11630f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + sha256: 4152323bbb78e2730fea9004333c9c51fb82a9ddd935f005280bf621849ec53d + md5: cce200c91b2d291c85e66098fe0d31c2 + depends: + - ld64_osx-arm64 >=711,<712.0a0 + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - sigtool + constrains: + - cctools 986.* + - clang 18.1.* + - ld64 711.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 1123368 + timestamp: 1710484635601 +- kind: conda + name: cctools_osx-arm64 + version: '986' + build: hd11630f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + sha256: 4152323bbb78e2730fea9004333c9c51fb82a9ddd935f005280bf621849ec53d + md5: cce200c91b2d291c85e66098fe0d31c2 + depends: + - ld64_osx-arm64 >=711,<712.0a0 + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - sigtool + constrains: + - cctools 986.* + - clang 18.1.* + - ld64 711.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 1123368 + timestamp: 1710484635601 +- kind: conda + name: certifi + version: 2024.2.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda + sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54 + md5: 0876280e409658fc6f9e75d035960333 + depends: + - python >=3.7 + license: ISC + purls: + - pkg:pypi/certifi + size: 160559 + timestamp: 1707022289175 +- kind: conda + name: certifi + version: 2024.7.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + sha256: dd3577bb5275062c388c46b075dcb795f47f8dac561da7dd35fe504b936934e5 + md5: 24e7fd6ca65997938fff9e5ab6f653e4 + depends: + - python >=3.7 + license: ISC + purls: + - pkg:pypi/certifi?source=conda-forge-mapping + size: 159308 + timestamp: 1720458053074 +- kind: conda + name: cffi + version: 1.16.0 + build: py310h2fee648_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda + sha256: 007e7f69ab45553b7bf11f2c1b8d3f3a13fd42997266a0d57795f41c7d38df36 + md5: 45846a970e71ac98fd327da5d40a0a2c + depends: + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 241339 + timestamp: 1696001848492 +- kind: conda + name: cffi + version: 1.16.0 + build: py310h8d17308_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py310h8d17308_0.conda + sha256: 1aeebb88518ab48c927d7360648a2799def172d8fcb0d7e20cb7208a3570ef9e + md5: b4bcce1a7ea1164e6dcea6c4f00d962b + depends: + - pycparser + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 237888 + timestamp: 1696002116250 +- kind: conda + name: cffi + version: 1.16.0 + build: py310hdca579f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py310hdca579f_0.conda + sha256: 37802485964f1a3137ed6ab21ebc08fe9d35e7dc4da39f2b72a814644dd1ac15 + md5: b9e6213f0eb91f40c009ce69139c1869 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 229407 + timestamp: 1696002017767 +- kind: conda + name: cffi + version: 1.16.0 + build: py310hdcd7c05_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py310hdcd7c05_0.conda + sha256: 4edab3f1f855554e10950efe064b75138943812af829a764f9b570d1a7189d15 + md5: 8855823d908004e4d3b4fd4218795ad2 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 232227 + timestamp: 1696002085787 +- kind: conda + name: cffi + version: 1.16.0 + build: py311h4a08483_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py311h4a08483_0.conda + sha256: 9430416328fe2a28e206e703de771817064c8613a79a6a21fe7107f6a783104c + md5: cbdde0484a47b40e6ce2a4e5aaeb48d7 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 292511 + timestamp: 1696002194472 +- kind: conda + name: cffi + version: 1.16.0 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py311ha68e1ae_0.conda + sha256: eb7463fe3785dd9ac0b3b1e5fea3b721d20eb082e194cab0af8d9ff28c28934f + md5: d109d6e767c4890ea32880b8bfa4a3b6 + depends: + - pycparser + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 297043 + timestamp: 1696002186279 +- kind: conda + name: cffi + version: 1.16.0 + build: py311hb3a22ac_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda + sha256: b71c94528ca0c35133da4b7ef69b51a0b55eeee570376057f3d2ad60c3ab1444 + md5: b3469563ac5e808b0cd92810d0697043 + depends: + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 300207 + timestamp: 1696001873452 +- kind: conda + name: cffi + version: 1.16.0 + build: py311hc0b63fd_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py311hc0b63fd_0.conda + sha256: 1f13a5fa7f310fdbd27f5eddceb9e62cfb10012c58a58c923dd6f51fa979748a + md5: 15d07b82223cac96af629e5e747ba27a + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 289932 + timestamp: 1696002096156 +- kind: conda + name: cffi + version: 1.16.0 + build: py312h38bf5a0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda + sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e + md5: a45759c013ab20b9017ef9539d234dd7 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 282370 + timestamp: 1696002004433 +- kind: conda + name: cffi + version: 1.16.0 + build: py312h38bf5a0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda + sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e + md5: a45759c013ab20b9017ef9539d234dd7 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 282370 + timestamp: 1696002004433 +- kind: conda + name: cffi + version: 1.16.0 + build: py312h8e38eb3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda + sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 + md5: 960ecbd65860d3b1de5e30373e1bffb1 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 284245 + timestamp: 1696002181644 +- kind: conda + name: cffi + version: 1.16.0 + build: py312h8e38eb3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda + sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 + md5: 960ecbd65860d3b1de5e30373e1bffb1 + depends: + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 284245 + timestamp: 1696002181644 +- kind: conda + name: cffi + version: 1.16.0 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda + sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 + md5: 5a51096925d52332c62bfd8904899055 + depends: + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 287805 + timestamp: 1696002408940 +- kind: conda + name: cffi + version: 1.16.0 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda + sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 + md5: 5a51096925d52332c62bfd8904899055 + depends: + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 287805 + timestamp: 1696002408940 +- kind: conda + name: cffi + version: 1.16.0 + build: py312hf06ca03_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda + sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 + md5: 56b0ca764ce23cc54f3f7e2a7b970f6d + depends: + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 294523 + timestamp: 1696001868949 +- kind: conda + name: cffi + version: 1.16.0 + build: py312hf06ca03_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda + sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 + md5: 56b0ca764ce23cc54f3f7e2a7b970f6d + depends: + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 294523 + timestamp: 1696001868949 +- kind: conda + name: cfgv + version: 3.3.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 + sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c + md5: ebb5f5f7dc4f1a3780ef7ea7738db08c + depends: + - python >=3.6.1 + license: MIT + license_family: MIT + size: 10788 + timestamp: 1629909423398 +- kind: conda + name: chardet + version: 5.2.0 + build: py310h2ec42d9_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py310h2ec42d9_1.conda + sha256: 91a708b88de532497469162b335a316aef47d56878bddf66df186928492690ff + md5: c1a74b747db074df089e644b92fecc40 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 245926 + timestamp: 1695468873634 +- kind: conda + name: chardet + version: 5.2.0 + build: py310h5588dad_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py310h5588dad_1.conda + sha256: 069e17a9a0a60456e22b7035ba93bb597867352fa336a7ff46096094b5e8910b + md5: c273eb835519f5b7859fabcd7483f6f7 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 261681 + timestamp: 1695469057660 +- kind: conda + name: chardet + version: 5.2.0 + build: py310hbe9552e_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py310hbe9552e_1.conda + sha256: f0088bc3307a93591d9069364bd1217d3c9feeab11de767a5727b94104457313 + md5: 0efa23da34347a5b4b777e06ccefe10a + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 245293 + timestamp: 1695469005172 +- kind: conda + name: chardet + version: 5.2.0 + build: py310hff52083_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py310hff52083_1.conda + sha256: ab38a9946bc2beb9fc03c810b61d9e93030afff3e17e82ad4f8a1e7749957125 + md5: a677136a83b823803d2f92045f885be2 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 246635 + timestamp: 1695468739935 +- kind: conda + name: chardet + version: 5.2.0 + build: py311h1ea47a8_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py311h1ea47a8_1.conda + sha256: 1972d150055784f8b10a0277f75176aed3164483cb529b027bff45ae4f32925f + md5: 5c7813415d332343dfe550685954d1b5 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 284249 + timestamp: 1695469001100 +- kind: conda + name: chardet + version: 5.2.0 + build: py311h267d04e_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py311h267d04e_1.conda + sha256: 69541a0c834baa0b404cb55f8389bb53f8e9d6962055d68285635d6fbc04334c + md5: 2aa7eb0b906818f900e2075fc244976f + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 269754 + timestamp: 1695469210623 +- kind: conda + name: chardet + version: 5.2.0 + build: py311h38be061_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py311h38be061_1.conda + sha256: 80b547150fc6d125fe034bcc3e820222faa0136463b32b82d7cbe965cc5dec77 + md5: b8cfb13de4dbe349a41800644391de6a + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 264886 + timestamp: 1695468797136 +- kind: conda + name: chardet + version: 5.2.0 + build: py311h6eed73b_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py311h6eed73b_1.conda + sha256: 5826e13627594bafa2f0b4074d9233b0de74227835d249641f216423b3dc8dfc + md5: dd58f7f16513cea1fea710651e4df728 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 267330 + timestamp: 1695468986364 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h2e8e312_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda + sha256: 105e8f3c7a4510d8b8e3f164970c898e2b7ea02417b99369c7f58a0bb95af34d + md5: fcc4fea02fa461bc3ad2a5d6de0c43a8 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet + size: 277773 + timestamp: 1695468989681 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h2e8e312_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda + sha256: 105e8f3c7a4510d8b8e3f164970c898e2b7ea02417b99369c7f58a0bb95af34d + md5: fcc4fea02fa461bc3ad2a5d6de0c43a8 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 277773 + timestamp: 1695468989681 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h7900ff3_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda + sha256: 584804790b465c8e28b3c3fcea8e774cb659fe479afd8adc0d39406e8c220194 + md5: af3980cc4690716a5510c8a08cb06238 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet + size: 260197 + timestamp: 1695468803539 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h7900ff3_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda + sha256: 584804790b465c8e28b3c3fcea8e774cb659fe479afd8adc0d39406e8c220194 + md5: af3980cc4690716a5510c8a08cb06238 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 260197 + timestamp: 1695468803539 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h81bd7bf_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda + sha256: 2451501ec933017ff77c18436884baa90b289420c43ad4bdb4fe60d55e5dcdfd + md5: ea728c39b7453cb5f7177bc44ee22c73 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet + size: 263585 + timestamp: 1695469015195 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h81bd7bf_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda + sha256: 2451501ec933017ff77c18436884baa90b289420c43ad4bdb4fe60d55e5dcdfd + md5: ea728c39b7453cb5f7177bc44ee22c73 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 263585 + timestamp: 1695469015195 +- kind: conda + name: chardet + version: 5.2.0 + build: py312hb401068_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda + sha256: ba2ebeb6d05a3cdd94dbd7a52dabc0686192e4337774c4f7c32da7ef0e04dd10 + md5: 488080e6ee9bc087762669d1f6d2dc8a + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet + size: 259854 + timestamp: 1695468947554 +- kind: conda + name: chardet + version: 5.2.0 + build: py312hb401068_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda + sha256: ba2ebeb6d05a3cdd94dbd7a52dabc0686192e4337774c4f7c32da7ef0e04dd10 + md5: 488080e6ee9bc087762669d1f6d2dc8a + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 259854 + timestamp: 1695468947554 +- kind: conda + name: charset-normalizer + version: 3.3.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 + md5: 7f4a9e3fcff3f6356ae99244a014da6a + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/charset-normalizer + size: 46597 + timestamp: 1698833765762 +- kind: conda + name: charset-normalizer + version: 3.3.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 + md5: 7f4a9e3fcff3f6356ae99244a014da6a + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/charset-normalizer?source=conda-forge-mapping + size: 46597 + timestamp: 1698833765762 +- kind: conda + name: click + version: 8.1.7 + build: unix_pyh707e725_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec + md5: f3ad426304898027fc619827ff428eca + depends: + - __unix + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click + size: 84437 + timestamp: 1692311973840 +- kind: conda + name: click + version: 8.1.7 + build: unix_pyh707e725_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec + md5: f3ad426304898027fc619827ff428eca + depends: + - __unix + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click?source=conda-forge-mapping + size: 84437 + timestamp: 1692311973840 +- kind: conda + name: click + version: 8.1.7 + build: win_pyh7428d3b_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 + md5: 3549ecbceb6cd77b91a105511b7d0786 + depends: + - __win + - colorama + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click + size: 85051 + timestamp: 1692312207348 +- kind: conda + name: click + version: 8.1.7 + build: win_pyh7428d3b_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 + md5: 3549ecbceb6cd77b91a105511b7d0786 + depends: + - __win + - colorama + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click?source=conda-forge-mapping + size: 85051 + timestamp: 1692312207348 +- kind: conda + name: colorama + version: 0.4.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: 3faab06a954c2a04039983f2c4a50d99 + depends: + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/colorama + size: 25170 + timestamp: 1666700778190 +- kind: conda + name: colorama + version: 0.4.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: 3faab06a954c2a04039983f2c4a50d99 + depends: + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/colorama?source=conda-forge-mapping + size: 25170 + timestamp: 1666700778190 +- kind: conda + name: conda + version: 24.3.0 + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.3.0-py312h2e8e312_0.conda + sha256: 9bc70a7291e559762d4049711510772d2e4fda03f142afdaeebedaaa28a0f47e + md5: c7e9ec64cd01c83a8b4418ab1699aeb8 + depends: + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda + size: 1198612 + timestamp: 1711446530411 +- kind: conda + name: conda + version: 24.3.0 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.3.0-py312h7900ff3_0.conda + sha256: 64eee1c0f97bed16908ab6c4f3cd6c0bebb67fda5bba580888e513a1ef22f3f9 + md5: 3b7d3f731e02380fb68b654b037ae727 + depends: + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-build >=24.3 + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda + size: 1195527 + timestamp: 1711445992988 +- kind: conda + name: conda + version: 24.3.0 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.3.0-py312h81bd7bf_0.conda + sha256: d8fb7f84ea5d946c5acf50d9687a1d9f112116ef6a06c0bb645320fd4e7db6e7 + md5: 537dbde4ec642c05ea421a89ae16366a + depends: + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda + size: 1197572 + timestamp: 1711446174975 +- kind: conda + name: conda + version: 24.3.0 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.3.0-py312hb401068_0.conda + sha256: 0c9a15ec877a9374deef2fd020fe644869a98aa5fec75b852a99d20a0198c624 + md5: 549c60ea2ec52e45a48b12349d982115 + depends: + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda + size: 1196619 + timestamp: 1711446125221 +- kind: conda + name: conda + version: 24.5.0 + build: py310h2ec42d9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py310h2ec42d9_0.conda + sha256: e89eedb77c3497859099da976f0dd55402b6e0ad5c70d7f948854b95c823193b + md5: 6baab58c25f0f2a7c169a8845055d7ff + depends: + - 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 + - python_abi 3.10.* *_cp310 + - 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 + constrains: + - conda-build >=24.3 + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 962712 + timestamp: 1715632195160 +- kind: conda + name: conda + version: 24.5.0 + build: py310h5588dad_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py310h5588dad_0.conda + sha256: 6cb5b9299054cdcb4b1cc918ae1a95d9d2d2ca5b03290d8780df48edd6ab6138 + md5: 8ead0666296fce486409973c1b88b9f7 + depends: + - 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 + - python_abi 3.10.* *_cp310 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 964009 + timestamp: 1715632477327 +- kind: conda + name: conda + version: 24.5.0 + build: py310hbe9552e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py310hbe9552e_0.conda + sha256: cad372428468745735aa8a84d1be087eb6cb2f1446ee2c9f8269449e0eaeb303 + md5: e3ad564582eb2cc1965dffa45e73e4b5 + depends: + - 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 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + - 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 + constrains: + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 964178 + timestamp: 1715632173559 +- kind: conda + name: conda + version: 24.5.0 + build: py310hff52083_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py310hff52083_0.conda + sha256: b0afa92a62d55221e85d6bb50f863bead42a98dbd17c62a59ff4fb259da12171 + md5: 56952b606f4d08952be78eff94874be8 + depends: + - 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 + - python_abi 3.10.* *_cp310 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 961219 + timestamp: 1715632034279 +- kind: conda + name: conda + version: 24.5.0 + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py311h1ea47a8_0.conda + sha256: a4dd2b472c87c481047692001b905b41b99722aaabae58ae9b402cdaa5231b14 + md5: 41b87d65919231345852d9ca9b445322 + depends: + - 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.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1252525 + timestamp: 1715632579685 +- kind: conda + name: conda + version: 24.5.0 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py311h267d04e_0.conda + sha256: 6b2dae699444d58aaf6ace2a4414b82b2c87c6a0c7db4e4761c3e4336b2008eb + md5: 4bc0033520bc8fe4ad85bd8e03c76da6 + depends: + - 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.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1253439 + timestamp: 1715632225406 +- kind: conda + name: conda + version: 24.5.0 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py311h38be061_0.conda + sha256: c9f46253e502e74ed3933cf72081d74aa10c98e781132325617307d05b3030b3 + md5: 8408fb2adcce818ff95758d1826dad2b + depends: + - 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.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-build >=24.3 + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1247034 + timestamp: 1715632061486 +- kind: conda + name: conda + version: 24.5.0 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py311h6eed73b_0.conda + sha256: e05096548a77220aada303e523b1d66a8831ed3eb0b77b60730cbd73cbae722c + md5: 3dda44c16d02ca2382edd31aad178475 + depends: + - 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.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1253380 + timestamp: 1715632330296 +- kind: conda + name: conda + version: 24.5.0 + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py312h2e8e312_0.conda + sha256: e951e3ac0af41d3ddc0c7f8c484fea53012abd004f2c2a047ea6c5bde43f0ce1 + md5: 9258e36baf7c2a1d28133619e2168d8d + depends: + - 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.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1221670 + timestamp: 1715632571390 +- kind: conda + name: conda + version: 24.5.0 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py312h7900ff3_0.conda + sha256: 913254d93807667543aca625da828909529ba7b3c1a8c700b201ae1723df7996 + md5: bda145e97ad4eb12bf5b7aed7d3d5d45 + depends: + - 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.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-env >=2.6 + - conda-build >=24.3 + - conda-content-trust >=0.1.1 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1218237 + timestamp: 1715632066355 +- kind: conda + name: conda + version: 24.5.0 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py312h81bd7bf_0.conda + sha256: 5edfa3d5fd81c692be0f31421cc6e9e5cd9d7146635612f61f4f3321a33595b5 + md5: f408bfea2eaf2ec3238422fe13bab78d + depends: + - 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.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1218583 + timestamp: 1715632234659 +- kind: conda + name: conda + version: 24.5.0 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py312hb401068_0.conda + sha256: 7ce4f091260639e76d6417bf5461bed2ef96de15db19ab7b2f2f4d6e829029aa + md5: 7b2fe4530602e681a1fb9ae9c4de5cea + depends: + - 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.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - 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 + constrains: + - conda-build >=24.3 + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda?source=conda-forge-mapping + size: 1220021 + timestamp: 1715632192869 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312h2e8e312_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.3.0-py312h2e8e312_1.conda + sha256: b80a891776eb2ae8e5e6dffdbbd3ad1ce8aefce14494ab887954d57c143db8d8 + md5: afb6d1913fc831174a95c5b45434f8d5 + depends: + - beautifulsoup4 + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - m2-patch >=2.6 + - menuinst >=2 + - packaging + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 752036 + timestamp: 1711609193364 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312h7900ff3_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.3.0-py312h7900ff3_1.conda + sha256: fd1418aded3d3242d2f4e5f6ee11702658c69528443d66b4a00bbd093aeeff11 + md5: bfc15ed17aaea7bf1150dba5787c16d6 + depends: + - beautifulsoup4 + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 752571 + timestamp: 1711608769290 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312h81bd7bf_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.3.0-py312h81bd7bf_1.conda + sha256: dc86c2edbd0f55b40ae81d5350b7ba11685675587d3a3ecae9472b682e5fdbfe + md5: 75828728b3438c9c3826c2f98fbb361f + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 751442 + timestamp: 1711608951046 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312hb401068_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.3.0-py312hb401068_1.conda + sha256: c67916e4d0c1f4e45a7bdcf19d4195f82ece52a61797b478f0a1db8abf618c3b + md5: 32351ccbf6f35735a0c89980b2b29c13 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 753262 + timestamp: 1711608860452 +- kind: conda + name: conda-build + version: 24.5.1 + build: py310h2ec42d9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py310h2ec42d9_0.conda + sha256: 9e33cfbd802a0192fb9e0f0b185d1852e7318e2cf29be7d27181808419f8d021 + md5: d907f46a0699d3001bbb8d7f0e948ee6 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 584798 + timestamp: 1716998460670 +- kind: conda + name: conda-build + version: 24.5.1 + build: py310h5588dad_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py310h5588dad_0.conda + sha256: cf738334b0d1858451f0688cd7701207146ba8fcb160da968e1cbfef5a11be8a + md5: 18dd7cddadf37c8fa9e398cc5487de83 + depends: + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - m2-patch >=2.6 + - menuinst >=2 + - packaging + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 586609 + timestamp: 1716998712254 +- kind: conda + name: conda-build + version: 24.5.1 + build: py310hbe9552e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py310hbe9552e_0.conda + sha256: 05b07153fbb0eba4aa8af16fc32263883b83bb0ea10a32896950a7e04aed3c49 + md5: 9aa1ba38e7ff66f3aa66246526da6def + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 583812 + timestamp: 1716998460842 +- kind: conda + name: conda-build + version: 24.5.1 + build: py310hff52083_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py310hff52083_0.conda + sha256: 28d2d8022c2a67b7aeaf19b9109bab1dc3239b9e2d17fca5125d955968a13631 + md5: 846dfdc56aba49bb69b42a6d67c119e5 + depends: + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 586161 + timestamp: 1716998266304 +- kind: conda + name: conda-build + version: 24.5.1 + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py311h1ea47a8_0.conda + sha256: dea7625d9a8447674fe989a7453f5767f9a39daa6d97bac0449ab3199640c1f6 + md5: bd191bc609e29b52a3c343453f774fcb + depends: + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - m2-patch >=2.6 + - menuinst >=2 + - packaging + - pkginfo + - psutil + - py-lief + - python >=3.11,<3.12.0a0 + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 788000 + timestamp: 1716998782774 +- kind: conda + name: conda-build + version: 24.5.1 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py311h267d04e_0.conda + sha256: 4c308c675de080d650d5cb95de97b937e6232db8541de97b23e4bfadbb830aa6 + md5: 3ead88952bd88835ab0a51922c629afb + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 786361 + timestamp: 1716998378724 +- kind: conda + name: conda-build + version: 24.5.1 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py311h38be061_0.conda + sha256: a8ec9f9daa18d171df1f5cfac60fcad78219a27f11eb1e6d9d87d504da6fea54 + md5: 2934a4e4d7f4c6de558f071208144e31 + depends: + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief + - python >=3.11,<3.12.0a0 + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 785538 + timestamp: 1716998254972 +- kind: conda + name: conda-build + version: 24.5.1 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py311h6eed73b_0.conda + sha256: 4afa2bf5823687ce3801c06f4594a9d4cdf3fcb060b8a2f394bfde5f21c9c583 + md5: f79705cbd8e906cc1406d73e41998f46 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.11,<3.12.0a0 + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 784548 + timestamp: 1716998370813 +- kind: conda + name: conda-build + version: 24.5.1 + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py312h2e8e312_0.conda + sha256: 83f1394960d15e3bd1f086c4e3cee206bc0930d00538e04fac8f71df6592c4f1 + md5: 0637b43e6130a46e57ca95dfbd9d9238 + depends: + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - m2-patch >=2.6 + - menuinst >=2 + - packaging + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 763825 + timestamp: 1716999060784 +- kind: conda + name: conda-build + version: 24.5.1 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py312h7900ff3_0.conda + sha256: 158f6dc538927b8d75872ded3b22b7aee4273b750f99830418360ffb1221304e + md5: 0dfa4873fb3b80995ecdff241e12919b + depends: + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 762358 + timestamp: 1716998279604 +- kind: conda + name: conda-build + version: 24.5.1 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py312h81bd7bf_0.conda + sha256: 723a4917eaf6b3e8ea99fcc454074abfe39599016ad49dc5ef9be8f0ff5008d1 + md5: 54e53ea300abc7fefb4c0869ee0ea646 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 761410 + timestamp: 1716998477433 +- kind: conda + name: conda-build + version: 24.5.1 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py312hb401068_0.conda + sha256: 22bc14073467452e58f86dda1f09735e673a419f7e9449ceae7a7822b18a7073 + md5: 03a269f3d5d02fda51a3c40f40db4c75 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - frozendict >=2.4.2 + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 763728 + timestamp: 1716998286413 +- kind: conda + name: conda-index + version: 0.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.4.0-pyhd8ed1ab_0.conda + sha256: 4171355e42939f31cd154b84b5b98cb9fe5d9f784ead23e5b7abf05281b5bb60 + md5: 6b2a22b4716391d141136cb8d5d4bd16 + depends: + - click >=8 + - conda >=4.12.0 + - conda-package-streaming + - filelock + - jinja2 + - more-itertools + - python >=3.7 + - pyyaml >=6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-index + size: 176354 + timestamp: 1708062210737 +- kind: conda + name: conda-index + version: 0.5.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + sha256: 05a9fe18fedf8ea151a9a4d3665f069b668cc149e77b923b4244c5ee48d3ce04 + md5: 6e312377c7c70eb15a3981fc82d6ecba + depends: + - click >=8 + - conda >=4.12.0 + - conda-package-streaming + - filelock + - jinja2 + - more-itertools + - python >=3.7 + - pyyaml >=6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-index?source=conda-forge-mapping + size: 184104 + timestamp: 1718383199808 +- kind: conda + name: conda-libmamba-solver + version: 24.1.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.1.0-pyhd8ed1ab_0.conda + sha256: 0667d49300062da2b46b04c097a9ace55c7a133d035517ec093e54a54f8f6b55 + md5: 304dc78ad6e52e0fd663df1d484c1531 + depends: + - boltons >=23.0.0 + - conda >=23.7.4 + - libmambapy >=1.5.6,<2.0a0 + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-libmamba-solver + size: 41157 + timestamp: 1706566194042 +- kind: conda + name: conda-libmamba-solver + version: 24.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + sha256: e0cb57f5f86a18dc75045946ad3543a4e219a7b61b8f94fa2eba901c13b5cd69 + md5: 857c9e25f0a77c0bd7eb622d46d9418f + depends: + - boltons >=23.0.0 + - conda >=23.7.4 + - libmambapy >=1.5.6,<2.0a0 + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-libmamba-solver?source=conda-forge-mapping + size: 40890 + timestamp: 1721292570796 +- kind: conda + name: conda-package-handling + version: 2.2.0 + build: pyh38be061_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda + sha256: 9a221808405d813d8c555efce6944379b907d36d79e77d526d573efa6b996d26 + md5: 8a3ae7f6318376aa08ea753367bb7dd6 + depends: + - conda-package-streaming >=0.9.0 + - python >=3.7 + - zstandard >=0.15 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-package-handling + size: 255143 + timestamp: 1691048232276 +- kind: conda + name: conda-package-handling + version: 2.3.0 + build: pyh7900ff3_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + sha256: c85a76ffd08608c3c61d1ca6c82be9f45ab31a5e108a1aec0872d84b3546e4f1 + md5: 0a7dce281ae2be81acab0aa963e6bb99 + depends: + - conda-package-streaming >=0.9.0 + - python >=3.8 + - zstandard >=0.15 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-package-handling?source=conda-forge-mapping + size: 256238 + timestamp: 1717678729709 +- kind: conda + name: conda-package-streaming + version: 0.9.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda + sha256: 654a2488f77bf43555787d952dbffdc5d97956ff4aa9e0414a7131bb741dcf4c + md5: 38253361efb303deead3eab39ae9269b + depends: + - python >=3.7 + - zstandard >=0.15 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-package-streaming + size: 19183 + timestamp: 1691009348105 +- kind: conda + name: conda-package-streaming + version: 0.10.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + sha256: 69674f1389168be29964e2d89c9597c7903462bf7525727a2df93dbd9f960934 + md5: 3480386e00995f7a1dfb3b9aa2fe70fd + depends: + - python >=3.7 + - zstandard >=0.15 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-package-streaming?source=conda-forge-mapping + size: 19401 + timestamp: 1717678620472 +- kind: conda + name: cryptography + version: 42.0.5 + build: py312h1f4a190_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.5-py312h1f4a190_0.conda + sha256: 6475b53ddb2b623a34d515977704488b19bf1ef8c5a1a9004c22a739351f8588 + md5: 14256d16d22cfbba12f0bb9e485e9077 + depends: + - cffi >=1.12 + - openssl >=3.2.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography + size: 1143364 + timestamp: 1708781427908 +- kind: conda + name: cryptography + version: 42.0.5 + build: py312h241aef2_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.5-py312h241aef2_0.conda + sha256: 5dc135fc6ea57bf94cf32313f91c93f8a4af15133879dd86e6c8c16e4e07c55e + md5: 0d8c0e4e8c1b2796eaf6770a76a9d1e4 + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography + size: 1976047 + timestamp: 1708780611460 +- kind: conda + name: cryptography + version: 42.0.5 + build: py312h3d16f4b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.5-py312h3d16f4b_0.conda + sha256: dcf489514a1b93981da61de21c94a35a8f6f969759cdb5a9c222bfb10bc5063e + md5: 6132f6e13868c12209c823c8d193e16e + depends: + - __osx >=10.12 + - cffi >=1.12 + - openssl >=3.2.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=10.12 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography + size: 1281399 + timestamp: 1708853006483 +- kind: conda + name: cryptography + version: 42.0.5 + build: py312h99f8e83_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.5-py312h99f8e83_0.conda + sha256: 6e37a83b60a85cb58224213c710b476a2a06fe48f45c1fa76b1d7a2c3ddaff0a + md5: 32f29561e515d2aae57275d8b7af528d + depends: + - cffi >=1.12 + - openssl >=3.2.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography + size: 1274922 + timestamp: 1708780961058 +- kind: conda + name: cryptography + version: 42.0.8 + build: py310h25a5809_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py310h25a5809_0.conda + sha256: 5774749be3df81cc861ae8fa1e5e2a6b16f0ec40983a6a14213eddcd3f178ae9 + md5: c41a45bdfcac0c4cacb2fbf09e16d755 + depends: + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1115021 + timestamp: 1717560640836 +- kind: conda + name: cryptography + version: 42.0.8 + build: py310h8d695f1_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py310h8d695f1_0.conda + sha256: 58b9c93c9b3951fc63a67f3a39c358d8ff38ece1c8bd551491d8a21208aeb012 + md5: 63a86c3ecc46ab7ab63a6cac72f2e67d + depends: + - __osx >=10.13 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - __osx >=10.12 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1250728 + timestamp: 1717559727815 +- kind: conda + name: cryptography + version: 42.0.8 + build: py310ha71c378_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py310ha71c378_0.conda + sha256: 8c75dc272238c3fc2f5738d47098da43256ccb1d58c40e98eff68e8402bf01ef + md5: 3510bce952d7b354a73943afd1223380 + depends: + - __osx >=11.0 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1240864 + timestamp: 1717560053022 +- kind: conda + name: cryptography + version: 42.0.8 + build: py310hb1bd9d3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py310hb1bd9d3_0.conda + sha256: b72ff0e4fb4f31c9de9974b0931bcc200e0c2b38ecbd774a9698078aad7edce5 + md5: 90f979ae54910d4e256d9fa34de71b4d + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.3.1,<4.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1944963 + timestamp: 1717559661312 +- kind: conda + name: cryptography + version: 42.0.8 + build: py311h4a61cc7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py311h4a61cc7_0.conda + sha256: 887557c1cc5083f68e531ffe98bb95e0ea2e99fb36f9d12f7f66c4cad2de7502 + md5: 962bcc96f59a31b62c43ac2b306812af + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.3.1,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1994262 + timestamp: 1717559614443 +- kind: conda + name: cryptography + version: 42.0.8 + build: py311h4ba4ffd_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py311h4ba4ffd_0.conda + sha256: 3405d8c36085f77ba07acf04a06bafcaba8eccbc9945f6aa3c629da0b3448c94 + md5: 5cdaed9a52130174d3a186b235e0aea7 + depends: + - __osx >=10.13 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=10.12 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1293614 + timestamp: 1717559929443 +- kind: conda + name: cryptography + version: 42.0.8 + build: py311hcaeb4ce_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py311hcaeb4ce_0.conda + sha256: 3dd780ec2a637e8fa1095111cbf0b4ff13e9d01c2d81aa1b5b8f8ad2186873c5 + md5: 167cc1ddd4e8afab3959811dabaa79d8 + depends: + - __osx >=11.0 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1286118 + timestamp: 1717560064361 +- kind: conda + name: cryptography + version: 42.0.8 + build: py311hfd75b31_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py311hfd75b31_0.conda + sha256: c422f83400092c9764d28f8551787bb1e8c0a3077ff665da324e88e168d1eb18 + md5: df7b0031f07fe3a35892fbad84b62ea0 + depends: + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1163192 + timestamp: 1717560457584 +- kind: conda + name: cryptography + version: 42.0.8 + build: py312h7e81a9d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py312h7e81a9d_0.conda + sha256: 7b9afc3214afd3600b40e1282fd8379a17405bf2908de34c6f5f0bf2810c9f55 + md5: d83cbf7878baeba7565dc77e39d77998 + depends: + - __osx >=10.13 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=10.12 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1283006 + timestamp: 1717559922035 +- kind: conda + name: cryptography + version: 42.0.8 + build: py312h9500af3_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py312h9500af3_0.conda + sha256: 24bf4a9109e5978c84845cbc26d8d3dddf916ec55cf301ca83c789048463c4f9 + md5: 5d10c62fbe10b315a0b07022d97db413 + depends: + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1149639 + timestamp: 1717560630635 +- kind: conda + name: cryptography + version: 42.0.8 + build: py312had01cb0_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py312had01cb0_0.conda + sha256: 2ed73648a6d202975a38cb9ed011bdec7c7ffe0cb92babe01665e0863377e148 + md5: 1a0472dfb49fb0a9c6b260cf781bc511 + depends: + - __osx >=11.0 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1276100 + timestamp: 1717559894721 +- kind: conda + name: cryptography + version: 42.0.8 + build: py312hbcc2302_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py312hbcc2302_0.conda + sha256: 3808035ab718df43aa27e5df372cf17685a61c41ddced539e83f38e82372e18d + md5: d6cbf583b33e9473ca9129ad21936507 + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.3.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1981326 + timestamp: 1717559617177 +- kind: conda + name: deprecated + version: 1.2.14 + build: pyh1a96a4e_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 + md5: 4e4c4236e1ca9bcd8816b921a4805882 + depends: + - python >=2.7 + - wrapt <2,>=1.10 + license: MIT + license_family: MIT + purls: + - pkg:pypi/deprecated + size: 14033 + timestamp: 1685233463632 +- kind: conda + name: deprecated + version: 1.2.14 + build: pyh1a96a4e_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 + md5: 4e4c4236e1ca9bcd8816b921a4805882 + depends: + - python >=2.7 + - wrapt <2,>=1.10 + license: MIT + license_family: MIT + purls: + - pkg:pypi/deprecated?source=conda-forge-mapping + size: 14033 + timestamp: 1685233463632 +- kind: conda + name: distlib + version: 0.3.8 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda + sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e + md5: db16c66b759a64dc5183d69cc3745a52 + depends: + - python 2.7|>=3.6 + license: Apache-2.0 + license_family: APACHE + size: 274915 + timestamp: 1702383349284 +- kind: conda + name: distro + version: 1.9.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + sha256: ae1c13d709c8001331b5b9345e4bcd77e9ae712d25f7958b2ebcbe0b068731b7 + md5: bbdb409974cd6cb30071b1d978302726 + depends: + - python >=3.6 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/distro + size: 42039 + timestamp: 1704321683916 +- kind: conda + name: distro + version: 1.9.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + sha256: ae1c13d709c8001331b5b9345e4bcd77e9ae712d25f7958b2ebcbe0b068731b7 + md5: bbdb409974cd6cb30071b1d978302726 + depends: + - python >=3.6 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/distro?source=conda-forge-mapping + size: 42039 + timestamp: 1704321683916 +- kind: conda + name: filelock + version: 3.13.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda + sha256: 2eef860d5ad6ef1fac5002a3b75661f765d448e9f997f64482b0e51a097e037f + md5: 6baa2e7fc09bd2c7c82cb6662d5f1d36 + depends: + - python >=3.7 + license: Unlicense + purls: + - pkg:pypi/filelock + size: 15707 + timestamp: 1712686250786 +- kind: conda + name: filelock + version: 3.15.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + sha256: f78d9c0be189a77cb0c67d02f33005f71b89037a85531996583fb79ff3fe1a0a + md5: 0e7e4388e9d5283e22b35a9443bdbcc9 + depends: + - python >=3.7 + license: Unlicense + purls: + - pkg:pypi/filelock?source=conda-forge-mapping + size: 17592 + timestamp: 1719088395353 +- kind: conda + name: filelock + version: 3.15.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + sha256: f78d9c0be189a77cb0c67d02f33005f71b89037a85531996583fb79ff3fe1a0a + md5: 0e7e4388e9d5283e22b35a9443bdbcc9 + depends: + - python >=3.7 + license: Unlicense + size: 17592 + timestamp: 1719088395353 +- kind: conda + name: fmt + version: 10.2.1 + build: h00ab1b0_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 + md5: 35ef8bc24bd34074ebae3c943d551728 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 193853 + timestamp: 1704454679950 +- kind: conda + name: fmt + version: 10.2.1 + build: h181d51b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + sha256: 4593d75b6a1e0b5b43fdcba6b968537638a6e469521fb4c3073929f973891828 + md5: 4253b572559cc775cae49def5c97b3c0 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: [] + size: 185170 + timestamp: 1704455079451 +- kind: conda + name: fmt + version: 10.2.1 + build: h2ffa867_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda + sha256: 8570ae6fb7cd1179c646e2c48105e91b3ed8ba15855f12965cc5c9719753c06f + md5: 8cccde6755bdd787f9840f38a34b4e7d + depends: + - libcxx >=15 + license: MIT + license_family: MIT + purls: [] + size: 174209 + timestamp: 1704454873305 +- kind: conda + name: fmt + version: 10.2.1 + build: h7728843_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda + sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc + md5: ab205d53bda43d03f5c5b993ccb406b3 + depends: + - libcxx >=15 + license: MIT + license_family: MIT + purls: [] + size: 181468 + timestamp: 1704454938658 +- kind: conda + name: frozendict + version: 2.4.4 + build: py310h936d840_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py310h936d840_0.conda + sha256: 8a259a5703d36955207a88ec1ef97778d145990c65f30f040c639dea3b19a9fe + md5: d3a1d7ec01bf7592d249b1b983694dc5 + depends: + - __osx >=10.13 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 45634 + timestamp: 1715092891757 +- kind: conda + name: frozendict + version: 2.4.4 + build: py310ha6dd24b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py310ha6dd24b_0.conda + sha256: c304ba71a2d62f58fde278fd06910d5e2668bed12511be3289dc9513c6e3e8da + md5: e01a63ed35c80334732d31bfe48e700f + depends: + - __osx >=11.0 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 45603 + timestamp: 1715093046851 +- kind: conda + name: frozendict + version: 2.4.4 + build: py310ha8f682b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py310ha8f682b_0.conda + sha256: c901b9787bd4822b70b28fa442eb3930f6216d81dd47f0c038fff30d32039390 + md5: a3e18958b4685ff6231d7f5794320d71 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 46986 + timestamp: 1715093478274 +- kind: conda + name: frozendict + version: 2.4.4 + build: py310hc51659f_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py310hc51659f_0.conda + sha256: 0fafc58d81f655fde4b2d96078a830c3b24af73b399ead664ee3d56fb4798114 + md5: 97d0596d91e0862c8394c6e58cc09a0f + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 48978 + timestamp: 1715092900545 +- kind: conda + name: frozendict + version: 2.4.4 + build: py311h331c9d8_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py311h331c9d8_0.conda + sha256: 57d5db3e719df8730d0ebd067bd4845bb5a9ad8f3de4555bcc021cbe85e4ae11 + md5: 2b9d917cb8b98e813459fffbb3844929 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31240 + timestamp: 1715092927253 +- kind: conda + name: frozendict + version: 2.4.4 + build: py311h72ae277_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py311h72ae277_0.conda + sha256: 4b3b0ba050fa38721ea2298303850844bb1c53fc3f0571aea0d92fb8acfa7e23 + md5: 8471bd1863262d198d34a569bf1b2461 + depends: + - __osx >=10.13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31382 + timestamp: 1715092964761 +- kind: conda + name: frozendict + version: 2.4.4 + build: py311hd3f4193_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py311hd3f4193_0.conda + sha256: 2ebed38bac325e8679d8ebf2232b5690b8bc8fd08ed944ac2ddf2031965795b9 + md5: a37bf1b0c1966301da2d3a45f52d77d7 + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31809 + timestamp: 1715093074145 +- kind: conda + name: frozendict + version: 2.4.4 + build: py311he736701_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py311he736701_0.conda + sha256: f007ad8b1fdfd66a678a279d38d3c76fcf562d90f829219636b5ef08ee23849a + md5: 7af090045ead110a2a57beef6908572e + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31298 + timestamp: 1715093144571 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py312h4389bb4_0.conda + sha256: 7c8ab0334f8ae1b7e612cdf5de8831cd6fbbdaeb8d0bff3e5c63a959ee6af33f + md5: 12c19e260a2deb952c3321371623abd3 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 30622 + timestamp: 1715093097869 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py312h7e5086c_0.conda + sha256: 59a24e2c4af865022dbc80ae5508a5ff2d62c9859923eec8d7d5fa4f73a1dd69 + md5: f37df12758d31904693c9087e4841ac9 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 30702 + timestamp: 1715092944764 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312h9a8786e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py312h9a8786e_0.conda + sha256: dff551db65137898c1434c4949532a91b997de6a1e77f255216da2c404b04f2f + md5: ff14ec1103a0817d45e7cf012742ce60 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 30644 + timestamp: 1715092863166 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py312hbd25219_0.conda + sha256: 735d87670e8f2344d08fa9da819f7be6793fcd4b31b0e868fd4cf0a907d2a5e4 + md5: bd7e1462b89760bb59c5d7e636f6d9d2 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31061 + timestamp: 1715092971006 +- kind: conda + name: h2 + version: 4.1.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a + md5: b748fbf7060927a6e82df7cb5ee8f097 + depends: + - hpack >=4.0,<5 + - hyperframe >=6.0,<7 + - python >=3.6.1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/h2?source=conda-forge-mapping + size: 46754 + timestamp: 1634280590080 +- kind: conda + name: hpack + version: 4.0.0 + build: pyh9f0ad1d_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8 + md5: 914d6646c4dbb1fd3ff539830a12fd71 + depends: + - python + license: MIT + license_family: MIT + purls: + - pkg:pypi/hpack?source=conda-forge-mapping + size: 25341 + timestamp: 1598856368685 +- kind: conda + name: hyperframe + version: 6.0.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330 + md5: 9f765cbfab6870c8435b9eefecd7a1f4 + depends: + - python >=3.6 + license: MIT + license_family: MIT + purls: + - pkg:pypi/hyperframe?source=conda-forge-mapping + size: 14646 + timestamp: 1619110249723 +- kind: conda + name: icu + version: '73.2' + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 + md5: cc47e1facc155f91abd89b11e48e72ff + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 12089150 + timestamp: 1692900650789 +- kind: conda + name: icu + version: '73.2' + build: hc8870d7_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1 + md5: 8521bd47c0e11c5902535bb1a17c565f + license: MIT + license_family: MIT + purls: [] + size: 11997841 + timestamp: 1692902104771 +- kind: conda + name: icu + version: '73.2' + build: hf5e326d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 + md5: 5cc301d759ec03f28328428e28f65591 + license: MIT + license_family: MIT + purls: [] + size: 11787527 + timestamp: 1692901622519 +- kind: conda + name: icu + version: '75.1' + build: h120a0e1_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: [] + size: 11761697 + timestamp: 1720853679409 +- kind: conda + name: icu + version: '75.1' + build: he02047a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + md5: 8b189310083baabfb622af68fd9d3ae3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 12129203 + timestamp: 1720853576813 +- kind: conda + name: icu + version: '75.1' + build: hfee45f7_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620 + md5: 5eb22c1d7b3fc4abb50d92d621583137 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: [] + size: 11857802 + timestamp: 1720853997952 +- kind: conda + name: identify + version: 2.6.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.0-pyhd8ed1ab_0.conda + sha256: 4a2889027df94d51be283536ac235feba77eaa42a0d051f65cd07ba824b324a6 + md5: f80cc5989f445f23b1622d6c455896d9 + depends: + - python >=3.6 + - ukkonen + license: MIT + license_family: MIT + size: 78197 + timestamp: 1720413864262 +- kind: conda + name: idna + version: '3.7' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b + md5: c0cc1420498b17414d8617d0b9f506ca + depends: + - python >=3.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/idna + size: 52718 + timestamp: 1713279497047 +- kind: conda + name: idna + version: '3.7' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b + md5: c0cc1420498b17414d8617d0b9f506ca + depends: + - python >=3.6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/idna?source=conda-forge-mapping + size: 52718 + timestamp: 1713279497047 +- kind: conda + name: importlib-metadata + version: 7.1.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda + sha256: cc2e7d1f7f01cede30feafc1118b7aefa244d0a12224513734e24165ae12ba49 + md5: 0896606848b2dc5cebdf111b6543aa04 + depends: + - python >=3.8 + - zipp >=0.5 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/importlib-metadata + size: 27043 + timestamp: 1710971498183 +- kind: conda + name: importlib-metadata + version: 8.0.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + sha256: e40d7e71c37ec95df9a19d39f5bb7a567c325be3ccde06290a71400aab719cac + md5: 3286556cdd99048d198f72c3f6f69103 + depends: + - python >=3.8 + - zipp >=0.5 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/importlib-metadata?source=conda-forge-mapping + size: 27367 + timestamp: 1719361971438 +- kind: conda + name: importlib_resources + version: 6.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + sha256: c6ae80c0beaeabb342c5b041f19669992ae6e937dbec56ced766cb035900f9de + md5: c5d3907ad8bd7bf557521a1833cf7e6d + depends: + - python >=3.8 + - zipp >=3.1.0 + constrains: + - importlib-resources >=6.4.0,<6.4.1.0a0 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/importlib-resources + size: 33056 + timestamp: 1711041009039 +- kind: conda + name: importlib_resources + version: 6.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + sha256: c6ae80c0beaeabb342c5b041f19669992ae6e937dbec56ced766cb035900f9de + md5: c5d3907ad8bd7bf557521a1833cf7e6d + depends: + - python >=3.8 + - zipp >=3.1.0 + constrains: + - importlib-resources >=6.4.0,<6.4.1.0a0 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/importlib-resources?source=conda-forge-mapping + size: 33056 + timestamp: 1711041009039 +- kind: conda + name: jinja2 + version: 3.1.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda + sha256: fd517b7dd3a61eca34f8a6f9f92f306397149cae1204fce72ac3d227107dafdc + md5: e7d8df6509ba635247ff9aea31134262 + depends: + - markupsafe >=2.0 + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jinja2 + size: 111589 + timestamp: 1704967140287 +- kind: conda + name: jinja2 + version: 3.1.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + sha256: 27380d870d42d00350d2d52598cddaf02f9505fb24be09488da0c9b8d1428f2d + md5: 7b86ecb7d3557821c649b3c31e3eb9f2 + depends: + - markupsafe >=2.0 + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jinja2?source=conda-forge-mapping + size: 111565 + timestamp: 1715127275924 +- kind: conda + name: jsonpatch + version: '1.33' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + sha256: fbb17e33ace3225c6416d1604637c1058906b8223da968cc015128985336b2b4 + md5: bfdb7c5c6ad1077c82a69a8642c87aff + depends: + - jsonpointer >=1.9 + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpatch + size: 17366 + timestamp: 1695536420928 +- kind: conda + name: jsonpatch + version: '1.33' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + sha256: fbb17e33ace3225c6416d1604637c1058906b8223da968cc015128985336b2b4 + md5: bfdb7c5c6ad1077c82a69a8642c87aff + depends: + - jsonpointer >=1.9 + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpatch?source=conda-forge-mapping + size: 17366 + timestamp: 1695536420928 +- kind: conda + name: jsonpointer + version: '2.4' + build: py312h2e8e312_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py312h2e8e312_3.conda + sha256: 98d86d5ccb3a95da2cd96b394c157aa6fef0d4908b8878c3e2b5931f6bc5fd57 + md5: 9d9572e257bf4559f20629efb0d3511d + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer + size: 34602 + timestamp: 1695397923441 +- kind: conda + name: jsonpointer + version: '2.4' + build: py312h7900ff3_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py312h7900ff3_3.conda + sha256: c211a79cff8aa001a6e14e923c37278231dca7f0970d8db155c4b9e48ac87a5a + md5: 50f62bdb9b60b13c2f6ae69957342e4d + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer + size: 18033 + timestamp: 1695397448370 +- kind: conda + name: jsonpointer + version: '2.4' + build: py312h81bd7bf_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-2.4-py312h81bd7bf_3.conda + sha256: 6cb2d17da9083e05f5ead7902a5cd6ec9567cd3da972c65c03f090515c9fa176 + md5: 327361b24f5348cab04ad9b1f74e831d + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer + size: 18542 + timestamp: 1695397720755 +- kind: conda + name: jsonpointer + version: '2.4' + build: py312hb401068_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py312hb401068_3.conda + sha256: 883f6d635e58f49359f393e853e4e0043731fb0ce671283a2024db02a1ebc8f6 + md5: 637aa8f6c1c61f659f1496e9b2dc7552 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer + size: 18184 + timestamp: 1695397820416 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py310h2ec42d9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py310h2ec42d9_0.conda + sha256: 835ba6f0b9976b27665d6a0fc013b6fa42079a8f0a3f443610b7650e466e341f + md5: 2a4ef90cc5549f357d38da807afdffde + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 15974 + timestamp: 1718283514925 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py310h5588dad_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_0.conda + sha256: 866be2bf84c980cbbae6e8ba2970dea7f1a5674a933e31c16f33664710d50750 + md5: de28f44545519f90e3068715ad340c97 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 41130 + timestamp: 1718284101163 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py310hbe9552e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py310hbe9552e_0.conda + sha256: 772fa59b288e07bb51ed5898314556e13ec6998f1c8e6c6c0ed43494f524d99e + md5: cae92c46f271f445d2e7a7fb493d1ae6 + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 16538 + timestamp: 1718283560220 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py310hff52083_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_0.conda + sha256: 8fd3802eb6b95c52c32a955e196d92a2f28ccf0177c4aa3781ebdfcd7b8c93e7 + md5: e546c847260e094f41d0d2f8d17fcbdd + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 15893 + timestamp: 1718283507593 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_0.conda + sha256: 50cda289c46d043cbfd0f4fd0b6ec6793e6bfc6b4e307baa40486a391d501215 + md5: fb9c38edbc17bbaa549a8fdc933ada68 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 42767 + timestamp: 1718283925914 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py311h267d04e_0.conda + sha256: 05ead39da575f7e25ad1e07755cf24e4b389bb2de945a14049b93e51034b47f9 + md5: d962e72d8c1d0efb22f0e54e8e97cd71 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 18410 + timestamp: 1718283680472 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_0.conda + sha256: 30a3947da86b74e09b1013d232f40b4b960c192b7dce35407e89b10e3e28cdc7 + md5: 01a505ab9b4e3af12baa98b82f5fcafa + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 17919 + timestamp: 1718283458583 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py311h6eed73b_0.conda + sha256: b98237f5071161a30b711062b1c9306a2f7abea0b97fabfeff662919f40d1f00 + md5: e6239ae1b58ab3e7f6863ee46dba46b5 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 18107 + timestamp: 1718283517513 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_0.conda + sha256: 74d440e8250ff2ca05013b959de954bc85d84ff14a3b60c9e3dc7e071cddfa42 + md5: 6509bc42d9d26be656db3332da504913 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 42461 + timestamp: 1718283943216 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_0.conda + sha256: b5d17c5db3c7306d3625745a27359f806a6dd94707d76d74cba541fc1daa2ae3 + md5: 320338762418ae59539ae368d4386085 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 17497 + timestamp: 1718283512438 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py312h81bd7bf_0.conda + sha256: a7326ba42944287a44a5959dc67b40e002798aa9eed97ef4ec9ad39bbd84c9a3 + md5: bc1baf9c7772acbd2cb4f8d9190286f5 + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 18080 + timestamp: 1718283673740 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py312hb401068_0.conda + sha256: c28d5ee8ddc58858c711f0a4874916ed7d1306fa8b12bb95e3e8bb7183f2e287 + md5: 7d360dce2fa56d1701773d26ecccb038 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 17704 + timestamp: 1718283533709 +- kind: conda + name: jsonschema + version: 4.21.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.21.1-pyhd8ed1ab_0.conda + sha256: c5c1b4e08e91fdd697289015be1a176409b4e63942899a43b276f1f250be8129 + md5: 8a3a3d01629da20befa340919e3dd2c4 + depends: + - attrs >=22.2.0 + - importlib_resources >=1.4.0 + - jsonschema-specifications >=2023.03.6 + - pkgutil-resolve-name >=1.3.10 + - python >=3.8 + - referencing >=0.28.4 + - rpds-py >=0.7.1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/jsonschema + size: 72817 + timestamp: 1705707712082 +- kind: conda + name: jsonschema + version: 4.23.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + sha256: 7d0c4c0346b26be9f220682b7c5c0d84606d48c6dbc36fc238e4452dda733aff + md5: da304c192ad59975202859b367d0f6a2 + depends: + - attrs >=22.2.0 + - importlib_resources >=1.4.0 + - jsonschema-specifications >=2023.03.6 + - pkgutil-resolve-name >=1.3.10 + - python >=3.8 + - referencing >=0.28.4 + - rpds-py >=0.7.1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/jsonschema?source=conda-forge-mapping + size: 74323 + timestamp: 1720529611305 +- kind: conda + name: jsonschema-specifications + version: 2023.12.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + sha256: a9630556ddc3121c0be32f4cbf792dd9102bd380d5cd81d57759d172cf0c2da2 + md5: a0e4efb5f35786a05af4809a2fb1f855 + depends: + - importlib_resources >=1.4.0 + - python >=3.8 + - referencing >=0.31.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/jsonschema-specifications + size: 16431 + timestamp: 1703778502971 +- kind: conda + name: jsonschema-specifications + version: 2023.12.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + sha256: a9630556ddc3121c0be32f4cbf792dd9102bd380d5cd81d57759d172cf0c2da2 + md5: a0e4efb5f35786a05af4809a2fb1f855 + depends: + - importlib_resources >=1.4.0 + - python >=3.8 + - referencing >=0.31.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/jsonschema-specifications?source=conda-forge-mapping + size: 16431 + timestamp: 1703778502971 +- kind: conda + name: keyutils + version: 1.6.1 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + md5: 30186d27e2c9fa62b45fb1476b7200e3 + depends: + - libgcc-ng >=10.3.0 + license: LGPL-2.1-or-later + purls: [] + size: 117831 + timestamp: 1646151697040 +- kind: conda + name: krb5 + version: 1.21.2 + build: h659d440_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: cd95826dbd331ed1be26bdf401432844 + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + purls: [] + size: 1371181 + timestamp: 1692097755782 +- kind: conda + name: krb5 + version: 1.21.2 + build: h92f50d5_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda + sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875 + md5: 92f1cff174a538e0722bf2efb16fc0b2 + depends: + - libcxx >=15.0.7 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + purls: [] + size: 1195575 + timestamp: 1692098070699 +- kind: conda + name: krb5 + version: 1.21.2 + build: hb884880_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: 80505a68783f01dc8d7308c075261b2f + depends: + - libcxx >=15.0.7 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + purls: [] + size: 1183568 + timestamp: 1692098004387 +- kind: conda + name: krb5 + version: 1.21.2 + build: heb0366b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda + sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b + md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 + depends: + - openssl >=3.1.2,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: [] + size: 710894 + timestamp: 1692098129546 +- kind: conda + name: krb5 + version: 1.21.3 + build: h237132a_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b + md5: c6dc8a0fdec13a0565936655c33069a1 + depends: + - __osx >=11.0 + - libcxx >=16 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + purls: [] + size: 1155530 + timestamp: 1719463474401 +- kind: conda + name: krb5 + version: 1.21.3 + build: h37d8d59_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c + md5: d4765c524b1d91567886bde656fb514b + depends: + - __osx >=10.13 + - libcxx >=16 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + purls: [] + size: 1185323 + timestamp: 1719463492984 +- kind: conda + name: krb5 + version: 1.21.3 + build: h659f571_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + purls: [] + size: 1370023 + timestamp: 1719463201255 +- kind: conda + name: krb5 + version: 1.21.3 + build: hdf4eb48_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 + md5: 31aec030344e962fbd7dbbbbd68e60a9 + depends: + - openssl >=3.3.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: [] + size: 712034 + timestamp: 1719463874284 +- kind: conda + name: ld64 + version: '711' + build: h4c6efb1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda + sha256: 467371e8dbd4fc99f507024c3d10c0ac4a8528286e9507a1f365e26cb90f4df0 + md5: 289df626863e8c720c3aa220964378cc + depends: + - ld64_osx-arm64 711 h5e7191b_0 + - libllvm18 >=18.1.1,<18.2.0a0 + constrains: + - cctools 986.* + - cctools_osx-arm64 986.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 18678 + timestamp: 1710484665887 +- kind: conda + name: ld64 + version: '711' + build: h4e51db5_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda + sha256: 230be4e751f17fa1ccc15066086d1726d1d223e98f8337f435b4472bfe00436b + md5: cc84dae1a60ee59f6098f93b76d74b60 + depends: + - ld64_osx-64 711 had5d0d3_0 + - libllvm18 >=18.1.1,<18.2.0a0 + constrains: + - cctools_osx-64 986.* + - cctools 986.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 18568 + timestamp: 1710484499499 +- kind: conda + name: ld64_osx-64 + version: '711' + build: had5d0d3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda + sha256: 14d3fd593a7fd1cc472167dc00fd1d3176b8ce9dfc9b9d003359ecde4ded7459 + md5: cb63e1d1e11a1fffad54333330486ddd + depends: + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - sigtool + - tapi >=1100.0.11,<1101.0a0 + constrains: + - cctools_osx-64 986.* + - ld 711.* + - cctools 986.* + - clang >=18.1.1,<19.0a0 + license: APSL-2.0 + license_family: Other + purls: [] + size: 1071472 + timestamp: 1710484364960 +- kind: conda + name: ld64_osx-arm64 + version: '711' + build: h5e7191b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda + sha256: 82f964dcff2052b327762ca44651407451ad396a1540c664928841c72b7cf3c0 + md5: c751b76ae8112e3d516831063da179cc + depends: + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - sigtool + - tapi >=1100.0.11,<1101.0a0 + constrains: + - ld 711.* + - cctools 986.* + - cctools_osx-arm64 986.* + - clang >=18.1.1,<19.0a0 + license: APSL-2.0 + license_family: Other + purls: [] + size: 1064448 + timestamp: 1710484550965 +- kind: conda + name: ld_impl_linux-64 + version: '2.40' + build: h41732ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: 7aca3059a1729aa76c597603f10b0dd3 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + purls: [] + size: 704696 + timestamp: 1674833944779 +- kind: conda + name: ld_impl_linux-64 + version: '2.40' + build: hf3520f5_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + purls: [] + size: 707602 + timestamp: 1718625640445 +- kind: conda + name: ld_impl_linux-64 + version: '2.40' + build: hf3520f5_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + size: 707602 + timestamp: 1718625640445 +- kind: conda + name: libarchive + version: 3.7.2 + build: h2aa1ff5_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda + sha256: 340ed0bb02fe26a2b2e29cedf6559e2999b820f434e745c108e788d629ae4b17 + md5: 3bf887827d1968275978361a6e405e4f + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libxml2 >=2.12.2,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.2.0,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 866168 + timestamp: 1701994227275 +- kind: conda + name: libarchive + version: 3.7.2 + build: h313118b_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.2-h313118b_1.conda + sha256: 8dd608299e8bc56e0337c6653028e552fea8b952af10fbcc2f4008274add11a1 + md5: 4b84938cdb30e9cc2dc413208e917e11 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libxml2 >=2.12.2,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.2.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 964623 + timestamp: 1701994828221 +- kind: conda + name: libarchive + version: 3.7.2 + build: hcacb583_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.2-hcacb583_1.conda + sha256: 307dd9984deccab782a834022a708ba070950d3d0f3b370ce9331ad1db013576 + md5: 1c8c447ce71bf5f769674b621142a73a + depends: + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libxml2 >=2.12.2,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.2.0,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 783812 + timestamp: 1701994487530 +- kind: conda + name: libarchive + version: 3.7.2 + build: hd35d340_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda + sha256: f458515a49c56e117e05fe607493b7683a7bf06d2a625b59e378dbbf7f308895 + md5: 8c7b79b20a67287a87b39df8a8c8dcc4 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libxml2 >=2.12.2,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.2.0,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 745686 + timestamp: 1701994485309 +- kind: conda + name: libarchive + version: 3.7.4 + build: h20e244c_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda + sha256: 9e46db25e976630e6738b351d76d9b79047ae232638b82f9f45eba774caaef8a + md5: 82a85fa38e83366009b7f4b2cef4deb8 + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.3.0,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 742682 + timestamp: 1716394747351 +- kind: conda + name: libarchive + version: 3.7.4 + build: h83d404f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.4-h83d404f_0.conda + sha256: 5301d7dc52c2e1f87b229606033c475caf87cd94ef5a5efb3af565a62b88127e + md5: 8b604ee634caafd92f2ff2fab6a1f75a + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.3.0,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 775700 + timestamp: 1716394811506 +- kind: conda + name: libarchive + version: 3.7.4 + build: haf234dc_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda + sha256: 3ab13c269949874c4538b22eeb83a36d2c55b4a4ea6628bef1bab4c724ee5a1b + md5: 86de12ebf8d7fffeba4ca9dbf13e9733 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.3.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 957632 + timestamp: 1716395481752 +- kind: conda + name: libarchive + version: 3.7.4 + build: hfca40fe_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda + sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936 + md5: 32ddb97f897740641d8d46a829ce1704 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - lzo >=2.10,<3.0a0 + - openssl >=3.3.0,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 871853 + timestamp: 1716394516418 +- kind: conda + name: libcurl + version: 8.7.1 + build: h2d989ff_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.7.1-h2d989ff_0.conda + sha256: 973ac9368efca712a8fd19fe68524d7d9a3087fd88ad6b7fcdf60c3d2e19a498 + md5: 34b9171710f0d9bf093d55bdc36ff355 + depends: + - krb5 >=1.21.2,<1.22.0a0 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: curl + license_family: MIT + purls: [] + size: 358080 + timestamp: 1711548548174 +- kind: conda + name: libcurl + version: 8.7.1 + build: h726d00d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: fa58e5eaa12006bc3289a71357bef167 + depends: + - krb5 >=1.21.2,<1.22.0a0 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: curl + license_family: MIT + purls: [] + size: 378176 + timestamp: 1711548390530 +- kind: conda + name: libcurl + version: 8.7.1 + build: hca28451_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: 755c7f876815003337d2c61ff5d047e5 + depends: + - krb5 >=1.21.2,<1.22.0a0 + - libgcc-ng >=12 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: curl + license_family: MIT + purls: [] + size: 398293 + timestamp: 1711548114077 +- kind: conda + name: libcurl + version: 8.7.1 + build: hd5e4a3a_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.7.1-hd5e4a3a_0.conda + sha256: 8dd272362e2aeb1d4f49333ff57e07eb4da2bbabce20110a2416df9152ba03e0 + md5: 3396aff340d0903e8814c2852d631e4e + depends: + - krb5 >=1.21.2,<1.22.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: curl + license_family: MIT + purls: [] + size: 331262 + timestamp: 1711548608132 +- kind: conda + name: libcurl + version: 8.8.0 + build: h7b6f9a7_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_1.conda + sha256: 9da82a9bd72e9872941da32be54543076c92dbeb2aba688a1c24adbc1c699e64 + md5: e9580b0bb247a2ccf937b16161478f19 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<2.0a0 + - openssl >=3.3.1,<4.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: curl + license_family: MIT + purls: [] + size: 370070 + timestamp: 1719603062088 +- kind: conda + name: libcurl + version: 8.8.0 + build: hca28451_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libgcc-ng >=12 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<2.0a0 + - openssl >=3.3.1,<4.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: curl + license_family: MIT + purls: [] + size: 410158 + timestamp: 1719602718702 +- kind: conda + name: libcurl + version: 8.8.0 + build: hd5e4a3a_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_1.conda + sha256: ebe665ec226672e7e6e37f2b1fe554db83f9fea5267cbc5a849ab34d8546b2c3 + md5: 88fbd2ea44690c6dfad8737659936461 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: curl + license_family: MIT + purls: [] + size: 334189 + timestamp: 1719603160758 - kind: conda - name: bzip2 - version: 1.0.8 - build: h4bc722e_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda - sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d - md5: 62ee74e96c5ebb0af99386de58cf9553 + name: libcurl + version: 8.8.0 + build: hf9fcc65_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 + md5: 11711bab5306a6534797a68b3c4c2bed depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - size: 252783 - timestamp: 1720974456583 + - krb5 >=1.21.3,<1.22.0a0 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<2.0a0 + - openssl >=3.3.1,<4.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: curl + license_family: MIT + purls: [] + size: 390707 + timestamp: 1719602983754 - kind: conda - name: bzip2 - version: 1.0.8 - build: h93a5062_5 - build_number: 5 + name: libcxx + version: 16.0.6 + build: h4653b0c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f - md5: 1bbc659ca658bfd49a481b5ef7a0f40f - license: bzip2-1.0.6 - license_family: BSD + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda + sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 + md5: 9d7d724faf0413bf1dbc5a85935700c8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache purls: [] - size: 122325 - timestamp: 1699280294368 + size: 1160232 + timestamp: 1686896993785 - kind: conda - name: bzip2 - version: 1.0.8 - build: h99b78c6_7 - build_number: 7 + name: libcxx + version: 16.0.6 + build: hd57cbcb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 7d6972792161077908b62971802f289a + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 1142172 + timestamp: 1686896907750 +- kind: conda + name: libcxx + version: 18.1.8 + build: h167917d_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda - sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 - md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda + sha256: a598062f2d1522fc3727c16620fbc2bc913c1069342671428a92fcf4eb02ec12 + md5: c891c2eeabd7d67fbc38e012cc6045d6 depends: - __osx >=11.0 - license: bzip2-1.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 1219441 + timestamp: 1720589623297 +- kind: conda + name: libcxx + version: 18.1.8 + build: h167917d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda + sha256: a598062f2d1522fc3727c16620fbc2bc913c1069342671428a92fcf4eb02ec12 + md5: c891c2eeabd7d67fbc38e012cc6045d6 + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1219441 + timestamp: 1720589623297 +- kind: conda + name: libcxx + version: 18.1.8 + build: hef8daea_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 + md5: 4101cde4241c92aeac310d65e6791579 + depends: + - __osx >=10.13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 1396919 + timestamp: 1720589431855 +- kind: conda + name: libcxx + version: 18.1.8 + build: hef8daea_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 + md5: 4101cde4241c92aeac310d65e6791579 + depends: + - __osx >=10.13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1396919 + timestamp: 1720589431855 +- kind: conda + name: libedit + version: 3.1.20191231 + build: h0678c8f_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + md5: 6016a8a1d0e63cac3de2c352cd40208b + depends: + - ncurses >=6.2,<7.0.0a0 + license: BSD-2-Clause license_family: BSD - size: 122909 - timestamp: 1720974522888 + purls: [] + size: 105382 + timestamp: 1597616576726 - kind: conda - name: bzip2 - version: 1.0.8 - build: hcfcfb64_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 - md5: 26eb8ca6ea332b675e11704cce84a3be + name: libedit + version: 3.1.20191231 + build: hc8eb9b7_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + md5: 30e4362988a2623e9eb34337b83e01f9 depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 + - ncurses >=6.2,<7.0.0a0 + license: BSD-2-Clause license_family: BSD purls: [] - size: 124580 - timestamp: 1699280668742 + size: 96607 + timestamp: 1597616630749 - kind: conda - name: bzip2 - version: 1.0.8 - build: hd590300_5 - build_number: 5 + name: libedit + version: 3.1.20191231 + build: he28a2e2_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 - md5: 69b8b6202a07720f448be700e300ccf4 + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 depends: - - libgcc-ng >=12 - license: bzip2-1.0.6 + - libgcc-ng >=7.5.0 + - ncurses >=6.2,<7.0.0a0 + license: BSD-2-Clause license_family: BSD purls: [] - size: 254228 - timestamp: 1699279927352 + size: 123878 + timestamp: 1597616541093 - kind: conda - name: bzip2 - version: 1.0.8 - build: hfdf4475_7 - build_number: 7 + name: libev + version: '4.33' + build: h10d778d_2 + build_number: 2 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 - md5: 7ed4301d437b59045be7e051a0308211 - depends: - - __osx >=10.13 - license: bzip2-1.0.6 + url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 + md5: 899db79329439820b7e8f8de41bca902 + license: BSD-2-Clause license_family: BSD - size: 134188 - timestamp: 1720974491916 + purls: [] + size: 106663 + timestamp: 1702146352558 - kind: conda - name: c-ares - version: 1.28.1 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a - md5: d5eb7992227254c0e9a0ce71151f0079 - license: MIT - license_family: MIT + name: libev + version: '4.33' + build: h93a5062_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f + md5: 36d33e440c31857372a72137f78bacf5 + license: BSD-2-Clause + license_family: BSD purls: [] - size: 152607 - timestamp: 1711819681694 + size: 107458 + timestamp: 1702146414478 +- kind: conda + name: libev + version: '4.33' + build: hd590300_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 172bf1cd1ff8629f2b1179945ed45055 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 112766 + timestamp: 1702146165126 - kind: conda - name: c-ares - version: 1.28.1 - build: h93a5062_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.28.1-h93a5062_0.conda - sha256: 2fc553d7a75e912efbdd6b82cd7916cc9cb2773e6cd873b77e02d631dd7be698 - md5: 04f776a6139f7eafc2f38668570eb7db + name: libexpat + version: 2.6.2 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda + sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19 + md5: e7ba12deb7020dd080c6c70e7b6f6a3d + depends: + - libgcc-ng >=12 + constrains: + - expat 2.6.2.* license: MIT license_family: MIT - purls: [] - size: 150488 - timestamp: 1711819630164 + size: 73730 + timestamp: 1710362120304 - kind: conda - name: c-ares - version: 1.28.1 - build: hd590300_0 + name: libexpat + version: 2.6.2 + build: h59595ed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a - md5: dcde58ff9a1f30b0037a2315d1846d1f + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda + sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19 + md5: e7ba12deb7020dd080c6c70e7b6f6a3d depends: - libgcc-ng >=12 + constrains: + - expat 2.6.2.* license: MIT license_family: MIT purls: [] - size: 168875 - timestamp: 1711819445938 + size: 73730 + timestamp: 1710362120304 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: h56e8100_0 + name: libexpat + version: 2.6.2 + build: h63175ca_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 - md5: 63da060240ab8087b60d1357051ea7d6 - license: ISC - purls: [] - size: 155886 - timestamp: 1706843918052 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: h8857fd0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - license: ISC - purls: [] - size: 155665 - timestamp: 1706843838227 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb - md5: 2f4327a1cbe7f022401b236e915a5fef - license: ISC - purls: [] - size: 155432 - timestamp: 1706843687645 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda - sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 - md5: fb416a1795f18dcc5a038bc2dc54edf9 - license: ISC - purls: [] - size: 155725 - timestamp: 1706844034242 + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 + md5: bc592d03f62779511d392c175dcece64 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 139224 + timestamp: 1710362609641 - kind: conda - name: ca-certificates - version: 2024.7.4 - build: h56e8100_0 + name: libexpat + version: 2.6.2 + build: h63175ca_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda - sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e - md5: 9caa97c9504072cd060cf0a3142cc0ed - license: ISC - size: 154943 - timestamp: 1720077592592 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: h8857fd0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda - sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 - md5: 7df874a4b05b2d2b82826190170eaa0f - license: ISC - size: 154473 - timestamp: 1720077510541 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda - sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 - md5: 23ab7665c5f63cfb9f1f6195256daac6 - license: ISC - size: 154853 - timestamp: 1720077432978 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda - sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b - md5: 21f9a33e5fe996189e470c19c5354dbe - license: ISC - size: 154517 - timestamp: 1720077468981 -- kind: conda - name: cctools - version: '986' - build: h4c9edd9_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda - sha256: bfbfc99da17828d007286f40af86b44315769cfbcc4beba62a8ae64264bd1193 - md5: abcfabe468c14e506fceab2e85380b3b - depends: - - cctools_osx-arm64 986 hd11630f_0 - - ld64 711 h4c6efb1_0 - - libllvm18 >=18.1.1,<18.2.0a0 - license: APSL-2.0 - license_family: Other + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 + md5: bc592d03f62779511d392c175dcece64 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT purls: [] - size: 21460 - timestamp: 1710484691219 + size: 139224 + timestamp: 1710362609641 - kind: conda - name: cctools - version: '986' - build: hd3558d4_0 + name: libexpat + version: 2.6.2 + build: h73e2aa4_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda - sha256: 0879b6169986404d3e79e16676fe3de0cd962b522b7e8ef0fdad345400a28571 - md5: 64cd107846d3407b8d75899078ffb2ab - depends: - - cctools_osx-64 986 h58a35ae_0 - - ld64 711 h4e51db5_0 - - libllvm18 >=18.1.1,<18.2.0a0 - license: APSL-2.0 - license_family: Other - purls: [] - size: 21451 - timestamp: 1710484533466 + url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda + sha256: a188a77b275d61159a32ab547f7d17892226e7dac4518d2c6ac3ac8fc8dfde92 + md5: 3d1d51c8f716d97c864d12f7af329526 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 69246 + timestamp: 1710362566073 - kind: conda - name: cctools_osx-64 - version: '986' - build: h58a35ae_0 + name: libexpat + version: 2.6.2 + build: h73e2aa4_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda - sha256: a11f85e26b7189af87aa7e42b29a80f6bae73a92710cd5a40e278d6376a66ef5 - md5: 1139258589f2d752a578ed5b2680eb60 - depends: - - ld64_osx-64 >=711,<712.0a0 - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - sigtool + url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda + sha256: a188a77b275d61159a32ab547f7d17892226e7dac4518d2c6ac3ac8fc8dfde92 + md5: 3d1d51c8f716d97c864d12f7af329526 constrains: - - ld64 711.* - - cctools 986.* - - clang 18.1.* - license: APSL-2.0 - license_family: Other + - expat 2.6.2.* + license: MIT + license_family: MIT purls: [] - size: 1104790 - timestamp: 1710484461097 + size: 69246 + timestamp: 1710362566073 - kind: conda - name: cctools_osx-arm64 - version: '986' - build: hd11630f_0 + name: libexpat + version: 2.6.2 + build: hebf3989_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda - sha256: 4152323bbb78e2730fea9004333c9c51fb82a9ddd935f005280bf621849ec53d - md5: cce200c91b2d291c85e66098fe0d31c2 - depends: - - ld64_osx-arm64 >=711,<712.0a0 - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - sigtool + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda + sha256: ba7173ac30064ea901a4c9fb5a51846dcc25512ceb565759be7d18cbf3e5415e + md5: e3cde7cfa87f82f7cb13d482d5e0ad09 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 63655 + timestamp: 1710362424980 +- kind: conda + name: libexpat + version: 2.6.2 + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda + sha256: ba7173ac30064ea901a4c9fb5a51846dcc25512ceb565759be7d18cbf3e5415e + md5: e3cde7cfa87f82f7cb13d482d5e0ad09 constrains: - - cctools 986.* - - clang 18.1.* - - ld64 711.* - license: APSL-2.0 - license_family: Other + - expat 2.6.2.* + license: MIT + license_family: MIT purls: [] - size: 1123368 - timestamp: 1710484635601 + size: 63655 + timestamp: 1710362424980 - kind: conda - name: certifi - version: 2024.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54 - md5: 0876280e409658fc6f9e75d035960333 - depends: - - python >=3.7 - license: ISC - purls: - - pkg:pypi/certifi - size: 160559 - timestamp: 1707022289175 + name: libffi + version: 3.4.2 + build: h0d85af4_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + md5: ccb34fb14960ad8b125962d3d79b31a9 + license: MIT + license_family: MIT + size: 51348 + timestamp: 1636488394370 - kind: conda - name: cffi - version: 1.16.0 - build: py312h38bf5a0_0 + name: libffi + version: 3.4.2 + build: h0d85af4_5 + build_number: 5 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda - sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e - md5: a45759c013ab20b9017ef9539d234dd7 - depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + md5: ccb34fb14960ad8b125962d3d79b31a9 license: MIT license_family: MIT - size: 282370 - timestamp: 1696002004433 + purls: [] + size: 51348 + timestamp: 1636488394370 - kind: conda - name: cffi - version: 1.16.0 - build: py312h8e38eb3_0 + name: libffi + version: 3.4.2 + build: h3422bc3_5 + build_number: 5 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda - sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 - md5: 960ecbd65860d3b1de5e30373e1bffb1 - depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + md5: 086914b672be056eb70fd4285b6783b6 license: MIT license_family: MIT - size: 284245 - timestamp: 1696002181644 + size: 39020 + timestamp: 1636488587153 - kind: conda - name: cffi - version: 1.16.0 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda - sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 - md5: 5a51096925d52332c62bfd8904899055 + name: libffi + version: 3.4.2 + build: h3422bc3_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + md5: 086914b672be056eb70fd4285b6783b6 + license: MIT + license_family: MIT + purls: [] + size: 39020 + timestamp: 1636488587153 +- kind: conda + name: libffi + version: 3.4.2 + build: h7f98852_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 depends: - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - libgcc-ng >=9.4.0 license: MIT license_family: MIT - size: 287805 - timestamp: 1696002408940 + size: 58292 + timestamp: 1636488182923 - kind: conda - name: cffi - version: 1.16.0 - build: py312hf06ca03_0 + name: libffi + version: 3.4.2 + build: h7f98852_5 + build_number: 5 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda - sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 - md5: 56b0ca764ce23cc54f3f7e2a7b970f6d + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 depends: - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - libgcc-ng >=9.4.0 license: MIT license_family: MIT - size: 294523 - timestamp: 1696001868949 + purls: [] + size: 58292 + timestamp: 1636488182923 - kind: conda - name: cfgv - version: 3.3.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 - sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - md5: ebb5f5f7dc4f1a3780ef7ea7738db08c + name: libffi + version: 3.4.2 + build: h8ffe710_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 + md5: 2c96d1b6915b408893f9472569dee135 depends: - - python >=3.6.1 + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 license: MIT license_family: MIT - size: 10788 - timestamp: 1629909423398 + size: 42063 + timestamp: 1636489106777 - kind: conda - name: chardet - version: 5.2.0 - build: py312h2e8e312_1 - build_number: 1 + name: libffi + version: 3.4.2 + build: h8ffe710_5 + build_number: 5 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda - sha256: 105e8f3c7a4510d8b8e3f164970c898e2b7ea02417b99369c7f58a0bb95af34d - md5: fcc4fea02fa461bc3ad2a5d6de0c43a8 + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 + md5: 2c96d1b6915b408893f9472569dee135 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: MIT + license_family: MIT + purls: [] + size: 42063 + timestamp: 1636489106777 +- kind: conda + name: libgcc-ng + version: 13.2.0 + build: h807b86a_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: d4ff227c46917d3b4565302a2bbb276b + depends: + - _libgcc_mutex 0.1 conda_forge + - _openmp_mutex >=4.5 + constrains: + - libgomp 13.2.0 h807b86a_5 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 770506 + timestamp: 1706819192021 +- kind: conda + name: libgcc-ng + version: 14.1.0 + build: h77fa898_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 + md5: ca0fad6a41ddaef54a153b78eccb5037 + depends: + - _libgcc_mutex 0.1 conda_forge + - _openmp_mutex >=4.5 + constrains: + - libgomp 14.1.0 h77fa898_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 842109 + timestamp: 1719538896937 +- kind: conda + name: libgcc-ng + version: 14.1.0 + build: h77fa898_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 + md5: ca0fad6a41ddaef54a153b78eccb5037 + depends: + - _libgcc_mutex 0.1 conda_forge + - _openmp_mutex >=4.5 + constrains: + - libgomp 14.1.0 h77fa898_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 842109 + timestamp: 1719538896937 +- kind: conda + name: libgomp + version: 13.2.0 + build: h807b86a_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda + sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e + md5: d211c42b9ce49aee3734fdc828731689 depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only + - _libgcc_mutex 0.1 conda_forge + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - purls: - - pkg:pypi/chardet - size: 277773 - timestamp: 1695468989681 + purls: [] + size: 419751 + timestamp: 1706819107383 - kind: conda - name: chardet - version: 5.2.0 - build: py312h7900ff3_1 - build_number: 1 + name: libgomp + version: 14.1.0 + build: h77fa898_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda - sha256: 584804790b465c8e28b3c3fcea8e774cb659fe479afd8adc0d39406e8c220194 - md5: af3980cc4690716a5510c8a08cb06238 + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 + md5: ae061a5ed5f05818acdf9adab72c146d depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only + - _libgcc_mutex 0.1 conda_forge + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - purls: - - pkg:pypi/chardet - size: 260197 - timestamp: 1695468803539 + purls: [] + size: 456925 + timestamp: 1719538796073 - kind: conda - name: chardet - version: 5.2.0 - build: py312h81bd7bf_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda - sha256: 2451501ec933017ff77c18436884baa90b289420c43ad4bdb4fe60d55e5dcdfd - md5: ea728c39b7453cb5f7177bc44ee22c73 + name: libgomp + version: 14.1.0 + build: h77fa898_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 + md5: ae061a5ed5f05818acdf9adab72c146d depends: - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only + - _libgcc_mutex 0.1 conda_forge + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - purls: - - pkg:pypi/chardet - size: 263585 - timestamp: 1695469015195 + size: 456925 + timestamp: 1719538796073 - kind: conda - name: chardet - version: 5.2.0 - build: py312hb401068_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda - sha256: ba2ebeb6d05a3cdd94dbd7a52dabc0686192e4337774c4f7c32da7ef0e04dd10 - md5: 488080e6ee9bc087762669d1f6d2dc8a - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + name: libiconv + version: '1.17' + build: h0d3ecfb_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda + sha256: bc7de5097b97bcafcf7deaaed505f7ce02f648aac8eccc0d5a47cc599a1d0304 + md5: 69bda57310071cf6d2b86caf11573d2d license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet - size: 259854 - timestamp: 1695468947554 + purls: [] + size: 676469 + timestamp: 1702682458114 - kind: conda - name: charset-normalizer - version: 3.3.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 - md5: 7f4a9e3fcff3f6356ae99244a014da6a + name: libiconv + version: '1.17' + build: hcfcfb64_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda + sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b + md5: e1eb10b1cca179f2baa3601e4efc8712 depends: - - python >=3.7 - license: MIT - license_family: MIT - purls: - - pkg:pypi/charset-normalizer - size: 46597 - timestamp: 1698833765762 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only + purls: [] + size: 636146 + timestamp: 1702682547199 - kind: conda - name: click - version: 8.1.7 - build: unix_pyh707e725_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec - md5: f3ad426304898027fc619827ff428eca + name: libiconv + version: '1.17' + build: hd590300_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda + sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9 + md5: d66573916ffcf376178462f1b61c941e depends: - - __unix - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/click - size: 84437 - timestamp: 1692311973840 + - libgcc-ng >=12 + license: LGPL-2.1-only + purls: [] + size: 705775 + timestamp: 1702682170569 - kind: conda - name: click - version: 8.1.7 - build: win_pyh7428d3b_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 - md5: 3549ecbceb6cd77b91a105511b7d0786 - depends: - - __win - - colorama - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/click - size: 85051 - timestamp: 1692312207348 + name: libiconv + version: '1.17' + build: hd75f5a5_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda + sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23 + md5: 6c3628d047e151efba7cf08c5e54d1ca + license: LGPL-2.1-only + purls: [] + size: 666538 + timestamp: 1702682713201 - kind: conda - name: colorama - version: 0.4.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - md5: 3faab06a954c2a04039983f2c4a50d99 + name: liblief + version: 0.14.1 + build: h3f3aa29_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda + sha256: 09ce81a54a7713058f5bf334dcd8e901435cce4eac9db05dcfe73454cab4f813 + md5: ff67fa3d5bb43a834a9bf658b8c0aa6c depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/colorama - size: 25170 - timestamp: 1666700778190 + - __osx >=11.0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 1547201 + timestamp: 1711564083758 - kind: conda - name: conda - version: 24.3.0 - build: py312h2e8e312_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-24.3.0-py312h2e8e312_0.conda - sha256: 9bc70a7291e559762d4049711510772d2e4fda03f142afdaeebedaaa28a0f47e - md5: c7e9ec64cd01c83a8b4418ab1699aeb8 - depends: - - 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 - - jsonpatch >=1.32 - - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - 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 - constrains: - - conda-content-trust >=0.1.1 - - conda-build >=24.3 - - conda-env >=2.6 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/conda - size: 1198612 - timestamp: 1711446530411 + name: liblief + version: 0.14.1 + build: ha0df490_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda + sha256: 861cc8e2ab8cf2a65ec1c571ec1dfda1d0cebfd9de9f9eeeb7d95cc3089bbda2 + md5: 0df35a8c33ac32d62561a1280f6496b3 + depends: + - __osx >=10.13 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 1644532 + timestamp: 1711564108311 - kind: conda - name: conda - version: 24.3.0 - build: py312h7900ff3_0 + name: liblief + version: 0.14.1 + build: hac33072_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.3.0-py312h7900ff3_0.conda - sha256: 64eee1c0f97bed16908ab6c4f3cd6c0bebb67fda5bba580888e513a1ef22f3f9 - md5: 3b7d3f731e02380fb68b654b037ae727 + url: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda + sha256: 9c43233e6a4dc4732150c5df7f22647f94eebfb0029f864ff08e406eacf4e941 + md5: 2f6a34571bb9e99ecf3486012739e73b depends: - - 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 - - jsonpatch >=1.32 - - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - 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 - constrains: - - conda-build >=24.3 - - conda-env >=2.6 - - conda-content-trust >=0.1.1 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/conda - size: 1195527 - timestamp: 1711445992988 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 1843928 + timestamp: 1711563126697 - kind: conda - name: conda - version: 24.3.0 - build: py312h81bd7bf_0 + name: liblief + version: 0.14.1 + build: he0c23c2_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda + sha256: aea92e9daa418e3140610246b41ef66738e3edb2a2eb1f1c1ade4ffc28b3406c + md5: 15a52dcd8d2ddada8f51dd576846bf3e + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc >=14.3,<15 + - vc14_runtime >=14.29.30139 + - vc14_runtime >=14.38.33130 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 1565646 + timestamp: 1711563685979 +- kind: conda + name: libllvm18 + version: 18.1.3 + build: h30cc82d_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.3.0-py312h81bd7bf_0.conda - sha256: d8fb7f84ea5d946c5acf50d9687a1d9f112116ef6a06c0bb645320fd4e7db6e7 - md5: 537dbde4ec642c05ea421a89ae16366a + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.3-h30cc82d_0.conda + sha256: 5a8781ab13b163fd028916d050bb209718b14de85493bb7a4b93ea798998b9fe + md5: fad73e8421bcd0de381d172c2224d3a5 depends: - - 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 - - jsonpatch >=1.32 - - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - 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 - constrains: - - conda-content-trust >=0.1.1 - - conda-build >=24.3 - - conda-env >=2.6 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/conda - size: 1197572 - timestamp: 1711446174975 + - libcxx >=16 + - libxml2 >=2.12.6,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 25782519 + timestamp: 1712517407600 - kind: conda - name: conda - version: 24.3.0 - build: py312hb401068_0 + name: libllvm18 + version: 18.1.3 + build: hbcf5fad_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.3.0-py312hb401068_0.conda - sha256: 0c9a15ec877a9374deef2fd020fe644869a98aa5fec75b852a99d20a0198c624 - md5: 549c60ea2ec52e45a48b12349d982115 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.3-hbcf5fad_0.conda + sha256: bc42a9999c8846f50f5b3bb9a2338caeab34f2d7de8202e3fad7f929f38e3287 + md5: f286e87d892273a1ef3059744c833f91 depends: - - 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 - - jsonpatch >=1.32 - - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - 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 - constrains: - - conda-content-trust >=0.1.1 - - conda-env >=2.6 - - conda-build >=24.3 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/conda - size: 1196619 - timestamp: 1711446125221 + - libcxx >=16 + - libxml2 >=2.12.6,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 27580830 + timestamp: 1712517566570 - kind: conda - name: conda-build - version: 24.3.0 - build: py312h2e8e312_1 + name: libllvm18 + version: 18.1.8 + build: h5090b49_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-h5090b49_1.conda + sha256: caff86eb5e4a079620d3f15bc2622d751a6184c2cdcc1eedf079938741ebb771 + md5: 3f2a99a5922ffe25eb414cdb83cc2998 + depends: + - __osx >=11.0 + - libcxx >=16 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 25767346 + timestamp: 1721178356724 +- kind: conda + name: libllvm18 + version: 18.1.8 + build: h9ce406d_1 build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-h9ce406d_1.conda + sha256: 1fa8909d81d0e60790c4901ad1058cc39cde6afcf310bccd990f670746f8ec54 + md5: 71a5cfb7e8d34b4b5458be564a8e9583 + depends: + - __osx >=10.13 + - libcxx >=16 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + purls: [] + size: 27564033 + timestamp: 1721178089461 +- kind: conda + name: libmamba + version: 1.5.8 + build: h3f09ed1_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.3.0-py312h2e8e312_1.conda - sha256: b80a891776eb2ae8e5e6dffdbbd3ad1ce8aefce14494ab887954d57c143db8d8 - md5: afb6d1913fc831174a95c5b45434f8d5 + url: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda + sha256: 89cb2314f7963e8406a709273e5c940594ff8649f756d64d4fc1b8867df13825 + md5: 2adef6fd3e61ac2f8b31f47159a65bd5 depends: - - beautifulsoup4 - - chardet - - conda >=23.5.0 - - conda-index >=0.4.0 - - conda-package-handling >=1.3 - - filelock - - jinja2 - - jsonschema >=4.19 - - m2-patch >=2.6 - - menuinst >=2 - - packaging - - pkginfo - - psutil - - py-lief - - python >=3.12,<3.13.0a0 - - python-libarchive-c - - python_abi 3.12.* *_cp312 - - pytz - - pyyaml - - requests - - ripgrep - - tqdm - constrains: - - conda-verify >=3.1.0 + - fmt >=10.2.1,<11.0a0 + - libarchive >=3.7.2,<3.8.0a0 + - libcurl >=8.6.0,<9.0a0 + - libsolv >=0.7.23 + - openssl >=3.2.1,<4.0a0 + - reproc >=14.2,<15.0a0 + - reproc-cpp >=14.2,<15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml-cpp >=0.8.0,<0.9.0a0 + - zstd >=1.5.5,<1.6.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/conda-build - size: 752036 - timestamp: 1711609193364 + purls: [] + size: 3586348 + timestamp: 1711395542569 - kind: conda - name: conda-build - version: 24.3.0 - build: py312h7900ff3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.3.0-py312h7900ff3_1.conda - sha256: fd1418aded3d3242d2f4e5f6ee11702658c69528443d66b4a00bbd093aeeff11 - md5: bfc15ed17aaea7bf1150dba5787c16d6 + name: libmamba + version: 1.5.8 + build: h90c426b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda + sha256: a6182bd735fe6a8bdd511096931a991b7d431cbfa2358f3aebb98132f063c89d + md5: e02e82b493ab683be580380193db1b64 depends: - - beautifulsoup4 - - chardet - - conda >=23.5.0 - - conda-index >=0.4.0 - - conda-package-handling >=1.3 - - filelock - - jinja2 - - jsonschema >=4.19 - - menuinst >=2 - - packaging - - patch >=2.6 - - patchelf - - pkginfo - - psutil - - py-lief - - python >=3.12,<3.13.0a0 - - python-libarchive-c - - python_abi 3.12.* *_cp312 - - pytz - - pyyaml - - requests - - ripgrep - - tqdm - constrains: - - conda-verify >=3.1.0 + - fmt >=10.2.1,<11.0a0 + - libarchive >=3.7.2,<3.8.0a0 + - libcurl >=8.6.0,<9.0a0 + - libcxx >=16 + - libsolv >=0.7.23 + - openssl >=3.2.1,<4.0a0 + - reproc >=14.2,<15.0a0 + - reproc-cpp >=14.2,<15.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - zstd >=1.5.5,<1.6.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/conda-build - size: 752571 - timestamp: 1711608769290 + purls: [] + size: 1201341 + timestamp: 1711395432570 - kind: conda - name: conda-build - version: 24.3.0 - build: py312h81bd7bf_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.3.0-py312h81bd7bf_1.conda - sha256: dc86c2edbd0f55b40ae81d5350b7ba11685675587d3a3ecae9472b682e5fdbfe - md5: 75828728b3438c9c3826c2f98fbb361f + name: libmamba + version: 1.5.8 + build: ha449628_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda + sha256: 48ef28e63407a42f0b0553b64aa0cdeadaa441bd588cd89a4988755baec07654 + md5: f4eafddd38618657afefb7540d4c1a20 depends: - - beautifulsoup4 - - cctools - - chardet - - conda >=23.5.0 - - conda-index >=0.4.0 - - conda-package-handling >=1.3 - - filelock - - jinja2 - - jsonschema >=4.19 - - menuinst >=2 - - packaging - - patch >=2.6 - - pkginfo - - psutil - - py-lief - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python-libarchive-c - - python_abi 3.12.* *_cp312 - - pytz - - pyyaml - - requests - - ripgrep - - tqdm - constrains: - - conda-verify >=3.1.0 + - fmt >=10.2.1,<11.0a0 + - libarchive >=3.7.2,<3.8.0a0 + - libcurl >=8.6.0,<9.0a0 + - libcxx >=16 + - libsolv >=0.7.23 + - openssl >=3.2.1,<4.0a0 + - reproc >=14.2,<15.0a0 + - reproc-cpp >=14.2,<15.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - zstd >=1.5.5,<1.6.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/conda-build - size: 751442 - timestamp: 1711608951046 + purls: [] + size: 1298413 + timestamp: 1711395384374 - kind: conda - name: conda-build - version: 24.3.0 - build: py312hb401068_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.3.0-py312hb401068_1.conda - sha256: c67916e4d0c1f4e45a7bdcf19d4195f82ece52a61797b478f0a1db8abf618c3b - md5: 32351ccbf6f35735a0c89980b2b29c13 + name: libmamba + version: 1.5.8 + build: had39da4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda + sha256: 79c275862cc084c9f0dc1a13bd42313d48202181d5d64615b3046bf2380ef57d + md5: def669885dc103d8acb7ac2ac35e0b2f depends: - - beautifulsoup4 - - cctools - - chardet - - conda >=23.5.0 - - conda-index >=0.4.0 - - conda-package-handling >=1.3 - - filelock - - jinja2 - - jsonschema >=4.19 - - menuinst >=2 - - packaging - - patch >=2.6 - - pkginfo - - psutil - - py-lief - - python >=3.12,<3.13.0a0 - - python-libarchive-c - - python_abi 3.12.* *_cp312 - - pytz - - pyyaml - - requests - - ripgrep - - tqdm - constrains: - - conda-verify >=3.1.0 + - fmt >=10.2.1,<11.0a0 + - libarchive >=3.7.2,<3.8.0a0 + - libcurl >=8.6.0,<9.0a0 + - libgcc-ng >=12 + - libsolv >=0.7.23 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - reproc >=14.2,<15.0a0 + - reproc-cpp >=14.2,<15.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - zstd >=1.5.5,<1.6.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/conda-build - size: 753262 - timestamp: 1711608860452 + purls: [] + size: 1671126 + timestamp: 1711394919576 - kind: conda - name: conda-index - version: 0.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.4.0-pyhd8ed1ab_0.conda - sha256: 4171355e42939f31cd154b84b5b98cb9fe5d9f784ead23e5b7abf05281b5bb60 - md5: 6b2a22b4716391d141136cb8d5d4bd16 + name: libmambapy + version: 1.5.8 + build: py310h04f2035_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py310h04f2035_0.conda + sha256: 6cf1f068c36d0e5dd176fcdd81fe67e43b3a2fa2f134f61135a1a7d99d3cf77d + md5: 21b1233eb01a3490b11bddaf8169e5dc depends: - - click >=8 - - conda >=4.12.0 - - conda-package-streaming - - filelock - - jinja2 - - more-itertools - - python >=3.7 - - pyyaml >=6 + - fmt >=10.2.1,<11.0a0 + - libmamba 1.5.8 h3f09ed1_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml-cpp >=0.8.0,<0.9.0a0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-index - size: 176354 - timestamp: 1708062210737 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 338295 + timestamp: 1711395880044 - kind: conda - name: conda-libmamba-solver - version: 24.1.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.1.0-pyhd8ed1ab_0.conda - sha256: 0667d49300062da2b46b04c097a9ace55c7a133d035517ec093e54a54f8f6b55 - md5: 304dc78ad6e52e0fd663df1d484c1531 + name: libmambapy + version: 1.5.8 + build: py310h39ff949_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py310h39ff949_0.conda + sha256: 8ef0061d45d8e0ac94fd61d38ebd46b15b54c4db1aef9a8b369e8ecc44329740 + md5: 37f8aa15b73c4691eeec15caf45aab25 depends: - - boltons >=23.0.0 - - conda >=23.7.4 - - libmambapy >=1.5.6,<2.0a0 - - python >=3.8 + - fmt >=10.2.1,<11.0a0 + - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - yaml-cpp >=0.8.0,<0.9.0a0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-libmamba-solver - size: 41157 - timestamp: 1706566194042 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 309472 + timestamp: 1711395425624 - kind: conda - name: conda-package-handling - version: 2.2.0 - build: pyh38be061_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda - sha256: 9a221808405d813d8c555efce6944379b907d36d79e77d526d573efa6b996d26 - md5: 8a3ae7f6318376aa08ea753367bb7dd6 + name: libmambapy + version: 1.5.8 + build: py310h5e0a2f6_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py310h5e0a2f6_0.conda + sha256: 6ea4d7b71c152f0b50d1ce6287237067119f26f10d29472dccddc623ebe463a7 + md5: fe39bd518b44380cf16dfd6b3e9a5d97 depends: - - conda-package-streaming >=0.9.0 - - python >=3.7 - - zstandard >=0.15 + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 h90c426b_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + - yaml-cpp >=0.8.0,<0.9.0a0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-package-handling - size: 255143 - timestamp: 1691048232276 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 253681 + timestamp: 1711395768984 - kind: conda - name: conda-package-streaming - version: 0.9.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda - sha256: 654a2488f77bf43555787d952dbffdc5d97956ff4aa9e0414a7131bb741dcf4c - md5: 38253361efb303deead3eab39ae9269b + name: libmambapy + version: 1.5.8 + build: py310hd168405_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py310hd168405_0.conda + sha256: f7f638d6a1d24ad64da2fc4ee18fc1ed376886269bceefac2fa5f3223681b77d + md5: d7d4c802823fdc9b95b9240ca9e62181 depends: - - python >=3.7 - - zstandard >=0.15 + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 ha449628_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - yaml-cpp >=0.8.0,<0.9.0a0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-package-streaming - size: 19183 - timestamp: 1691009348105 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 266351 + timestamp: 1711395831002 - kind: conda - name: cryptography - version: 42.0.5 - build: py312h1f4a190_0 + name: libmambapy + version: 1.5.8 + build: py311h0317a69_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.5-py312h1f4a190_0.conda - sha256: 6475b53ddb2b623a34d515977704488b19bf1ef8c5a1a9004c22a739351f8588 - md5: 14256d16d22cfbba12f0bb9e485e9077 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py311h0317a69_0.conda + sha256: f72648d46236285df8194e4ee074fa23f126f6dae133d803ee4403f86b30e1cf + md5: 415052ee52e2a470d3927fe76b67d4d1 depends: - - cffi >=1.12 + - fmt >=10.2.1,<11.0a0 + - libmamba 1.5.8 h3f09ed1_0 - openssl >=3.2.1,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/cryptography - size: 1143364 - timestamp: 1708781427908 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 519424 + timestamp: 1711396106855 - kind: conda - name: cryptography - version: 42.0.5 - build: py312h241aef2_0 + name: libmambapy + version: 1.5.8 + build: py311h26e1311_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py311h26e1311_0.conda + sha256: cec670d940c6094a8eb1594fa18f26bf260d0f3b0b9b1c9143200407e1e442b6 + md5: f593235abf65eed36843ed14582d5456 + depends: + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 h90c426b_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 255260 + timestamp: 1711396084740 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py311h6c5c7ae_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py311h6c5c7ae_0.conda + sha256: 7f634b9ceba8df88ff7103e364239c32ae3d2500cf46874000dec6a7373eaa97 + md5: 6c0132b3f3a629ef4935e40e76c09073 + depends: + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 ha449628_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 267842 + timestamp: 1711395552619 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py311hf2555c7_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.5-py312h241aef2_0.conda - sha256: 5dc135fc6ea57bf94cf32313f91c93f8a4af15133879dd86e6c8c16e4e07c55e - md5: 0d8c0e4e8c1b2796eaf6770a76a9d1e4 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py311hf2555c7_0.conda + sha256: 77225c8bdabc13d8567c315402442dc35f6d0b94220257d55d1487975c7ebaa3 + md5: 6ee8eb6fcdebba74be7663c654c161ca depends: - - cffi >=1.12 + - fmt >=10.2.1,<11.0a0 - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 - openssl >=3.2.1,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/cryptography - size: 1976047 - timestamp: 1708780611460 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 311255 + timestamp: 1711395017728 - kind: conda - name: cryptography - version: 42.0.5 - build: py312h3d16f4b_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.5-py312h3d16f4b_0.conda - sha256: dcf489514a1b93981da61de21c94a35a8f6f969759cdb5a9c222bfb10bc5063e - md5: 6132f6e13868c12209c823c8d193e16e + name: libmambapy + version: 1.5.8 + build: py312h344e357_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py312h344e357_0.conda + sha256: 7cb94cf454c20cf25cf0c394e812ca7f86ceae47bb45f5b11518dd204f752cf0 + md5: 9167478ca4942d118d3b79f6149c758f depends: - - __osx >=10.12 - - cffi >=1.12 + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 h90c426b_0 - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - constrains: - - __osx >=10.12 - license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/cryptography - size: 1281399 - timestamp: 1708853006483 + - pkg:pypi/libmambapy + size: 255134 + timestamp: 1711395612039 - kind: conda - name: cryptography - version: 42.0.5 - build: py312h99f8e83_0 + name: libmambapy + version: 1.5.8 + build: py312h344e357_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.5-py312h99f8e83_0.conda - sha256: 6e37a83b60a85cb58224213c710b476a2a06fe48f45c1fa76b1d7a2c3ddaff0a - md5: 32f29561e515d2aae57275d8b7af528d + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py312h344e357_0.conda + sha256: 7cb94cf454c20cf25cf0c394e812ca7f86ceae47bb45f5b11518dd204f752cf0 + md5: 9167478ca4942d118d3b79f6149c758f depends: - - cffi >=1.12 + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 h90c426b_0 - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - constrains: - - __osx >=11.0 - license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/cryptography - size: 1274922 - timestamp: 1708780961058 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 255134 + timestamp: 1711395612039 - kind: conda - name: deprecated - version: 1.2.14 - build: pyh1a96a4e_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 - md5: 4e4c4236e1ca9bcd8816b921a4805882 + name: libmambapy + version: 1.5.8 + build: py312h66cf91f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py312h66cf91f_0.conda + sha256: 6e27057b03d816b7992b7fa10df62b95ddfae596aade74802e9b2ec09792ca57 + md5: f29a796cc77bd964b396144103dc0c13 depends: - - python >=2.7 - - wrapt <2,>=1.10 - license: MIT - license_family: MIT + - fmt >=10.2.1,<11.0a0 + - libmamba 1.5.8 h3f09ed1_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/deprecated - size: 14033 - timestamp: 1685233463632 + - pkg:pypi/libmambapy + size: 634593 + timestamp: 1711396223183 - kind: conda - name: distlib - version: 0.3.8 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e - md5: db16c66b759a64dc5183d69cc3745a52 + name: libmambapy + version: 1.5.8 + build: py312h66cf91f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py312h66cf91f_0.conda + sha256: 6e27057b03d816b7992b7fa10df62b95ddfae596aade74802e9b2ec09792ca57 + md5: f29a796cc77bd964b396144103dc0c13 depends: - - python 2.7|>=3.6 - license: Apache-2.0 - license_family: APACHE - size: 274915 - timestamp: 1702383349284 + - fmt >=10.2.1,<11.0a0 + - libmamba 1.5.8 h3f09ed1_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 634593 + timestamp: 1711396223183 - kind: conda - name: distro - version: 1.9.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda - sha256: ae1c13d709c8001331b5b9345e4bcd77e9ae712d25f7958b2ebcbe0b068731b7 - md5: bbdb409974cd6cb30071b1d978302726 + name: libmambapy + version: 1.5.8 + build: py312h67f5953_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py312h67f5953_0.conda + sha256: cb3f1fe02ef2c6bb39129e43af7dfcf1a3d98a4d4c21e5eed5a1f3ef1c0557fb + md5: c7d0f9c38601b87f6ebb0ba00fb02e5c depends: - - python >=3.6 - license: Apache-2.0 - license_family: APACHE + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 ha449628_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/distro - size: 42039 - timestamp: 1704321683916 + - pkg:pypi/libmambapy + size: 272088 + timestamp: 1711395982732 - kind: conda - name: exceptiongroup - version: 1.2.0 - build: pyhd8ed1ab_2 - build_number: 2 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d - md5: 8d652ea2ee8eaee02ed8dc820bc794aa + name: libmambapy + version: 1.5.8 + build: py312h67f5953_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py312h67f5953_0.conda + sha256: cb3f1fe02ef2c6bb39129e43af7dfcf1a3d98a4d4c21e5eed5a1f3ef1c0557fb + md5: c7d0f9c38601b87f6ebb0ba00fb02e5c depends: - - python >=3.7 - license: MIT and PSF-2.0 + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 ha449628_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/exceptiongroup - size: 20551 - timestamp: 1704921321122 + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 272088 + timestamp: 1711395982732 - kind: conda - name: filelock - version: 3.13.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda - sha256: 2eef860d5ad6ef1fac5002a3b75661f765d448e9f997f64482b0e51a097e037f - md5: 6baa2e7fc09bd2c7c82cb6662d5f1d36 + name: libmambapy + version: 1.5.8 + build: py312hd9e9ff6_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py312hd9e9ff6_0.conda + sha256: 429c8fd6f7be1040a52cedaa8cd7aa02a42ccc8a27baa0a4394516401e9d7b28 + md5: ab74748421323fd59d9fda55e45b979e depends: - - python >=3.7 - license: Unlicense + - fmt >=10.2.1,<11.0a0 + - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/filelock - size: 15707 - timestamp: 1712686250786 + - pkg:pypi/libmambapy + size: 306497 + timestamp: 1711395345839 - kind: conda - name: filelock - version: 3.15.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - sha256: f78d9c0be189a77cb0c67d02f33005f71b89037a85531996583fb79ff3fe1a0a - md5: 0e7e4388e9d5283e22b35a9443bdbcc9 + name: libmambapy + version: 1.5.8 + build: py312hd9e9ff6_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py312hd9e9ff6_0.conda + sha256: 429c8fd6f7be1040a52cedaa8cd7aa02a42ccc8a27baa0a4394516401e9d7b28 + md5: ab74748421323fd59d9fda55e45b979e depends: - - python >=3.7 - license: Unlicense - size: 17592 - timestamp: 1719088395353 + - fmt >=10.2.1,<11.0a0 + - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 306497 + timestamp: 1711395345839 - kind: conda - name: fmt - version: 10.2.1 - build: h00ab1b0_0 + name: libnghttp2 + version: 1.58.0 + build: h47da74e_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - md5: 35ef8bc24bd34074ebae3c943d551728 + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb + md5: 700ac6ea6d53d5510591c4344d5c989a depends: + - c-ares >=1.23.0,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 - libgcc-ng >=12 - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.0,<4.0a0 license: MIT license_family: MIT purls: [] - size: 193853 - timestamp: 1704454679950 + size: 631936 + timestamp: 1702130036271 - kind: conda - name: fmt - version: 10.2.1 - build: h181d51b_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - sha256: 4593d75b6a1e0b5b43fdcba6b968537638a6e469521fb4c3073929f973891828 - md5: 4253b572559cc775cae49def5c97b3c0 + name: libnghttp2 + version: 1.58.0 + build: h47da74e_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb + md5: 700ac6ea6d53d5510591c4344d5c989a depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - c-ares >=1.23.0,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.0,<4.0a0 license: MIT license_family: MIT purls: [] - size: 185170 - timestamp: 1704455079451 + size: 631936 + timestamp: 1702130036271 - kind: conda - name: fmt - version: 10.2.1 - build: h2ffa867_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda - sha256: 8570ae6fb7cd1179c646e2c48105e91b3ed8ba15855f12965cc5c9719753c06f - md5: 8cccde6755bdd787f9840f38a34b4e7d + name: libnghttp2 + version: 1.58.0 + build: h64cf6d3_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380 + md5: faecc55c2a8155d9ff1c0ff9a0fef64f depends: - - libcxx >=15 + - __osx >=10.9 + - c-ares >=1.23.0,<2.0a0 + - libcxx >=16.0.6 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.0,<4.0a0 license: MIT license_family: MIT purls: [] - size: 174209 - timestamp: 1704454873305 + size: 599736 + timestamp: 1702130398536 - kind: conda - name: fmt - version: 10.2.1 - build: h7728843_0 + name: libnghttp2 + version: 1.58.0 + build: h64cf6d3_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc - md5: ab205d53bda43d03f5c5b993ccb406b3 + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380 + md5: faecc55c2a8155d9ff1c0ff9a0fef64f depends: - - libcxx >=15 + - __osx >=10.9 + - c-ares >=1.23.0,<2.0a0 + - libcxx >=16.0.6 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.0,<4.0a0 license: MIT license_family: MIT purls: [] - size: 181468 - timestamp: 1704454938658 + size: 599736 + timestamp: 1702130398536 - kind: conda - name: icu - version: '73.2' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 - md5: cc47e1facc155f91abd89b11e48e72ff + name: libnghttp2 + version: 1.58.0 + build: ha4dd798_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + sha256: fc97aaaf0c6d0f508be313d86c2705b490998d382560df24be918b8e977802cd + md5: 1813e066bfcef82de579a0be8a766df4 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=10.9 + - c-ares >=1.23.0,<2.0a0 + - libcxx >=16.0.6 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.0,<4.0a0 license: MIT license_family: MIT purls: [] - size: 12089150 - timestamp: 1692900650789 + size: 565451 + timestamp: 1702130473930 - kind: conda - name: icu - version: '73.2' - build: hc8870d7_0 + name: libnghttp2 + version: 1.58.0 + build: ha4dd798_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda - sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1 - md5: 8521bd47c0e11c5902535bb1a17c565f - license: MIT - license_family: MIT - purls: [] - size: 11997841 - timestamp: 1692902104771 -- kind: conda - name: icu - version: '73.2' - build: hf5e326d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 - md5: 5cc301d759ec03f28328428e28f65591 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + sha256: fc97aaaf0c6d0f508be313d86c2705b490998d382560df24be918b8e977802cd + md5: 1813e066bfcef82de579a0be8a766df4 + depends: + - __osx >=10.9 + - c-ares >=1.23.0,<2.0a0 + - libcxx >=16.0.6 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.0,<4.0a0 license: MIT license_family: MIT purls: [] - size: 11787527 - timestamp: 1692901622519 + size: 565451 + timestamp: 1702130473930 - kind: conda - name: identify - version: 2.6.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.0-pyhd8ed1ab_0.conda - sha256: 4a2889027df94d51be283536ac235feba77eaa42a0d051f65cd07ba824b324a6 - md5: f80cc5989f445f23b1622d6c455896d9 + name: libnsl + version: 2.0.1 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 depends: - - python >=3.6 - - ukkonen - license: MIT - license_family: MIT - size: 78197 - timestamp: 1720413864262 + - libgcc-ng >=12 + license: LGPL-2.1-only + license_family: GPL + size: 33408 + timestamp: 1697359010159 - kind: conda - name: idna - version: '3.7' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b - md5: c0cc1420498b17414d8617d0b9f506ca + name: libnsl + version: 2.0.1 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 depends: - - python >=3.6 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/idna - size: 52718 - timestamp: 1713279497047 + - libgcc-ng >=12 + license: LGPL-2.1-only + license_family: GPL + purls: [] + size: 33408 + timestamp: 1697359010159 - kind: conda - name: importlib-metadata - version: 7.1.0 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda - sha256: cc2e7d1f7f01cede30feafc1118b7aefa244d0a12224513734e24165ae12ba49 - md5: 0896606848b2dc5cebdf111b6543aa04 - depends: - - python >=3.8 - - zipp >=0.5 - license: Apache-2.0 - license_family: APACHE - purls: - - pkg:pypi/importlib-metadata - size: 27043 - timestamp: 1710971498183 + name: libsodium + version: 1.0.18 + build: h27ca646_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc + md5: 90859688dbca4735b74c02af14c4c793 + license: ISC + purls: [] + size: 324912 + timestamp: 1605135878892 - kind: conda - name: importlib_resources - version: 6.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - sha256: c6ae80c0beaeabb342c5b041f19669992ae6e937dbec56ced766cb035900f9de - md5: c5d3907ad8bd7bf557521a1833cf7e6d + name: libsodium + version: 1.0.18 + build: h36c2ea0_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130 + md5: c3788462a6fbddafdb413a9f9053e58d depends: - - python >=3.8 - - zipp >=3.1.0 - constrains: - - importlib-resources >=6.4.0,<6.4.1.0a0 - license: Apache-2.0 - license_family: APACHE - purls: - - pkg:pypi/importlib-resources - size: 33056 - timestamp: 1711041009039 + - libgcc-ng >=7.5.0 + license: ISC + purls: [] + size: 374999 + timestamp: 1605135674116 - kind: conda - name: iniconfig - version: 2.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - md5: f800d2da156d08e289b14e87e43c1ae5 - depends: - - python >=3.7 - license: MIT - license_family: MIT - purls: - - pkg:pypi/iniconfig - size: 11101 - timestamp: 1673103208955 + name: libsodium + version: 1.0.18 + build: hbcb3906_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660 + md5: 24632c09ed931af617fe6d5292919cab + license: ISC + purls: [] + size: 528765 + timestamp: 1605135849110 - kind: conda - name: jinja2 - version: 3.1.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda - sha256: fd517b7dd3a61eca34f8a6f9f92f306397149cae1204fce72ac3d227107dafdc - md5: e7d8df6509ba635247ff9aea31134262 + name: libsolv + version: 0.7.28 + build: h1059232_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.28-h1059232_2.conda + sha256: fd83e17e0f71cba0eeecffd6dd7bb0b0b39ac5c5b456b425c1d92f860151ff68 + md5: 00e4d252cbbeb894f15d01a1545aa876 depends: - - markupsafe >=2.0 - - python >=3.7 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/jinja2 - size: 111589 - timestamp: 1704967140287 + purls: [] + size: 386817 + timestamp: 1711553518981 - kind: conda - name: jsonpatch - version: '1.33' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - sha256: fbb17e33ace3225c6416d1604637c1058906b8223da968cc015128985336b2b4 - md5: bfdb7c5c6ad1077c82a69a8642c87aff + name: libsolv + version: 0.7.28 + build: h12be248_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.28-h12be248_2.conda + sha256: 622e1c86bed9b02beec3a6941fe5ecc8c12b3a53bdb14ceb8fe49d7111faaf28 + md5: f2c5e63535585215c1caebff2c31c28c depends: - - jsonpointer >=1.9 - - python >=3.8 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/jsonpatch - size: 17366 - timestamp: 1695536420928 + purls: [] + size: 428198 + timestamp: 1711553615565 - kind: conda - name: jsonpointer - version: '2.4' - build: py312h2e8e312_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py312h2e8e312_3.conda - sha256: 98d86d5ccb3a95da2cd96b394c157aa6fef0d4908b8878c3e2b5931f6bc5fd57 - md5: 9d9572e257bf4559f20629efb0d3511d + name: libsolv + version: 0.7.28 + build: h2d185b6_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.28-h2d185b6_2.conda + sha256: 02e2873fd21bdb80a4ce4ff063a242d3991e6a4fbae50cb51114a726b26b6ed1 + md5: bb6893e88ce3fdd5dca9a50890cfaf63 depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/jsonpointer - size: 34602 - timestamp: 1695397923441 + purls: [] + size: 416267 + timestamp: 1711553618004 - kind: conda - name: jsonpointer - version: '2.4' - build: py312h7900ff3_3 - build_number: 3 + name: libsolv + version: 0.7.28 + build: hfc55251_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py312h7900ff3_3.conda - sha256: c211a79cff8aa001a6e14e923c37278231dca7f0970d8db155c4b9e48ac87a5a - md5: 50f62bdb9b60b13c2f6ae69957342e4d + url: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.28-hfc55251_2.conda + sha256: f21f2653a0a73bfcdfeecbeb2198b5ebd3f0c9f541fe0044e995bf43df3096d2 + md5: 535bafe1ed0a5bdd3f4c125ca05d378c depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/jsonpointer - size: 18033 - timestamp: 1695397448370 -- kind: conda - name: jsonpointer - version: '2.4' - build: py312h81bd7bf_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-2.4-py312h81bd7bf_3.conda - sha256: 6cb2d17da9083e05f5ead7902a5cd6ec9567cd3da972c65c03f090515c9fa176 - md5: 327361b24f5348cab04ad9b1f74e831d + license_family: BSD + purls: [] + size: 468273 + timestamp: 1711553127824 +- kind: conda + name: libsolv + version: 0.7.30 + build: h3509ff9_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda + sha256: 1dddbde791efdfc34c8fefa74dc2f910eac9cf87bf37ee6c3c9132eb96a0e7d4 + md5: 02539b77d25aa4f65b20246549e256c3 depends: - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/jsonpointer - size: 18542 - timestamp: 1695397720755 + purls: [] + size: 470810 + timestamp: 1720790097030 - kind: conda - name: jsonpointer - version: '2.4' - build: py312hb401068_3 - build_number: 3 + name: libsolv + version: 0.7.30 + build: h69d5d9b_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py312hb401068_3.conda - sha256: 883f6d635e58f49359f393e853e4e0043731fb0ce671283a2024db02a1ebc8f6 - md5: 637aa8f6c1c61f659f1496e9b2dc7552 + url: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda + sha256: d0c8a8a448dc8b01aecc023b8e6a26f8cdd03f04263ca0a282a057d636b47b3c + md5: 8f8fd9f1740c8cb7dcfebf1a1ed7e678 depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - __osx >=10.13 + - libcxx >=16 + - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/jsonpointer - size: 18184 - timestamp: 1695397820416 + purls: [] + size: 415636 + timestamp: 1720790194490 - kind: conda - name: jsonschema - version: 4.21.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.21.1-pyhd8ed1ab_0.conda - sha256: c5c1b4e08e91fdd697289015be1a176409b4e63942899a43b276f1f250be8129 - md5: 8a3a3d01629da20befa340919e3dd2c4 + name: libsolv + version: 0.7.30 + build: h6c9b7f8_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda + sha256: e5ffda8a71a334edff7af4f194aa6c72df2f0763321250270f9f68dfc8eaf439 + md5: a5795a7ca73c9c99f112abce7864b500 depends: - - attrs >=22.2.0 - - importlib_resources >=1.4.0 - - jsonschema-specifications >=2023.03.6 - - pkgutil-resolve-name >=1.3.10 - - python >=3.8 - - referencing >=0.28.4 - - rpds-py >=0.7.1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/jsonschema - size: 72817 - timestamp: 1705707712082 + - __osx >=11.0 + - libcxx >=16 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 387085 + timestamp: 1720790391931 - kind: conda - name: jsonschema-specifications - version: 2023.12.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - sha256: a9630556ddc3121c0be32f4cbf792dd9102bd380d5cd81d57759d172cf0c2da2 - md5: a0e4efb5f35786a05af4809a2fb1f855 + name: libsolv + version: 0.7.30 + build: hbb528cf_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda + sha256: 9697652adc0cef5a7f284fb59bf1263c8338fd8932f5817be9f369b985981aa7 + md5: 8394b4531cef34f46297f73286a35a39 depends: - - importlib_resources >=1.4.0 - - python >=3.8 - - referencing >=0.31.0 - license: MIT - license_family: MIT - purls: - - pkg:pypi/jsonschema-specifications - size: 16431 - timestamp: 1703778502971 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 429121 + timestamp: 1720790579319 - kind: conda - name: keyutils - version: 1.6.1 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - md5: 30186d27e2c9fa62b45fb1476b7200e3 + name: libsqlite + version: 3.45.3 + build: h091b4b1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.3-h091b4b1_0.conda + sha256: 4337f466eb55bbdc74e168b52ec8c38f598e3664244ec7a2536009036e2066cc + md5: c8c1186c7f3351f6ffddb97b1f54fc58 depends: - - libgcc-ng >=10.3.0 - license: LGPL-2.1-or-later + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense purls: [] - size: 117831 - timestamp: 1646151697040 + size: 824794 + timestamp: 1713367748819 - kind: conda - name: krb5 - version: 1.21.2 - build: h659d440_0 + name: libsqlite + version: 3.45.3 + build: h2797004_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 - md5: cd95826dbd331ed1be26bdf401432844 + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda + sha256: e2273d6860eadcf714a759ffb6dc24a69cfd01f2a0ea9d6c20f86049b9334e0c + md5: b3316cbe90249da4f8e84cd66e1cc55b depends: - - keyutils >=1.6.1,<2.0a0 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT - purls: [] - size: 1371181 - timestamp: 1692097755782 -- kind: conda - name: krb5 - version: 1.21.2 - build: h92f50d5_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda - sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875 - md5: 92f1cff174a538e0722bf2efb16fc0b2 - depends: - - libcxx >=15.0.7 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense purls: [] - size: 1195575 - timestamp: 1692098070699 + size: 859858 + timestamp: 1713367435849 - kind: conda - name: krb5 - version: 1.21.2 - build: hb884880_0 + name: libsqlite + version: 3.45.3 + build: h92b6c6a_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 - md5: 80505a68783f01dc8d7308c075261b2f + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda + sha256: 4d44b68fb29dcbc2216a8cae0b274b02ef9b4ae05d1d0f785362ed30b91c9b52 + md5: 68e462226209f35182ef66eda0f794ff depends: - - libcxx >=15.0.7 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense purls: [] - size: 1183568 - timestamp: 1692098004387 + size: 902546 + timestamp: 1713367776445 - kind: conda - name: krb5 - version: 1.21.2 - build: heb0366b_0 + name: libsqlite + version: 3.45.3 + build: hcfcfb64_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda - sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b - md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda + sha256: 06ec75faa51d7ec6d5db98889e869b579a9df19d7d3d9baff8359627da4a3b7e + md5: 73f5dc8e2d55d9a1e14b11f49c3b4a28 depends: - - openssl >=3.1.2,<4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT + license: Unlicense purls: [] - size: 710894 - timestamp: 1692098129546 + size: 870518 + timestamp: 1713367888406 - kind: conda - name: ld64 - version: '711' - build: h4c6efb1_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda - sha256: 467371e8dbd4fc99f507024c3d10c0ac4a8528286e9507a1f365e26cb90f4df0 - md5: 289df626863e8c720c3aa220964378cc + name: libsqlite + version: 3.46.0 + build: h1b8f9f3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 + md5: 5dadfbc1a567fe6e475df4ce3148be09 depends: - - ld64_osx-arm64 711 h5e7191b_0 - - libllvm18 >=18.1.1,<18.2.0a0 - constrains: - - cctools 986.* - - cctools_osx-arm64 986.* - license: APSL-2.0 - license_family: Other + - __osx >=10.13 + - libzlib >=1.2.13,<2.0a0 + license: Unlicense purls: [] - size: 18678 - timestamp: 1710484665887 + size: 908643 + timestamp: 1718050720117 - kind: conda - name: ld64 - version: '711' - build: h4e51db5_0 + name: libsqlite + version: 3.46.0 + build: h1b8f9f3_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda - sha256: 230be4e751f17fa1ccc15066086d1726d1d223e98f8337f435b4472bfe00436b - md5: cc84dae1a60ee59f6098f93b76d74b60 + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 + md5: 5dadfbc1a567fe6e475df4ce3148be09 depends: - - ld64_osx-64 711 had5d0d3_0 - - libllvm18 >=18.1.1,<18.2.0a0 - constrains: - - cctools_osx-64 986.* - - cctools 986.* - license: APSL-2.0 - license_family: Other - purls: [] - size: 18568 - timestamp: 1710484499499 + - __osx >=10.13 + - libzlib >=1.2.13,<2.0a0 + license: Unlicense + size: 908643 + timestamp: 1718050720117 - kind: conda - name: ld64_osx-64 - version: '711' - build: had5d0d3_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda - sha256: 14d3fd593a7fd1cc472167dc00fd1d3176b8ce9dfc9b9d003359ecde4ded7459 - md5: cb63e1d1e11a1fffad54333330486ddd + name: libsqlite + version: 3.46.0 + build: h2466b09_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda + sha256: 662bd7e0d63c5b8c31cca19b91649e798319b93568a2ba8d1375efb91eeb251b + md5: 951b0a3a463932e17414cd9f047fa03d depends: - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - sigtool - - tapi >=1100.0.11,<1101.0a0 - constrains: - - cctools_osx-64 986.* - - ld 711.* - - cctools 986.* - - clang >=18.1.1,<19.0a0 - license: APSL-2.0 - license_family: Other + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense purls: [] - size: 1071472 - timestamp: 1710484364960 + size: 876677 + timestamp: 1718051113874 - kind: conda - name: ld64_osx-arm64 - version: '711' - build: h5e7191b_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda - sha256: 82f964dcff2052b327762ca44651407451ad396a1540c664928841c72b7cf3c0 - md5: c751b76ae8112e3d516831063da179cc + name: libsqlite + version: 3.46.0 + build: h2466b09_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda + sha256: 662bd7e0d63c5b8c31cca19b91649e798319b93568a2ba8d1375efb91eeb251b + md5: 951b0a3a463932e17414cd9f047fa03d depends: - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - sigtool - - tapi >=1100.0.11,<1101.0a0 - constrains: - - ld 711.* - - cctools 986.* - - cctools_osx-arm64 986.* - - clang >=18.1.1,<19.0a0 - license: APSL-2.0 - license_family: Other - purls: [] - size: 1064448 - timestamp: 1710484550965 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense + size: 876677 + timestamp: 1718051113874 - kind: conda - name: ld_impl_linux-64 - version: '2.40' - build: h41732ed_0 + name: libsqlite + version: 3.46.0 + build: hde9e2c9_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd - md5: 7aca3059a1729aa76c597603f10b0dd3 - constrains: - - binutils_impl_linux-64 2.40 - license: GPL-3.0-only - license_family: GPL + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 + md5: 18aa975d2094c34aef978060ae7da7d8 + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0a0 + license: Unlicense purls: [] - size: 704696 - timestamp: 1674833944779 -- kind: conda - name: ld_impl_linux-64 - version: '2.40' - build: hf3520f5_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda - sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 - md5: b80f2f396ca2c28b8c14c437a4ed1e74 - constrains: - - binutils_impl_linux-64 2.40 - license: GPL-3.0-only - license_family: GPL - size: 707602 - timestamp: 1718625640445 + size: 865346 + timestamp: 1718050628718 - kind: conda - name: libarchive - version: 3.7.2 - build: h2aa1ff5_1 - build_number: 1 + name: libsqlite + version: 3.46.0 + build: hde9e2c9_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda - sha256: 340ed0bb02fe26a2b2e29cedf6559e2999b820f434e745c108e788d629ae4b17 - md5: 3bf887827d1968275978361a6e405e4f + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 + md5: 18aa975d2094c34aef978060ae7da7d8 depends: - - bzip2 >=1.0.8,<2.0a0 - libgcc-ng >=12 - - libxml2 >=2.12.2,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.2.0,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-2-Clause - license_family: BSD - purls: [] - size: 866168 - timestamp: 1701994227275 + - libzlib >=1.2.13,<2.0a0 + license: Unlicense + size: 865346 + timestamp: 1718050628718 - kind: conda - name: libarchive - version: 3.7.2 - build: h313118b_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.2-h313118b_1.conda - sha256: 8dd608299e8bc56e0337c6653028e552fea8b952af10fbcc2f4008274add11a1 - md5: 4b84938cdb30e9cc2dc413208e917e11 + name: libsqlite + version: 3.46.0 + build: hfb93653_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda + sha256: 73048f9cb8647d3d3bfe6021c0b7d663e12cffbe9b4f31bd081e713b0a9ad8f9 + md5: 12300188028c9bc02da965128b91b517 depends: - - bzip2 >=1.0.8,<2.0a0 - - libxml2 >=2.12.2,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.2.0,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-2-Clause - license_family: BSD + - __osx >=11.0 + - libzlib >=1.2.13,<2.0a0 + license: Unlicense purls: [] - size: 964623 - timestamp: 1701994828221 + size: 830198 + timestamp: 1718050644825 - kind: conda - name: libarchive - version: 3.7.2 - build: hcacb583_1 - build_number: 1 + name: libsqlite + version: 3.46.0 + build: hfb93653_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.2-hcacb583_1.conda - sha256: 307dd9984deccab782a834022a708ba070950d3d0f3b370ce9331ad1db013576 - md5: 1c8c447ce71bf5f769674b621142a73a + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda + sha256: 73048f9cb8647d3d3bfe6021c0b7d663e12cffbe9b4f31bd081e713b0a9ad8f9 + md5: 12300188028c9bc02da965128b91b517 depends: - - bzip2 >=1.0.8,<2.0a0 - - libiconv >=1.17,<2.0a0 - - libxml2 >=2.12.2,<3.0.0a0 + - __osx >=11.0 + - libzlib >=1.2.13,<2.0a0 + license: Unlicense + size: 830198 + timestamp: 1718050644825 +- kind: conda + name: libssh2 + version: 1.11.0 + build: h0841786_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d + md5: 1f5a58e686b13bcfde88b93f547d23fe + depends: + - libgcc-ng >=12 - libzlib >=1.2.13,<1.3.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.2.0,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-2-Clause + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause license_family: BSD purls: [] - size: 783812 - timestamp: 1701994487530 + size: 271133 + timestamp: 1685837707056 - kind: conda - name: libarchive - version: 3.7.2 - build: hd35d340_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda - sha256: f458515a49c56e117e05fe607493b7683a7bf06d2a625b59e378dbbf7f308895 - md5: 8c7b79b20a67287a87b39df8a8c8dcc4 + name: libssh2 + version: 1.11.0 + build: h0841786_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d + md5: 1f5a58e686b13bcfde88b93f547d23fe depends: - - bzip2 >=1.0.8,<2.0a0 - - libiconv >=1.17,<2.0a0 - - libxml2 >=2.12.2,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.2.0,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-2-Clause + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause license_family: BSD purls: [] - size: 745686 - timestamp: 1701994485309 + size: 271133 + timestamp: 1685837707056 - kind: conda - name: libcurl - version: 8.7.1 - build: h2d989ff_0 + name: libssh2 + version: 1.11.0 + build: h7a5bd25_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.7.1-h2d989ff_0.conda - sha256: 973ac9368efca712a8fd19fe68524d7d9a3087fd88ad6b7fcdf60c3d2e19a498 - md5: 34b9171710f0d9bf093d55bdc36ff355 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 + md5: 029f7dc931a3b626b94823bc77830b01 depends: - - krb5 >=1.21.2,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.1,<4.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: curl - license_family: MIT + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD purls: [] - size: 358080 - timestamp: 1711548548174 + size: 255610 + timestamp: 1685837894256 - kind: conda - name: libcurl - version: 8.7.1 - build: h726d00d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 - md5: fa58e5eaa12006bc3289a71357bef167 + name: libssh2 + version: 1.11.0 + build: h7a5bd25_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 + md5: 029f7dc931a3b626b94823bc77830b01 depends: - - krb5 >=1.21.2,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.1,<4.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: curl - license_family: MIT + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD purls: [] - size: 378176 - timestamp: 1711548390530 + size: 255610 + timestamp: 1685837894256 - kind: conda - name: libcurl - version: 8.7.1 - build: hca28451_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 - md5: 755c7f876815003337d2c61ff5d047e5 + name: libssh2 + version: 1.11.0 + build: h7dfc565_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec + md5: dc262d03aae04fe26825062879141a41 depends: - - krb5 >=1.21.2,<1.22.0a0 - - libgcc-ng >=12 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.1,<4.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: curl - license_family: MIT + - openssl >=3.1.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD purls: [] - size: 398293 - timestamp: 1711548114077 + size: 266806 + timestamp: 1685838242099 - kind: conda - name: libcurl - version: 8.7.1 - build: hd5e4a3a_0 + name: libssh2 + version: 1.11.0 + build: h7dfc565_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.7.1-hd5e4a3a_0.conda - sha256: 8dd272362e2aeb1d4f49333ff57e07eb4da2bbabce20110a2416df9152ba03e0 - md5: 3396aff340d0903e8814c2852d631e4e + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec + md5: dc262d03aae04fe26825062879141a41 depends: - - krb5 >=1.21.2,<1.22.0a0 - - libssh2 >=1.11.0,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.1.1,<4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: curl - license_family: MIT + license: BSD-3-Clause + license_family: BSD purls: [] - size: 331262 - timestamp: 1711548608132 + size: 266806 + timestamp: 1685838242099 - kind: conda - name: libcxx - version: 16.0.6 - build: h4653b0c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda - sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 - md5: 9d7d724faf0413bf1dbc5a85935700c8 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache + name: libssh2 + version: 1.11.0 + build: hd019ec5_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 + md5: ca3a72efba692c59a90d4b9fc0dfe774 + depends: + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD purls: [] - size: 1160232 - timestamp: 1686896993785 + size: 259556 + timestamp: 1685837820566 - kind: conda - name: libcxx - version: 16.0.6 - build: hd57cbcb_0 + name: libssh2 + version: 1.11.0 + build: hd019ec5_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 - md5: 7d6972792161077908b62971802f289a - license: Apache-2.0 WITH LLVM-exception - license_family: Apache + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 + md5: ca3a72efba692c59a90d4b9fc0dfe774 + depends: + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD purls: [] - size: 1142172 - timestamp: 1686896907750 + size: 259556 + timestamp: 1685837820566 - kind: conda - name: libcxx - version: 18.1.8 - build: h167917d_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda - sha256: a598062f2d1522fc3727c16620fbc2bc913c1069342671428a92fcf4eb02ec12 - md5: c891c2eeabd7d67fbc38e012cc6045d6 + name: libstdcxx-ng + version: 13.2.0 + build: h7e041cc_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: f6f6600d18a4047b54f803cf708b868a + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 3834139 + timestamp: 1706819252496 +- kind: conda + name: libstdcxx-ng + version: 14.1.0 + build: hc0a3c3a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 + md5: 1cb187a157136398ddbaae90713e2498 depends: - - __osx >=11.0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1219441 - timestamp: 1720589623297 + - libgcc-ng 14.1.0 h77fa898_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 3881307 + timestamp: 1719538923443 - kind: conda - name: libcxx - version: 18.1.8 - build: hef8daea_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda - sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 - md5: 4101cde4241c92aeac310d65e6791579 + name: libstdcxx-ng + version: 14.1.0 + build: hc0a3c3a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 + md5: 1cb187a157136398ddbaae90713e2498 depends: - - __osx >=10.13 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1396919 - timestamp: 1720589431855 + - libgcc-ng 14.1.0 h77fa898_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3881307 + timestamp: 1719538923443 - kind: conda - name: libedit - version: 3.1.20191231 - build: h0678c8f_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 - md5: 6016a8a1d0e63cac3de2c352cd40208b + name: libuuid + version: 2.38.1 + build: h0b41bf4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b depends: - - ncurses >=6.2,<7.0.0a0 - license: BSD-2-Clause + - libgcc-ng >=12 + license: BSD-3-Clause license_family: BSD - purls: [] - size: 105382 - timestamp: 1597616576726 + size: 33601 + timestamp: 1680112270483 - kind: conda - name: libedit - version: 3.1.20191231 - build: hc8eb9b7_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca - md5: 30e4362988a2623e9eb34337b83e01f9 + name: libuuid + version: 2.38.1 + build: h0b41bf4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b depends: - - ncurses >=6.2,<7.0.0a0 - license: BSD-2-Clause + - libgcc-ng >=12 + license: BSD-3-Clause license_family: BSD purls: [] - size: 96607 - timestamp: 1597616630749 + size: 33601 + timestamp: 1680112270483 - kind: conda - name: libedit - version: 3.1.20191231 - build: he28a2e2_2 - build_number: 2 + name: libxcrypt + version: 4.4.36 + build: hd590300_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c + md5: 5aa797f8787fe7a17d1b0821485b5adc depends: - - libgcc-ng >=7.5.0 - - ncurses >=6.2,<7.0.0a0 - license: BSD-2-Clause - license_family: BSD - purls: [] - size: 123878 - timestamp: 1597616541093 + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 100393 + timestamp: 1702724383534 - kind: conda - name: libev - version: '4.33' - build: h10d778d_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 - md5: 899db79329439820b7e8f8de41bca902 - license: BSD-2-Clause - license_family: BSD + name: libxcrypt + version: 4.4.36 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c + md5: 5aa797f8787fe7a17d1b0821485b5adc + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later purls: [] - size: 106663 - timestamp: 1702146352558 + size: 100393 + timestamp: 1702724383534 - kind: conda - name: libev - version: '4.33' - build: h93a5062_2 + name: libxml2 + version: 2.12.6 + build: h0d0cfa8_2 build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f - md5: 36d33e440c31857372a72137f78bacf5 - license: BSD-2-Clause - license_family: BSD + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.6-h0d0cfa8_2.conda + sha256: a5c10af641d6accf3effb3c3a3c594d931bb374f9e3e796719f3ecf769cfb0fc + md5: 27577d561de7659487b062c363d8a527 + depends: + - icu >=73.2,<74.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 + license: MIT + license_family: MIT purls: [] - size: 107458 - timestamp: 1702146414478 + size: 588638 + timestamp: 1713314780561 - kind: conda - name: libev - version: '4.33' - build: hd590300_2 + name: libxml2 + version: 2.12.6 + build: h232c23b_2 build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 - md5: 172bf1cd1ff8629f2b1179945ed45055 + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_2.conda + sha256: 0fd41df7211aae04f492c8550ce10238e8cfa8b1abebc2215a983c5e66d284ea + md5: 9a3a42df8a95f65334dfc7b80da1195d depends: + - icu >=73.2,<74.0a0 - libgcc-ng >=12 - license: BSD-2-Clause - license_family: BSD + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 + license: MIT + license_family: MIT purls: [] - size: 112766 - timestamp: 1702146165126 + size: 704938 + timestamp: 1713314718258 - kind: conda - name: libexpat - version: 2.6.2 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda - sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19 - md5: e7ba12deb7020dd080c6c70e7b6f6a3d + name: libxml2 + version: 2.12.6 + build: hc0ae0f7_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_2.conda + sha256: 2598a525b1769338f96c3d4badad7d8b95c9ddcea86db3f9479a274803190e5c + md5: 50b997370584f2c83ca0c38e9028eab9 depends: - - libgcc-ng >=12 - constrains: - - expat 2.6.2.* + - icu >=73.2,<74.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 license: MIT license_family: MIT - size: 73730 - timestamp: 1710362120304 + purls: [] + size: 619622 + timestamp: 1713314870641 - kind: conda - name: libexpat - version: 2.6.2 - build: h63175ca_0 + name: libxml2 + version: 2.12.6 + build: hc3477c8_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda - sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 - md5: bc592d03f62779511d392c175dcece64 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 139224 - timestamp: 1710362609641 -- kind: conda - name: libexpat - version: 2.6.2 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda - sha256: a188a77b275d61159a32ab547f7d17892226e7dac4518d2c6ac3ac8fc8dfde92 - md5: 3d1d51c8f716d97c864d12f7af329526 - constrains: - - expat 2.6.2.* + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.6-hc3477c8_2.conda + sha256: 9a717cad6da52c84cfc490f7d52203c4cbc9e0e0389941fc6523273be5ccd17a + md5: ac7af7a949db01dae61ddc48f4a93d79 + depends: + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 69246 - timestamp: 1710362566073 + purls: [] + size: 1589904 + timestamp: 1713315104803 - kind: conda - name: libexpat - version: 2.6.2 - build: hebf3989_0 + name: libxml2 + version: 2.12.7 + build: h01dff8b_4 + build_number: 4 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda - sha256: ba7173ac30064ea901a4c9fb5a51846dcc25512ceb565759be7d18cbf3e5415e - md5: e3cde7cfa87f82f7cb13d482d5e0ad09 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 63655 - timestamp: 1710362424980 -- kind: conda - name: libffi - version: 3.4.2 - build: h0d85af4_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - md5: ccb34fb14960ad8b125962d3d79b31a9 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-h01dff8b_4.conda + sha256: a9a76cdc6e93c0182bc2ac58b1ea0152be1a16a5d23f4dc7b8df282a7aef8d20 + md5: 1265488dc5035457b729583119ad4a1b + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 license: MIT license_family: MIT - size: 51348 - timestamp: 1636488394370 + purls: [] + size: 588990 + timestamp: 1721031045514 - kind: conda - name: libffi - version: 3.4.2 - build: h3422bc3_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca - md5: 086914b672be056eb70fd4285b6783b6 + name: libxml2 + version: 2.12.7 + build: h0f24e4e_4 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda + sha256: ae78197961b09b0eef4ee194a44e4adc4555c0f2f20c348086b0cd8aaf2f7731 + md5: ed4d301f0d2149b34deb9c4fecafd836 + depends: + - libiconv >=1.17,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 39020 - timestamp: 1636488587153 + purls: [] + size: 1682090 + timestamp: 1721031296951 - kind: conda - name: libffi - version: 3.4.2 - build: h7f98852_5 - build_number: 5 + name: libxml2 + version: 2.12.7 + build: he7c6b58_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda + sha256: 10e9e0ac52b9a516a17edbc07f8d559e23778e54f1a7721b2e0e8219284fed3b + md5: 08a9265c637230c37cb1be4a6cad4536 depends: - - libgcc-ng >=9.4.0 + - __glibc >=2.17,<3.0.a0 + - icu >=75.1,<76.0a0 + - libgcc-ng >=12 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 license: MIT license_family: MIT - size: 58292 - timestamp: 1636488182923 + purls: [] + size: 707169 + timestamp: 1721031016143 - kind: conda - name: libffi - version: 3.4.2 - build: h8ffe710_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - md5: 2c96d1b6915b408893f9472569dee135 + name: libxml2 + version: 2.12.7 + build: heaf3512_4 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda + sha256: ed18a2d8d428c0b88d47751ebcc7cc4e6202f99c3948fffd776cba83c4f0dad3 + md5: ea1be6ecfe814da889e882c8b6ead79d depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 + - __osx >=10.13 + - icu >=75.1,<76.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 license: MIT license_family: MIT - size: 42063 - timestamp: 1636489106777 + purls: [] + size: 619901 + timestamp: 1721031175411 - kind: conda - name: libgcc-ng - version: 13.2.0 - build: h807b86a_5 + name: libzlib + version: 1.2.13 + build: h53f4e23_5 build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 - md5: d4ff227c46917d3b4565302a2bbb276b - depends: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex >=4.5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a + md5: 1a47f5236db2e06a320ffa0392f81bd8 constrains: - - libgomp 13.2.0 h807b86a_5 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other purls: [] - size: 770506 - timestamp: 1706819192021 + size: 48102 + timestamp: 1686575426584 - kind: conda - name: libgcc-ng - version: 14.1.0 - build: h77fa898_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda - sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 - md5: ca0fad6a41ddaef54a153b78eccb5037 - depends: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex >=4.5 + name: libzlib + version: 1.2.13 + build: h8a1eda9_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: 4a3ad23f6e16f99c04e166767193d700 constrains: - - libgomp 14.1.0 h77fa898_0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 842109 - timestamp: 1719538896937 + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + purls: [] + size: 59404 + timestamp: 1686575566695 - kind: conda - name: libgomp - version: 13.2.0 - build: h807b86a_5 + name: libzlib + version: 1.2.13 + build: hcfcfb64_5 build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e - md5: d211c42b9ce49aee3734fdc828731689 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 depends: - - _libgcc_mutex 0.1 conda_forge - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other purls: [] - size: 419751 - timestamp: 1706819107383 + size: 55800 + timestamp: 1686575452215 - kind: conda - name: libgomp - version: 14.1.0 - build: h77fa898_0 + name: libzlib + version: 1.2.13 + build: hd590300_5 + build_number: 5 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda - sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 - md5: ae061a5ed5f05818acdf9adab72c146d + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: f36c115f1ee199da648e0597ec2047ad depends: - - _libgcc_mutex 0.1 conda_forge - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 456925 - timestamp: 1719538796073 -- kind: conda - name: libiconv - version: '1.17' - build: h0d3ecfb_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - sha256: bc7de5097b97bcafcf7deaaed505f7ce02f648aac8eccc0d5a47cc599a1d0304 - md5: 69bda57310071cf6d2b86caf11573d2d - license: LGPL-2.1-only + - libgcc-ng >=12 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other purls: [] - size: 676469 - timestamp: 1702682458114 + size: 61588 + timestamp: 1686575217516 - kind: conda - name: libiconv - version: '1.17' - build: hcfcfb64_2 - build_number: 2 + name: libzlib + version: 1.3.1 + build: h2466b09_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda - sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b - md5: e1eb10b1cca179f2baa3601e4efc8712 + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda + sha256: b13846a54a15243e15f96fec06b526d8155adc6a1ac2b6ed47a88f6a71a94b68 + md5: d4483ca8afc57ddf1f6dded53b36c17f depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: LGPL-2.1-only + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other purls: [] - size: 636146 - timestamp: 1702682547199 + size: 56186 + timestamp: 1716874730539 - kind: conda - name: libiconv - version: '1.17' - build: hd590300_2 - build_number: 2 + name: libzlib + version: 1.3.1 + build: h2466b09_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda + sha256: b13846a54a15243e15f96fec06b526d8155adc6a1ac2b6ed47a88f6a71a94b68 + md5: d4483ca8afc57ddf1f6dded53b36c17f + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other + size: 56186 + timestamp: 1716874730539 +- kind: conda + name: libzlib + version: 1.3.1 + build: h4ab18f5_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9 - md5: d66573916ffcf376178462f1b61c941e + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d + md5: 57d7dc60e9325e3de37ff8dffd18e814 depends: - libgcc-ng >=12 - license: LGPL-2.1-only + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other purls: [] - size: 705775 - timestamp: 1702682170569 + size: 61574 + timestamp: 1716874187109 - kind: conda - name: libiconv - version: '1.17' - build: hd75f5a5_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda - sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23 - md5: 6c3628d047e151efba7cf08c5e54d1ca - license: LGPL-2.1-only - purls: [] - size: 666538 - timestamp: 1702682713201 + name: libzlib + version: 1.3.1 + build: h4ab18f5_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d + md5: 57d7dc60e9325e3de37ff8dffd18e814 + depends: + - libgcc-ng >=12 + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other + size: 61574 + timestamp: 1716874187109 - kind: conda - name: liblief - version: 0.14.1 - build: h3f3aa29_1 + name: libzlib + version: 1.3.1 + build: h87427d6_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda - sha256: 09ce81a54a7713058f5bf334dcd8e901435cce4eac9db05dcfe73454cab4f813 - md5: ff67fa3d5bb43a834a9bf658b8c0aa6c + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d + md5: b7575b5aa92108dcc9aaab0f05f2dbce depends: - - __osx >=11.0 - - libcxx >=16 - license: Apache-2.0 - license_family: Apache + - __osx >=10.13 + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other purls: [] - size: 1547201 - timestamp: 1711564083758 + size: 57372 + timestamp: 1716874211519 - kind: conda - name: liblief - version: 0.14.1 - build: ha0df490_1 + name: libzlib + version: 1.3.1 + build: h87427d6_1 build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda - sha256: 861cc8e2ab8cf2a65ec1c571ec1dfda1d0cebfd9de9f9eeeb7d95cc3089bbda2 - md5: 0df35a8c33ac32d62561a1280f6496b3 + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d + md5: b7575b5aa92108dcc9aaab0f05f2dbce depends: - __osx >=10.13 - - libcxx >=16 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 1644532 - timestamp: 1711564108311 + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other + size: 57372 + timestamp: 1716874211519 - kind: conda - name: liblief - version: 0.14.1 - build: hac33072_1 + name: libzlib + version: 1.3.1 + build: hfb2fe0b_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda - sha256: 9c43233e6a4dc4732150c5df7f22647f94eebfb0029f864ff08e406eacf4e941 - md5: 2f6a34571bb9e99ecf3486012739e73b + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + sha256: c34365dd37b0eab27b9693af32a1f7f284955517c2cc91f1b88a7ef4738ff03e + md5: 636077128927cf79fd933276dc3aed47 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: Apache + - __osx >=11.0 + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other purls: [] - size: 1843928 - timestamp: 1711563126697 + size: 46921 + timestamp: 1716874262512 - kind: conda - name: liblief - version: 0.14.1 - build: he0c23c2_1 + name: libzlib + version: 1.3.1 + build: hfb2fe0b_1 build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda - sha256: aea92e9daa418e3140610246b41ef66738e3edb2a2eb1f1c1ade4ffc28b3406c - md5: 15a52dcd8d2ddada8f51dd576846bf3e + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + sha256: c34365dd37b0eab27b9693af32a1f7f284955517c2cc91f1b88a7ef4738ff03e + md5: 636077128927cf79fd933276dc3aed47 depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc >=14.3,<15 - - vc14_runtime >=14.29.30139 - - vc14_runtime >=14.38.33130 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 1565646 - timestamp: 1711563685979 + - __osx >=11.0 + constrains: + - zlib 1.3.1 *_1 + license: Zlib + license_family: Other + size: 46921 + timestamp: 1716874262512 - kind: conda - name: libllvm18 - version: 18.1.3 - build: h30cc82d_0 + name: lz4-c + version: 1.9.4 + build: hb7217d7_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.3-h30cc82d_0.conda - sha256: 5a8781ab13b163fd028916d050bb209718b14de85493bb7a4b93ea798998b9fe - md5: fad73e8421bcd0de381d172c2224d3a5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + sha256: fc343b8c82efe40819b986e29ba748366514e5ab94a1e1138df195af5f45fa24 + md5: 45505bec548634f7d05e02fb25262cb9 depends: - - libcxx >=16 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache + - libcxx >=14.0.6 + license: BSD-2-Clause + license_family: BSD purls: [] - size: 25782519 - timestamp: 1712517407600 + size: 141188 + timestamp: 1674727268278 - kind: conda - name: libllvm18 - version: 18.1.3 - build: hbcf5fad_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.3-hbcf5fad_0.conda - sha256: bc42a9999c8846f50f5b3bb9a2338caeab34f2d7de8202e3fad7f929f38e3287 - md5: f286e87d892273a1ef3059744c833f91 + name: lz4-c + version: 1.9.4 + build: hcb278e6_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + md5: 318b08df404f9c9be5712aaa5a6f0bb0 depends: - - libcxx >=16 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD purls: [] - size: 27580830 - timestamp: 1712517566570 + size: 143402 + timestamp: 1674727076728 - kind: conda - name: libmamba - version: 1.5.8 - build: h3f09ed1_0 + name: lz4-c + version: 1.9.4 + build: hcfcfb64_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda - sha256: 89cb2314f7963e8406a709273e5c940594ff8649f756d64d4fc1b8867df13825 - md5: 2adef6fd3e61ac2f8b31f47159a65bd5 + url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab + md5: e34720eb20a33fc3bfb8451dd837ab7a depends: - - fmt >=10.2.1,<11.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.6.0,<9.0a0 - - libsolv >=0.7.23 - - openssl >=3.2.1,<4.0a0 - - reproc >=14.2,<15.0a0 - - reproc-cpp >=14.2,<15.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - yaml-cpp >=0.8.0,<0.9.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause + - vs2015_runtime >=14.29.30139 + license: BSD-2-Clause license_family: BSD purls: [] - size: 3586348 - timestamp: 1711395542569 + size: 134235 + timestamp: 1674728465431 - kind: conda - name: libmamba - version: 1.5.8 - build: h90c426b_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda - sha256: a6182bd735fe6a8bdd511096931a991b7d431cbfa2358f3aebb98132f063c89d - md5: e02e82b493ab683be580380193db1b64 + name: lz4-c + version: 1.9.4 + build: hf0c8a7f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + sha256: 39aa0c01696e4e202bf5e337413de09dfeec061d89acd5f28e9968b4e93c3f48 + md5: aa04f7143228308662696ac24023f991 depends: - - fmt >=10.2.1,<11.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.6.0,<9.0a0 - - libcxx >=16 - - libsolv >=0.7.23 - - openssl >=3.2.1,<4.0a0 - - reproc >=14.2,<15.0a0 - - reproc-cpp >=14.2,<15.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause + - libcxx >=14.0.6 + license: BSD-2-Clause license_family: BSD purls: [] - size: 1201341 - timestamp: 1711395432570 + size: 156415 + timestamp: 1674727335352 - kind: conda - name: libmamba - version: 1.5.8 - build: ha449628_0 + name: lzo + version: '2.10' + build: h10d778d_1001 + build_number: 1001 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda - sha256: 48ef28e63407a42f0b0553b64aa0cdeadaa441bd588cd89a4988755baec07654 - md5: f4eafddd38618657afefb7540d4c1a20 - depends: - - fmt >=10.2.1,<11.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.6.0,<9.0a0 - - libcxx >=16 - - libsolv >=0.7.23 - - openssl >=3.2.1,<4.0a0 - - reproc >=14.2,<15.0a0 - - reproc-cpp >=14.2,<15.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 + md5: bfecd73e4a2dc18ffd5288acf8a212ab + license: GPL-2.0-or-later + license_family: GPL2 purls: [] - size: 1298413 - timestamp: 1711395384374 + size: 146405 + timestamp: 1713516112292 - kind: conda - name: libmamba - version: 1.5.8 - build: had39da4_0 + name: lzo + version: '2.10' + build: h516909a_1000 + build_number: 1000 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda - sha256: 79c275862cc084c9f0dc1a13bd42313d48202181d5d64615b3046bf2380ef57d - md5: def669885dc103d8acb7ac2ac35e0b2f + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 + sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 + md5: bb14fcb13341b81d5eb386423b9d2bac depends: - - fmt >=10.2.1,<11.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.6.0,<9.0a0 - - libgcc-ng >=12 - - libsolv >=0.7.23 - - libstdcxx-ng >=12 - - openssl >=3.2.1,<4.0a0 - - reproc >=14.2,<15.0a0 - - reproc-cpp >=14.2,<15.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD + - libgcc-ng >=7.5.0 + license: GPL v2+ + license_family: GPL2 purls: [] - size: 1671126 - timestamp: 1711394919576 + size: 321113 + timestamp: 1597681972321 +- kind: conda + name: lzo + version: '2.10' + build: h642e427_1000 + build_number: 1000 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h642e427_1000.tar.bz2 + sha256: ae029e5c16893071d29a11ddbfdbdb01b2ebf10d1785f54370934439d8b71817 + md5: ddab5f96f5573a9bd5e24f9994fd6ec9 + license: GPL v2+ + license_family: GPL2 + purls: [] + size: 157236 + timestamp: 1597683217947 - kind: conda - name: libmambapy - version: 1.5.8 - build: py312h344e357_0 + name: lzo + version: '2.10' + build: h93a5062_1001 + build_number: 1001 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py312h344e357_0.conda - sha256: 7cb94cf454c20cf25cf0c394e812ca7f86ceae47bb45f5b11518dd204f752cf0 - md5: 9167478ca4942d118d3b79f6149c758f - depends: - - fmt >=10.2.1,<11.0a0 - - libcxx >=16 - - libmamba 1.5.8 h90c426b_0 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 255134 - timestamp: 1711395612039 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + sha256: b68160b0a8ec374cea12de7afb954ca47419cdc300358232e19cec666d60b929 + md5: 915996063a7380c652f83609e970c2a7 + license: GPL-2.0-or-later + license_family: GPL2 + purls: [] + size: 131447 + timestamp: 1713516009610 - kind: conda - name: libmambapy - version: 1.5.8 - build: py312h66cf91f_0 + name: lzo + version: '2.10' + build: haf1e3a3_1000 + build_number: 1000 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 + sha256: c8a9401eff2efbbcc6da03d0066ee85d72402f7658c240e7968c64052a0d0493 + md5: 0b6bca372a95d6c602c7a922e928ce79 + license: GPL v2+ + license_family: GPL2 + purls: [] + size: 194278 + timestamp: 1597682686489 +- kind: conda + name: lzo + version: '2.10' + build: hcfcfb64_1001 + build_number: 1001 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py312h66cf91f_0.conda - sha256: 6e27057b03d816b7992b7fa10df62b95ddfae596aade74802e9b2ec09792ca57 - md5: f29a796cc77bd964b396144103dc0c13 + url: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda + sha256: 39e176b8cc8fe878d87594fae0504c649d1c2c6d5476dd7238237d19eb825751 + md5: 629f4f4e874cf096eb93a23240910cee depends: - - fmt >=10.2.1,<11.0a0 - - libmamba 1.5.8 h3f09ed1_0 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 634593 - timestamp: 1711396223183 -- kind: conda - name: libmambapy - version: 1.5.8 - build: py312h67f5953_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py312h67f5953_0.conda - sha256: cb3f1fe02ef2c6bb39129e43af7dfcf1a3d98a4d4c21e5eed5a1f3ef1c0557fb - md5: c7d0f9c38601b87f6ebb0ba00fb02e5c - depends: - - fmt >=10.2.1,<11.0a0 - - libcxx >=16 - - libmamba 1.5.8 ha449628_0 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 272088 - timestamp: 1711395982732 + license: GPL-2.0-or-later + license_family: GPL2 + purls: [] + size: 142771 + timestamp: 1713516312465 - kind: conda - name: libmambapy - version: 1.5.8 - build: py312hd9e9ff6_0 + name: lzo + version: '2.10' + build: hd590300_1001 + build_number: 1001 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py312hd9e9ff6_0.conda - sha256: 429c8fd6f7be1040a52cedaa8cd7aa02a42ccc8a27baa0a4394516401e9d7b28 - md5: ab74748421323fd59d9fda55e45b979e + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 + md5: ec7398d21e2651e0dcb0044d03b9a339 depends: - - fmt >=10.2.1,<11.0a0 - libgcc-ng >=12 - - libmamba 1.5.8 had39da4_0 - - libstdcxx-ng >=12 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml-cpp >=0.8.0,<0.9.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + purls: [] + size: 171416 + timestamp: 1713515738503 +- kind: conda + name: lzo + version: '2.10' + build: he774522_1000 + build_number: 1000 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-he774522_1000.tar.bz2 + sha256: ff064e34d3cad829f1e31f2d26125b61d20ba8d3771f8f5337069027b8e3fab4 + md5: d5cf4b7eaa52316f135eed9e8548ad57 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: GPL v2+ + license_family: GPL2 + purls: [] + size: 170192 + timestamp: 1597682500084 +- kind: conda + name: m2-conda-epoch + version: '20230914' + build: 0_x86_64 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda + sha256: 5514efb349d06a8dfe7966b64a3076efad461934e35da9e84c0693a36097fe77 + md5: e2a0da44f380c05e8d1f897ed3ec3ce0 + constrains: + - msys2-conda-epoch <0.0a0 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 306497 - timestamp: 1711395345839 + purls: [] + size: 6961 + timestamp: 1696161055254 - kind: conda - name: libnghttp2 - version: 1.58.0 - build: h47da74e_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda - sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb - md5: 700ac6ea6d53d5510591c4344d5c989a + name: m2-msys2-runtime + version: 3.4.9.1 + build: hd8ed1ab_4 + build_number: 4 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/m2-msys2-runtime-3.4.9.1-hd8ed1ab_4.conda + sha256: e505bf056171089c761b600d21dee062ad1c962b892ca8a7bc852211e3fd3273 + md5: 77d17c947f9014b2b97a267c5e95cbf2 depends: - - c-ares >=1.23.0,<2.0a0 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT + - m2-conda-epoch 20230914 *_x86_64 + - m2-conda-epoch 20230914.* + license: GPL purls: [] - size: 631936 - timestamp: 1702130036271 + size: 1918370 + timestamp: 1719980096293 - kind: conda - name: libnghttp2 - version: 1.58.0 - build: h64cf6d3_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda - sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380 - md5: faecc55c2a8155d9ff1c0ff9a0fef64f + name: m2-patch + version: 2.7.6.2 + build: hd8ed1ab_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_0.conda + sha256: d95f9aba12dfd4bc230720eb0edfc464e944ee372bd00cd493a3d94e42236521 + md5: 1fd9c276420a26528f82bc31d1f0764d depends: - - __osx >=10.9 - - c-ares >=1.23.0,<2.0a0 - - libcxx >=16.0.6 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT + - m2-conda-epoch 20230914 *_x86_64 + - m2-conda-epoch 20230914.* + license: GPL purls: [] - size: 599736 - timestamp: 1702130398536 + size: 131871 + timestamp: 1702359665130 - kind: conda - name: libnghttp2 - version: 1.58.0 - build: ha4dd798_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda - sha256: fc97aaaf0c6d0f508be313d86c2705b490998d382560df24be918b8e977802cd - md5: 1813e066bfcef82de579a0be8a766df4 + name: m2-patch + version: 2.7.6.2 + build: hd8ed1ab_4 + build_number: 4 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_4.conda + sha256: c53d091882a43cfc49f74be7c3d74d41856eac9a2cd62424d31c78b3ae5d313f + md5: ace92cb3c819c9baa7f90a9e58435ba8 depends: - - __osx >=10.9 - - c-ares >=1.23.0,<2.0a0 - - libcxx >=16.0.6 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT + - m2-conda-epoch 20230914 *_x86_64 + - m2-conda-epoch 20230914.* + - m2-msys2-runtime + license: GPL purls: [] - size: 565451 - timestamp: 1702130473930 + size: 132160 + timestamp: 1719980487208 - kind: conda - name: libnsl - version: 2.0.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 + name: m2w64-gcc-libgfortran + version: 5.3.0 + build: '6' + build_number: 6 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 + md5: 066552ac6b907ec6d72c0ddab29050dc depends: - - libgcc-ng >=12 - license: LGPL-2.1-only - license_family: GPL - size: 33408 - timestamp: 1697359010159 -- kind: conda - name: libsodium - version: 1.0.18 - build: h27ca646_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 - sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc - md5: 90859688dbca4735b74c02af14c4c793 - license: ISC - purls: [] - size: 324912 - timestamp: 1605135878892 + - m2w64-gcc-libs-core + - msys2-conda-epoch ==20160418 + license: GPL, LGPL, FDL, custom + size: 350687 + timestamp: 1608163451316 - kind: conda - name: libsodium - version: 1.0.18 - build: h36c2ea0_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 - sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130 - md5: c3788462a6fbddafdb413a9f9053e58d + name: m2w64-gcc-libs + version: 5.3.0 + build: '7' + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa + md5: fe759119b8b3bfa720b8762c6fdc35de depends: - - libgcc-ng >=7.5.0 - license: ISC - purls: [] - size: 374999 - timestamp: 1605135674116 + - m2w64-gcc-libgfortran + - m2w64-gcc-libs-core + - m2w64-gmp + - m2w64-libwinpthread-git + - msys2-conda-epoch ==20160418 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 532390 + timestamp: 1608163512830 - kind: conda - name: libsodium - version: 1.0.18 - build: hbcb3906_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 - sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660 - md5: 24632c09ed931af617fe6d5292919cab - license: ISC - purls: [] - size: 528765 - timestamp: 1605135849110 + name: m2w64-gcc-libs-core + version: 5.3.0 + build: '7' + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 + md5: 4289d80fb4d272f1f3b56cfe87ac90bd + depends: + - m2w64-gmp + - m2w64-libwinpthread-git + - msys2-conda-epoch ==20160418 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 219240 + timestamp: 1608163481341 - kind: conda - name: libsolv - version: 0.7.28 - build: h1059232_2 + name: m2w64-gmp + version: 6.1.0 + build: '2' build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.28-h1059232_2.conda - sha256: fd83e17e0f71cba0eeecffd6dd7bb0b0b39ac5c5b456b425c1d92f860151ff68 - md5: 00e4d252cbbeb894f15d01a1545aa876 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 + md5: 53a1c73e1e3d185516d7e3af177596d9 depends: - - libcxx >=16 - - libzlib >=1.2.13,<1.3.0a0 + - msys2-conda-epoch ==20160418 + license: LGPL3 + size: 743501 + timestamp: 1608163782057 +- kind: conda + name: m2w64-libwinpthread-git + version: 5.0.0.4634.697f757 + build: '2' + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 + md5: 774130a326dee16f1ceb05cc687ee4f0 + depends: + - msys2-conda-epoch ==20160418 + license: MIT, BSD + size: 31928 + timestamp: 1608166099896 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py310h2372a71_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py310h2372a71_0.conda + sha256: 3c18347adf1d091ee9248612308a6bef79038f80b626ef67f58cd0e8d25c65b8 + md5: f6703fa0214a00bf49d1bef6dc7672d0 + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 386817 - timestamp: 1711553518981 + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 24493 + timestamp: 1706900070478 - kind: conda - name: libsolv - version: 0.7.28 - build: h12be248_2 - build_number: 2 + name: markupsafe + version: 2.1.5 + build: py310h8d17308_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.28-h12be248_2.conda - sha256: 622e1c86bed9b02beec3a6941fe5ecc8c12b3a53bdb14ceb8fe49d7111faaf28 - md5: f2c5e63535585215c1caebff2c31c28c + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py310h8d17308_0.conda + sha256: 2fe1bc52085b4b4f63e073803f8cce3da95b6eaaa182abee11c0a34b484f99dc + md5: eceba0306d8619bd34a650e673d3e6c3 depends: - - libzlib >=1.2.13,<1.3.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 428198 - timestamp: 1711553615565 + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26862 + timestamp: 1706900665420 - kind: conda - name: libsolv - version: 0.7.28 - build: h2d185b6_2 - build_number: 2 + name: markupsafe + version: 2.1.5 + build: py310hb372a2b_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.28-h2d185b6_2.conda - sha256: 02e2873fd21bdb80a4ce4ff063a242d3991e6a4fbae50cb51114a726b26b6ed1 - md5: bb6893e88ce3fdd5dca9a50890cfaf63 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py310hb372a2b_0.conda + sha256: b4a3bdb4053bb990296cda261de6d1b095a2e006bf91c8b601019462dc43d7d8 + md5: fc49c4222ce625c835a5e3ce1fbfc503 depends: - - libcxx >=16 - - libzlib >=1.2.13,<1.3.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 416267 - timestamp: 1711553618004 + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 23106 + timestamp: 1706900206202 - kind: conda - name: libsolv - version: 0.7.28 - build: hfc55251_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.28-hfc55251_2.conda - sha256: f21f2653a0a73bfcdfeecbeb2198b5ebd3f0c9f541fe0044e995bf43df3096d2 - md5: 535bafe1ed0a5bdd3f4c125ca05d378c + name: markupsafe + version: 2.1.5 + build: py310hd125d64_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py310hd125d64_0.conda + sha256: 75a43d7901fadee332b2175c71ba8df0e57ac0d0b2a7c52a10ad0d681cf1dc5a + md5: 29a6f644679ed1e2b94fc20c7e3dcc2d depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 468273 - timestamp: 1711553127824 + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 23919 + timestamp: 1706900392293 - kind: conda - name: libsqlite - version: 3.45.3 - build: h091b4b1_0 + name: markupsafe + version: 2.1.5 + build: py311h05b510d_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.3-h091b4b1_0.conda - sha256: 4337f466eb55bbdc74e168b52ec8c38f598e3664244ec7a2536009036e2066cc - md5: c8c1186c7f3351f6ffddb97b1f54fc58 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py311h05b510d_0.conda + sha256: 3f2127bd8788dc4b7c3d6d65ae4b7d2f8c7d02a246fc17b819390edeca53fd93 + md5: a27177455a9d29f4ac9d687a489e5d52 depends: - - libzlib >=1.2.13,<1.3.0a0 - license: Unlicense - purls: [] - size: 824794 - timestamp: 1713367748819 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26578 + timestamp: 1706900556332 - kind: conda - name: libsqlite - version: 3.45.3 - build: h2797004_0 + name: markupsafe + version: 2.1.5 + build: py311h459d7ec_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda - sha256: e2273d6860eadcf714a759ffb6dc24a69cfd01f2a0ea9d6c20f86049b9334e0c - md5: b3316cbe90249da4f8e84cd66e1cc55b + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda + sha256: 14912e557a6576e03f65991be89e9d289c6e301921b6ecfb4e7186ba974f453d + md5: a322b4185121935c871d201ae00ac143 depends: - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: Unlicense - purls: [] - size: 859858 - timestamp: 1713367435849 -- kind: conda - name: libsqlite - version: 3.45.3 - build: h92b6c6a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda - sha256: 4d44b68fb29dcbc2216a8cae0b274b02ef9b4ae05d1d0f785362ed30b91c9b52 - md5: 68e462226209f35182ef66eda0f794ff - depends: - - libzlib >=1.2.13,<1.3.0a0 - license: Unlicense - purls: [] - size: 902546 - timestamp: 1713367776445 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 27502 + timestamp: 1706900084436 - kind: conda - name: libsqlite - version: 3.45.3 - build: hcfcfb64_0 + name: markupsafe + version: 2.1.5 + build: py311ha68e1ae_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda - sha256: 06ec75faa51d7ec6d5db98889e869b579a9df19d7d3d9baff8359627da4a3b7e - md5: 73f5dc8e2d55d9a1e14b11f49c3b4a28 + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py311ha68e1ae_0.conda + sha256: c629f79fe78b5df7f08daa6b7f125f7a67f789bf734949c6d68aa063d7296208 + md5: 07da1326e2837e055ef6f44ef3334b0a depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: Unlicense - purls: [] - size: 870518 - timestamp: 1713367888406 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 30011 + timestamp: 1706900632904 - kind: conda - name: libsqlite - version: 3.46.0 - build: h1b8f9f3_0 + name: markupsafe + version: 2.1.5 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py311he705e18_0.conda + sha256: 83a2b764a4946a04e693a4dd8fe5a35bf093a378da9ce18bf0689cd5dcb3c3fe + md5: 75abe7e2e3a0874a49d7c175115f443f + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26155 + timestamp: 1706900211496 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py312h41838bb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda + sha256: 8dc8f31f78d00713300da000b6ebaa1943a17c112f267de310d5c3d82950079c + md5: c4a9c25c09cef3901789ca818d9beb10 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe + size: 25742 + timestamp: 1706900456837 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py312h41838bb_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda - sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 - md5: 5dadfbc1a567fe6e475df4ce3148be09 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda + sha256: 8dc8f31f78d00713300da000b6ebaa1943a17c112f267de310d5c3d82950079c + md5: c4a9c25c09cef3901789ca818d9beb10 depends: - - __osx >=10.13 - - libzlib >=1.2.13,<2.0a0 - license: Unlicense - size: 908643 - timestamp: 1718050720117 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 25742 + timestamp: 1706900456837 - kind: conda - name: libsqlite - version: 3.46.0 - build: h2466b09_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda - sha256: 662bd7e0d63c5b8c31cca19b91649e798319b93568a2ba8d1375efb91eeb251b - md5: 951b0a3a463932e17414cd9f047fa03d + name: markupsafe + version: 2.1.5 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda + sha256: 273d8efd6c089c534ccbede566394c0ac1e265bfe5d89fe76e80332f3d75a636 + md5: 6ff0b9582da2d4a74a1f9ae1f9ce2af6 depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Unlicense - size: 876677 - timestamp: 1718051113874 + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe + size: 26685 + timestamp: 1706900070330 - kind: conda - name: libsqlite - version: 3.46.0 - build: hde9e2c9_0 + name: markupsafe + version: 2.1.5 + build: py312h98912ed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda - sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 - md5: 18aa975d2094c34aef978060ae7da7d8 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda + sha256: 273d8efd6c089c534ccbede566394c0ac1e265bfe5d89fe76e80332f3d75a636 + md5: 6ff0b9582da2d4a74a1f9ae1f9ce2af6 depends: - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0a0 - license: Unlicense - size: 865346 - timestamp: 1718050628718 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26685 + timestamp: 1706900070330 - kind: conda - name: libsqlite - version: 3.46.0 - build: hfb93653_0 + name: markupsafe + version: 2.1.5 + build: py312he37b823_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda - sha256: 73048f9cb8647d3d3bfe6021c0b7d663e12cffbe9b4f31bd081e713b0a9ad8f9 - md5: 12300188028c9bc02da965128b91b517 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py312he37b823_0.conda + sha256: 61480b725490f68856dd14e646f51ffc34f77f2c985bd33e3b77c04b2856d97d + md5: ba3a8f8cf8bbdb81394275b1e1d271da depends: - - __osx >=11.0 - - libzlib >=1.2.13,<2.0a0 - license: Unlicense - size: 830198 - timestamp: 1718050644825 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe + size: 26382 + timestamp: 1706900495057 - kind: conda - name: libssh2 - version: 1.11.0 - build: h0841786_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d - md5: 1f5a58e686b13bcfde88b93f547d23fe + name: markupsafe + version: 2.1.5 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py312he37b823_0.conda + sha256: 61480b725490f68856dd14e646f51ffc34f77f2c985bd33e3b77c04b2856d97d + md5: ba3a8f8cf8bbdb81394275b1e1d271da depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 271133 - timestamp: 1685837707056 + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26382 + timestamp: 1706900495057 - kind: conda - name: libssh2 - version: 1.11.0 - build: h7a5bd25_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 - md5: 029f7dc931a3b626b94823bc77830b01 + name: markupsafe + version: 2.1.5 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda + sha256: f8690a3c87e2e96cebd434a829bb95cac43afe6c439530b336dc3452fe4ce4af + md5: 4950a739b19edaac1ed29ca9474e49ac depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 255610 - timestamp: 1685837894256 + purls: + - pkg:pypi/markupsafe + size: 29060 + timestamp: 1706900374745 - kind: conda - name: libssh2 - version: 1.11.0 - build: h7dfc565_0 + name: markupsafe + version: 2.1.5 + build: py312he70551f_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec - md5: dc262d03aae04fe26825062879141a41 + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda + sha256: f8690a3c87e2e96cebd434a829bb95cac43afe6c439530b336dc3452fe4ce4af + md5: 4950a739b19edaac1ed29ca9474e49ac depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 + constrains: + - jinja2 >=3.0.0 license: BSD-3-Clause license_family: BSD - purls: [] - size: 266806 - timestamp: 1685838242099 + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 29060 + timestamp: 1706900374745 +- kind: conda + name: menuinst + version: 2.0.2 + build: py312h53d5487_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.0.2-py312h53d5487_0.conda + sha256: 3df90e41d30fab0ce73a376f2a342dea65c1ee7bbbeb31ebe8d76910593b0c5f + md5: ca8ca67bb6733fb295abd3c4e749ae13 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst + size: 125911 + timestamp: 1705068951324 +- kind: conda + name: menuinst + version: 2.0.2 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.0.2-py312h7900ff3_0.conda + sha256: 39f942fb43dcd553e54f27ec55e0a2155b6ceae9f9528be1e7c2f9a9758b05e0 + md5: acb03947d606ff797a036d31723490fc + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst + size: 158511 + timestamp: 1705068403609 +- kind: conda + name: menuinst + version: 2.0.2 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.0.2-py312h81bd7bf_0.conda + sha256: e9f2fec42e3a6c0c46e2576b20e107f2f6b6cf26d69d7b9e563822df70eb4b0a + md5: 802a33b3ca10e299f2fc9d6783140cc7 + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst + size: 159866 + timestamp: 1705068748439 +- kind: conda + name: menuinst + version: 2.0.2 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.0.2-py312hb401068_0.conda + sha256: 90003bbb3430a32dbdc8f4f3be5ff9b824cf933782ab493364850d4e4677615a + md5: 40fcba89895965e39ea94e53d5588b8d + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst + size: 159905 + timestamp: 1705068695868 - kind: conda - name: libssh2 - version: 1.11.0 - build: hd019ec5_0 + name: menuinst + version: 2.1.1 + build: py310h2ec42d9_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda - sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 - md5: ca3a72efba692c59a90d4b9fc0dfe774 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py310h2ec42d9_0.conda + sha256: 26626f94b81cb76ea0dea5148d2563183ced0ef68c72af4977ef40f757581ba6 + md5: 0fc7ed313b14b0f0c46a8abd5a9beb5a depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 259556 - timestamp: 1685837820566 -- kind: conda - name: libstdcxx-ng - version: 13.2.0 - build: h7e041cc_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 - md5: f6f6600d18a4047b54f803cf708b868a - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - purls: [] - size: 3834139 - timestamp: 1706819252496 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137927 + timestamp: 1718088489648 - kind: conda - name: libstdcxx-ng - version: 14.1.0 - build: hc0a3c3a_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda - sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 - md5: 1cb187a157136398ddbaae90713e2498 + name: menuinst + version: 2.1.1 + build: py310h9e98ed7_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py310h9e98ed7_0.conda + sha256: 15abe4164f514265bac1919f49109bd05c656665be97e73cd7925af7f163a70e + md5: 66799b1c11a45beffaaa31f172ebe1cd depends: - - libgcc-ng 14.1.0 h77fa898_0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 3881307 - timestamp: 1719538923443 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 105525 + timestamp: 1718089003399 - kind: conda - name: libuuid - version: 2.38.1 - build: h0b41bf4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 - md5: 40b61aab5c7ba9ff276c41cfffe6b80b + name: menuinst + version: 2.1.1 + build: py310hbe9552e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py310hbe9552e_0.conda + sha256: a82d3a0ad83f928477156cef1a6a331ee25212f1b3a70db7e27344784e46c847 + md5: 3ffd3c12bf0540e68bee749cfb110222 depends: - - libgcc-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 33601 - timestamp: 1680112270483 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 139160 + timestamp: 1718088473840 - kind: conda - name: libxcrypt - version: 4.4.36 - build: hd590300_1 - build_number: 1 + name: menuinst + version: 2.1.1 + build: py310hff52083_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c - md5: 5aa797f8787fe7a17d1b0821485b5adc + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py310hff52083_0.conda + sha256: e1ba15bc85fa052000e64fe33d4a7a74046fdf5eda586b573b7ffc4f45c86650 + md5: eb8c7ebd01b568b27f0faf6952c40e23 depends: - - libgcc-ng >=12 - license: LGPL-2.1-or-later - size: 100393 - timestamp: 1702724383534 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137231 + timestamp: 1718088410443 - kind: conda - name: libxml2 - version: 2.12.6 - build: h0d0cfa8_2 - build_number: 2 + name: menuinst + version: 2.1.1 + build: py311h267d04e_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.6-h0d0cfa8_2.conda - sha256: a5c10af641d6accf3effb3c3a3c594d931bb374f9e3e796719f3ecf769cfb0fc - md5: 27577d561de7659487b062c363d8a527 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py311h267d04e_0.conda + sha256: 901c4276a0f5d4200d6d202d3760344eb591309029eacd6820322b96a9703562 + md5: c10d5b343167e508451f7f1cfad002f3 depends: - - icu >=73.2,<74.0a0 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - xz >=5.2.6,<6.0a0 - license: MIT - license_family: MIT - purls: [] - size: 588638 - timestamp: 1713314780561 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 168627 + timestamp: 1718088646407 - kind: conda - name: libxml2 - version: 2.12.6 - build: h232c23b_2 - build_number: 2 + name: menuinst + version: 2.1.1 + build: py311h38be061_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_2.conda - sha256: 0fd41df7211aae04f492c8550ce10238e8cfa8b1abebc2215a983c5e66d284ea - md5: 9a3a42df8a95f65334dfc7b80da1195d + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py311h38be061_0.conda + sha256: c54c9f073739f65d7b00a9a0758b8ca117fba74e69b195287dc533e91468cc23 + md5: a0662a939f35a43684e7fee4e350daef depends: - - icu >=73.2,<74.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - xz >=5.2.6,<6.0a0 - license: MIT - license_family: MIT - purls: [] - size: 704938 - timestamp: 1713314718258 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 167161 + timestamp: 1718088373642 - kind: conda - name: libxml2 - version: 2.12.6 - build: hc0ae0f7_2 - build_number: 2 + name: menuinst + version: 2.1.1 + build: py311h6eed73b_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_2.conda - sha256: 2598a525b1769338f96c3d4badad7d8b95c9ddcea86db3f9479a274803190e5c - md5: 50b997370584f2c83ca0c38e9028eab9 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py311h6eed73b_0.conda + sha256: faba09afa2cafd40f7287b6b85012fa7e97ab4dd2e6fb3994f0df3cf81fa136d + md5: 3116e2fc44145b7565ab98483739b07d depends: - - icu >=73.2,<74.0a0 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - xz >=5.2.6,<6.0a0 - license: MIT - license_family: MIT - purls: [] - size: 619622 - timestamp: 1713314870641 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 168365 + timestamp: 1718088507701 - kind: conda - name: libxml2 - version: 2.12.6 - build: hc3477c8_2 - build_number: 2 + name: menuinst + version: 2.1.1 + build: py311hda3d55a_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.6-hc3477c8_2.conda - sha256: 9a717cad6da52c84cfc490f7d52203c4cbc9e0e0389941fc6523273be5ccd17a - md5: ac7af7a949db01dae61ddc48f4a93d79 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py311hda3d55a_0.conda + sha256: 8242fb7cf33d000dba5b5f4e82547c786baf56c1ff494ede8afc4936a7795d39 + md5: d8e7f032713141a88ade438a060e20d9 depends: - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - purls: [] - size: 1589904 - timestamp: 1713315104803 -- kind: conda - name: libzlib - version: 1.2.13 - build: h53f4e23_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda - sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a - md5: 1a47f5236db2e06a320ffa0392f81bd8 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - purls: [] - size: 48102 - timestamp: 1686575426584 -- kind: conda - name: libzlib - version: 1.2.13 - build: h8a1eda9_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 - md5: 4a3ad23f6e16f99c04e166767193d700 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - purls: [] - size: 59404 - timestamp: 1686575566695 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 135161 + timestamp: 1718088712031 - kind: conda - name: libzlib - version: 1.2.13 - build: hcfcfb64_5 - build_number: 5 + name: menuinst + version: 2.1.1 + build: py312h275cf98_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda - sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 - md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py312h275cf98_0.conda + sha256: e4279a51b4f4c17f4546055ed903e3933f459c8ba46eeee90f99b0927bfdede3 + md5: 8638eb64ec9eea0094b8898b4e5dcf68 depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - purls: [] - size: 55800 - timestamp: 1686575452215 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 130266 + timestamp: 1718088961433 - kind: conda - name: libzlib - version: 1.2.13 - build: hd590300_5 - build_number: 5 + name: menuinst + version: 2.1.1 + build: py312h7900ff3_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 - md5: f36c115f1ee199da648e0597ec2047ad + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py312h7900ff3_0.conda + sha256: 7b224e817e361277f1e128ed7d604f5133e6e549f1ed1d0c33e74b60e1bc2603 + md5: 697641b112727643cd03ca1a1d339631 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 163274 + timestamp: 1718088368588 +- kind: conda + name: menuinst + version: 2.1.1 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py312h81bd7bf_0.conda + sha256: 624dccbf32ba5964c74596b538a6263c090b19a7bf0f41ad3f7a6c1ab2b42009 + md5: 0b62c0f6e8efc0da273ff37be2c86c29 + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 164147 + timestamp: 1718088645398 +- kind: conda + name: menuinst + version: 2.1.1 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py312hb401068_0.conda + sha256: 0b569079269c7ed22043386d6d116724259c757d14e6c27418231b8679888b58 + md5: 826e070b70c3ae16258e72d8f8f42ed2 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 163525 + timestamp: 1718088475305 +- kind: conda + name: more-itertools + version: 10.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda + sha256: 9e49e9484ff279453f0b55323a3f0c7cb97440c74f69eecda1f4ad29fae5cd3c + md5: d5c98e9706fdc5328d49a9bf2ce5fb42 + depends: + - python >=3.8 + license: MIT + license_family: MIT + purls: + - pkg:pypi/more-itertools + size: 54469 + timestamp: 1704738585811 +- kind: conda + name: more-itertools + version: 10.3.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + sha256: 9c485cc52dfd646ea584e9055c1bbaac8f27687d806c1ef00f299ec2e642ce04 + md5: a57fb23d0260a962a67c7d990ec1c812 depends: - - libgcc-ng >=12 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - purls: [] - size: 61588 - timestamp: 1686575217516 + - python >=3.8 + license: MIT + license_family: MIT + purls: + - pkg:pypi/more-itertools?source=conda-forge-mapping + size: 56261 + timestamp: 1718048569497 - kind: conda - name: libzlib - version: 1.3.1 - build: h2466b09_1 + name: msys2-conda-epoch + version: '20160418' + build: '1' build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda - sha256: b13846a54a15243e15f96fec06b526d8155adc6a1ac2b6ed47a88f6a71a94b68 - md5: d4483ca8afc57ddf1f6dded53b36c17f + url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 + md5: b0309b72560df66f71a9d5e34a5efdfa + size: 3227 + timestamp: 1608166968312 +- kind: conda + name: mypy + version: 1.10.1 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/mypy-1.10.1-py312h4389bb4_0.conda + sha256: 00e7a8f7ac90709b9195eb5655a55f53b8a0297a563201d75b9406936ed69b0b + md5: 94e70ace716472016f5a717d4ab7531f depends: + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 56186 - timestamp: 1716874730539 + license: MIT + license_family: MIT + size: 8414692 + timestamp: 1719301939732 - kind: conda - name: libzlib - version: 1.3.1 - build: h4ab18f5_1 - build_number: 1 + name: mypy + version: 1.10.1 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.10.1-py312h7e5086c_0.conda + sha256: d07f260bde42e963558bedbb5d8607c18a16f71a0dff45fb7cecc85bfcd97c6f + md5: 0aea347a79c70d8134ebd2efc897dda0 + depends: + - __osx >=11.0 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 9622339 + timestamp: 1719301964191 +- kind: conda + name: mypy + version: 1.10.1 + build: py312h9a8786e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda - sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d - md5: 57d7dc60e9325e3de37ff8dffd18e814 + url: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.10.1-py312h9a8786e_0.conda + sha256: d65af401f7368680f164990f110d084ee5139cd01a62189c76a88ab87ea50285 + md5: 35504aad41d76808fa379bee8cd6882e depends: - libgcc-ng >=12 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 61574 - timestamp: 1716874187109 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 16471696 + timestamp: 1719302037228 - kind: conda - name: libzlib - version: 1.3.1 - build: h87427d6_1 - build_number: 1 + name: mypy + version: 1.10.1 + build: py312hbd25219_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda - sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d - md5: b7575b5aa92108dcc9aaab0f05f2dbce + url: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.10.1-py312hbd25219_0.conda + sha256: 353e75ea35e3c44294787f318e710379f7f0618962a918af90e91597a2710dea + md5: 38d751fa3fd6e793f11903f816ee1cfe depends: - __osx >=10.13 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 57372 - timestamp: 1716874211519 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 10370551 + timestamp: 1719302314714 - kind: conda - name: libzlib - version: 1.3.1 - build: hfb2fe0b_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda - sha256: c34365dd37b0eab27b9693af32a1f7f284955517c2cc91f1b88a7ef4738ff03e - md5: 636077128927cf79fd933276dc3aed47 + name: mypy_extensions + version: 1.0.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 depends: - - __osx >=11.0 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 46921 - timestamp: 1716874262512 + - python >=3.5 + license: MIT + license_family: MIT + size: 10492 + timestamp: 1675543414256 - kind: conda - name: lz4-c - version: 1.9.4 - build: hb7217d7_0 + name: ncurses + version: 6.4.20240210 + build: h078ce10_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - sha256: fc343b8c82efe40819b986e29ba748366514e5ab94a1e1138df195af5f45fa24 - md5: 45505bec548634f7d05e02fb25262cb9 - depends: - - libcxx >=14.0.6 - license: BSD-2-Clause - license_family: BSD + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4.20240210-h078ce10_0.conda + sha256: 06f0905791575e2cd3aa961493c56e490b3d82ad9eb49f1c332bd338b0216911 + md5: 616ae8691e6608527d0071e6766dcb81 + license: X11 AND BSD-3-Clause purls: [] - size: 141188 - timestamp: 1674727268278 + size: 820249 + timestamp: 1710866874348 - kind: conda - name: lz4-c - version: 1.9.4 - build: hcb278e6_0 + name: ncurses + version: 6.4.20240210 + build: h59595ed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f - md5: 318b08df404f9c9be5712aaa5a6f0bb0 + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: 97da8860a0da5413c7c98a3b3838a645 depends: - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD + license: X11 AND BSD-3-Clause purls: [] - size: 143402 - timestamp: 1674727076728 + size: 895669 + timestamp: 1710866638986 - kind: conda - name: lz4-c - version: 1.9.4 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda - sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab - md5: e34720eb20a33fc3bfb8451dd837ab7a - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vs2015_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD + name: ncurses + version: 6.4.20240210 + build: h73e2aa4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 50f28c512e9ad78589e3eab34833f762 + license: X11 AND BSD-3-Clause purls: [] - size: 134235 - timestamp: 1674728465431 + size: 823010 + timestamp: 1710866856626 - kind: conda - name: lz4-c - version: 1.9.4 - build: hf0c8a7f_0 + name: ncurses + version: '6.5' + build: h5846eda_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - sha256: 39aa0c01696e4e202bf5e337413de09dfeec061d89acd5f28e9968b4e93c3f48 - md5: aa04f7143228308662696ac24023f991 + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 + md5: 02a888433d165c99bf09784a7b14d900 + license: X11 AND BSD-3-Clause + purls: [] + size: 823601 + timestamp: 1715195267791 +- kind: conda + name: ncurses + version: '6.5' + build: h5846eda_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 + md5: 02a888433d165c99bf09784a7b14d900 + license: X11 AND BSD-3-Clause + size: 823601 + timestamp: 1715195267791 +- kind: conda + name: ncurses + version: '6.5' + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 + md5: fcea371545eda051b6deafb24889fc69 depends: - - libcxx >=14.0.6 - license: BSD-2-Clause - license_family: BSD + - libgcc-ng >=12 + license: X11 AND BSD-3-Clause purls: [] - size: 156415 - timestamp: 1674727335352 + size: 887465 + timestamp: 1715194722503 - kind: conda - name: lzo - version: '2.10' - build: h516909a_1000 - build_number: 1000 + name: ncurses + version: '6.5' + build: h59595ed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 - sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 - md5: bb14fcb13341b81d5eb386423b9d2bac + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 + md5: fcea371545eda051b6deafb24889fc69 depends: - - libgcc-ng >=7.5.0 - license: GPL v2+ - license_family: GPL2 - purls: [] - size: 321113 - timestamp: 1597681972321 + - libgcc-ng >=12 + license: X11 AND BSD-3-Clause + size: 887465 + timestamp: 1715194722503 - kind: conda - name: lzo - version: '2.10' - build: h642e427_1000 - build_number: 1000 + name: ncurses + version: '6.5' + build: hb89a1cb_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h642e427_1000.tar.bz2 - sha256: ae029e5c16893071d29a11ddbfdbdb01b2ebf10d1785f54370934439d8b71817 - md5: ddab5f96f5573a9bd5e24f9994fd6ec9 - license: GPL v2+ - license_family: GPL2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + sha256: 87d7cf716d9d930dab682cb57b3b8d3a61940b47d6703f3529a155c938a6990a + md5: b13ad5724ac9ae98b6b4fd87e4500ba4 + license: X11 AND BSD-3-Clause purls: [] - size: 157236 - timestamp: 1597683217947 + size: 795131 + timestamp: 1715194898402 - kind: conda - name: lzo - version: '2.10' - build: haf1e3a3_1000 - build_number: 1000 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 - sha256: c8a9401eff2efbbcc6da03d0066ee85d72402f7658c240e7968c64052a0d0493 - md5: 0b6bca372a95d6c602c7a922e928ce79 - license: GPL v2+ - license_family: GPL2 - purls: [] - size: 194278 - timestamp: 1597682686489 + name: ncurses + version: '6.5' + build: hb89a1cb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + sha256: 87d7cf716d9d930dab682cb57b3b8d3a61940b47d6703f3529a155c938a6990a + md5: b13ad5724ac9ae98b6b4fd87e4500ba4 + license: X11 AND BSD-3-Clause + size: 795131 + timestamp: 1715194898402 - kind: conda - name: lzo - version: '2.10' - build: he774522_1000 - build_number: 1000 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-he774522_1000.tar.bz2 - sha256: ff064e34d3cad829f1e31f2d26125b61d20ba8d3771f8f5337069027b8e3fab4 - md5: d5cf4b7eaa52316f135eed9e8548ad57 + name: nodeenv + version: 1.9.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda + sha256: 85ee07342ab055dc081f3de8292c5e7195e43e046db9c5750f242f928f6bb8f2 + md5: dfe0528d0f1c16c1f7c528ea5536ab30 depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: GPL v2+ - license_family: GPL2 - purls: [] - size: 170192 - timestamp: 1597682500084 -- kind: conda - name: m2-conda-epoch - version: '20230914' - build: 0_x86_64 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda - sha256: 5514efb349d06a8dfe7966b64a3076efad461934e35da9e84c0693a36097fe77 - md5: e2a0da44f380c05e8d1f897ed3ec3ce0 - constrains: - - msys2-conda-epoch <0.0a0 + - python 2.7|>=3.7 + - setuptools license: BSD-3-Clause license_family: BSD - purls: [] - size: 6961 - timestamp: 1696161055254 + size: 34489 + timestamp: 1717585382642 - kind: conda - name: m2-patch - version: 2.7.6.2 - build: hd8ed1ab_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_0.conda - sha256: d95f9aba12dfd4bc230720eb0edfc464e944ee372bd00cd493a3d94e42236521 - md5: 1fd9c276420a26528f82bc31d1f0764d + name: openssl + version: 3.2.1 + build: h0d3ecfb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_1.conda + sha256: 519dc941d7ab0ebf31a2878d85c2f444450e7c5f6f41c4d07252c6bb3417b78b + md5: eb580fb888d93d5d550c557323ac5cee depends: - - m2-conda-epoch 20230914 *_x86_64 - - m2-conda-epoch 20230914.* - license: GPL + - ca-certificates + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache purls: [] - size: 131871 - timestamp: 1702359665130 + size: 2855250 + timestamp: 1710793435903 - kind: conda - name: m2w64-gcc-libgfortran - version: 5.3.0 - build: '6' - build_number: 6 + name: openssl + version: 3.2.1 + build: hcfcfb64_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 - sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 - md5: 066552ac6b907ec6d72c0ddab29050dc + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_1.conda + sha256: 61ce4e11c3c26ed4e4d9b7e7e2483121a1741ad0f9c8db0a91a28b6e05182ce6 + md5: 958e0418e93e50c575bff70fbcaa12d8 depends: - - m2w64-gcc-libs-core - - msys2-conda-epoch ==20160418 - license: GPL, LGPL, FDL, custom - size: 350687 - timestamp: 1608163451316 + - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 8230112 + timestamp: 1710796158475 - kind: conda - name: m2w64-gcc-libs - version: 5.3.0 - build: '7' - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 - sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa - md5: fe759119b8b3bfa720b8762c6fdc35de + name: openssl + version: 3.2.1 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: 9d731343cff6ee2e5a25c4a091bf8e2a depends: - - m2w64-gcc-libgfortran - - m2w64-gcc-libs-core - - m2w64-gmp - - m2w64-libwinpthread-git - - msys2-conda-epoch ==20160418 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 532390 - timestamp: 1608163512830 + - ca-certificates + - libgcc-ng >=12 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 2865379 + timestamp: 1710793235846 - kind: conda - name: m2w64-gcc-libs-core - version: 5.3.0 - build: '7' - build_number: 7 + name: openssl + version: 3.2.1 + build: hd75f5a5_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: 570a6f04802df580be529f3a72d2bbf7 + depends: + - ca-certificates + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 2506344 + timestamp: 1710793930515 +- kind: conda + name: openssl + version: 3.3.1 + build: h2466b09_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 - md5: 4289d80fb4d272f1f3b56cfe87ac90bd + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_1.conda + sha256: e45ee071d45fcfaa59beb31def800cdb9d81b17bbb74c4a7e400102cb22ca35e + md5: aa36aca82d1ffd26bee88ac7dc9e1ee3 depends: - - m2w64-gmp - - m2w64-libwinpthread-git - - msys2-conda-epoch ==20160418 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 219240 - timestamp: 1608163481341 + - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 8355633 + timestamp: 1719366975403 - kind: conda - name: m2w64-gmp - version: 6.1.0 - build: '2' + name: openssl + version: 3.3.1 + build: h2466b09_2 build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 - md5: 53a1c73e1e3d185516d7e3af177596d9 + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_2.conda + sha256: d86c4fa31294ad9068717788197e97e5637e056c82745ffb6d0e88fd1fef1a9d + md5: 375dbc2a4d5a2e4c738703207e8e368b depends: - - msys2-conda-epoch ==20160418 - license: LGPL3 - size: 743501 - timestamp: 1608163782057 + - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 8385012 + timestamp: 1721197465883 - kind: conda - name: m2w64-libwinpthread-git - version: 5.0.0.4634.697f757 - build: '2' + name: openssl + version: 3.3.1 + build: h4ab18f5_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + depends: + - ca-certificates + - libgcc-ng >=12 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2896610 + timestamp: 1719363957188 +- kind: conda + name: openssl + version: 3.3.1 + build: h4bc722e_2 build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 - md5: 774130a326dee16f1ceb05cc687ee4f0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda + sha256: b294b3cc706ad1048cdb514f0db3da9f37ae3fcc0c53a7104083dd0918adb200 + md5: e1b454497f9f7c1147fdde4b53f1b512 depends: - - msys2-conda-epoch ==20160418 - license: MIT, BSD - size: 31928 - timestamp: 1608166099896 + - __glibc >=2.17,<3.0.a0 + - ca-certificates + - libgcc-ng >=12 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 2895213 + timestamp: 1721194688955 - kind: conda - name: markupsafe - version: 2.1.5 - build: py312h41838bb_0 + name: openssl + version: 3.3.1 + build: h87427d6_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda - sha256: 8dc8f31f78d00713300da000b6ebaa1943a17c112f267de310d5c3d82950079c - md5: c4a9c25c09cef3901789ca818d9beb10 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 + md5: d838ffe9ec3c6d971f110e04487466ff depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - __osx >=10.13 + - ca-certificates constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe - size: 25742 - timestamp: 1706900456837 + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2551950 + timestamp: 1719364820943 - kind: conda - name: markupsafe - version: 2.1.5 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda - sha256: 273d8efd6c089c534ccbede566394c0ac1e265bfe5d89fe76e80332f3d75a636 - md5: 6ff0b9582da2d4a74a1f9ae1f9ce2af6 + name: openssl + version: 3.3.1 + build: h87427d6_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda + sha256: 3cb0c05fbfd8cdb9b767396fc0e0af2d78eb4d68592855481254104330d4a4eb + md5: 3f3dbeedbee31e257866407d9dea1ff5 depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - __osx >=10.13 + - ca-certificates constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe - size: 26685 - timestamp: 1706900070330 + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 2552939 + timestamp: 1721194674491 - kind: conda - name: markupsafe - version: 2.1.5 - build: py312he37b823_0 + name: openssl + version: 3.3.1 + build: hfb2fe0b_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py312he37b823_0.conda - sha256: 61480b725490f68856dd14e646f51ffc34f77f2c985bd33e3b77c04b2856d97d - md5: ba3a8f8cf8bbdb81394275b1e1d271da + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_1.conda + sha256: 3ab411856c3bef88595473f0dd86e82de4f913f88319548acf262d5b1175b050 + md5: c665dec48e08311096823956642a501c depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 + - __osx >=11.0 + - ca-certificates constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe - size: 26382 - timestamp: 1706900495057 + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2897767 + timestamp: 1719363723462 - kind: conda - name: markupsafe - version: 2.1.5 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda - sha256: f8690a3c87e2e96cebd434a829bb95cac43afe6c439530b336dc3452fe4ce4af - md5: 4950a739b19edaac1ed29ca9474e49ac + name: openssl + version: 3.3.1 + build: hfb2fe0b_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_2.conda + sha256: dd7d988636f74473ebdfe15e05c5aabdb53a1d2a846c839d62289b0c37f81548 + md5: 9b551a504c1cc8f8b7b22c01814da8ba depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - __osx >=11.0 + - ca-certificates constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 2899682 + timestamp: 1721194599446 +- kind: conda + name: packaging + version: '24.0' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + sha256: a390182d74c31dfd713c16db888c92c277feeb6d1fe96ff9d9c105f9564be48a + md5: 248f521b64ce055e7feae3105e7abeb8 + depends: + - python >=3.8 + license: Apache-2.0 + license_family: APACHE purls: - - pkg:pypi/markupsafe - size: 29060 - timestamp: 1706900374745 + - pkg:pypi/packaging + size: 49832 + timestamp: 1710076089469 - kind: conda - name: menuinst - version: 2.0.2 - build: py312h53d5487_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.0.2-py312h53d5487_0.conda - sha256: 3df90e41d30fab0ce73a376f2a342dea65c1ee7bbbeb31ebe8d76910593b0c5f - md5: ca8ca67bb6733fb295abd3c4e749ae13 + name: packaging + version: '24.1' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + sha256: 36aca948219e2c9fdd6d80728bcc657519e02f06c2703d8db3446aec67f51d81 + md5: cbe1bb1f21567018ce595d9c2be0f0db depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause AND MIT + - python >=3.8 + license: Apache-2.0 + license_family: APACHE purls: - - pkg:pypi/menuinst - size: 125911 - timestamp: 1705068951324 + - pkg:pypi/packaging?source=conda-forge-mapping + size: 50290 + timestamp: 1718189540074 +- kind: conda + name: patch + version: 2.7.6 + build: h27ca646_1002 + build_number: 1002 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 + sha256: 45316f216976a35180e1973840de08013f075bc94a9a57ae9a9e4e52ea2224d4 + md5: 129d8d6f5a313a5c3e9ed39710d71147 + license: GPL-3.0-or-later + license_family: GPL + purls: [] + size: 130036 + timestamp: 1612446664446 +- kind: conda + name: patch + version: 2.7.6 + build: h7f98852_1002 + build_number: 1002 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 + sha256: fc30d1b643c35d82abd294cde6b34f7b9e952856c0386f4f069c3a2b7feb28dd + md5: 4c1bbbec45149a186b915c67d086ed3b + depends: + - libgcc-ng >=9.3.0 + license: GPL-3.0-or-later + license_family: GPL + purls: [] + size: 123495 + timestamp: 1612446599889 +- kind: conda + name: patch + version: 2.7.6 + build: hbcf498f_1002 + build_number: 1002 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 + sha256: 786044706396b82f4017e0c9d19b50fad5043de120c164b4f24f9b727a59d4db + md5: 6b43381b7baa13d12f7f8c1c5f815902 + license: GPL-3.0-or-later + license_family: GPL + purls: [] + size: 135993 + timestamp: 1612446691250 - kind: conda - name: menuinst - version: 2.0.2 - build: py312h7900ff3_0 + name: patchelf + version: 0.17.2 + build: h58526e2_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.0.2-py312h7900ff3_0.conda - sha256: 39f942fb43dcd553e54f27ec55e0a2155b6ceae9f9528be1e7c2f9a9758b05e0 - md5: acb03947d606ff797a036d31723490fc + url: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + sha256: eb355ac225be2f698e19dba4dcab7cb0748225677a9799e9cc8e4cadc3cb738f + md5: ba76a6a448819560b5f8b08a9c74f415 depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause AND MIT + - libgcc-ng >=7.5.0 + - libstdcxx-ng >=7.5.0 + license: GPL-3.0-or-later + license_family: GPL + purls: [] + size: 94048 + timestamp: 1673473024463 +- kind: conda + name: pep517 + version: 0.13.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + md5: d94aa03d99d8adc9898f783eba0d84d2 + depends: + - python >=3.8 + - tomli + license: MIT + license_family: MIT purls: - - pkg:pypi/menuinst - size: 158511 - timestamp: 1705068403609 + - pkg:pypi/pep517 + size: 19044 + timestamp: 1667916747996 - kind: conda - name: menuinst - version: 2.0.2 - build: py312h81bd7bf_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.0.2-py312h81bd7bf_0.conda - sha256: e9f2fec42e3a6c0c46e2576b20e107f2f6b6cf26d69d7b9e563822df70eb4b0a - md5: 802a33b3ca10e299f2fc9d6783140cc7 + name: pep517 + version: 0.13.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + md5: d94aa03d99d8adc9898f783eba0d84d2 depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause AND MIT + - python >=3.8 + - tomli + license: MIT + license_family: MIT purls: - - pkg:pypi/menuinst - size: 159866 - timestamp: 1705068748439 + - pkg:pypi/pep517?source=conda-forge-mapping + size: 19044 + timestamp: 1667916747996 - kind: conda - name: menuinst - version: 2.0.2 - build: py312hb401068_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.0.2-py312hb401068_0.conda - sha256: 90003bbb3430a32dbdc8f4f3be5ff9b824cf933782ab493364850d4e4677615a - md5: 40fcba89895965e39ea94e53d5588b8d + name: pkginfo + version: 1.10.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.10.0-pyhd8ed1ab_0.conda + sha256: 3e833f907039646e34d23203cd5c9cc487a451d955d8c8d6581e18a8ccef4cee + md5: 8c6a4a704308f5d91f3a974a72db1096 depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause AND MIT + - python >=3.7 + license: MIT + license_family: MIT purls: - - pkg:pypi/menuinst - size: 159905 - timestamp: 1705068695868 + - pkg:pypi/pkginfo + size: 28142 + timestamp: 1709561205511 - kind: conda - name: more-itertools - version: 10.2.0 + name: pkginfo + version: 1.11.1 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - sha256: 9e49e9484ff279453f0b55323a3f0c7cb97440c74f69eecda1f4ad29fae5cd3c - md5: d5c98e9706fdc5328d49a9bf2ce5fb42 + url: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + sha256: 8eb347932cd42fffe9370e82a31cfbabc40b2149c2b049cf087d4a78f5b3b53c + md5: 6a3e4fb1396215d0d88b3cc2f09de412 depends: - python >=3.8 license: MIT license_family: MIT purls: - - pkg:pypi/more-itertools - size: 54469 - timestamp: 1704738585811 + - pkg:pypi/pkginfo?source=conda-forge-mapping + size: 29692 + timestamp: 1717941209022 - kind: conda - name: msys2-conda-epoch - version: '20160418' - build: '1' + name: pkgutil-resolve-name + version: 1.3.10 + build: pyhd8ed1ab_1 build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 - md5: b0309b72560df66f71a9d5e34a5efdfa - size: 3227 - timestamp: 1608166968312 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a + md5: 405678b942f2481cecdb3e010f4925d9 + depends: + - python >=3.6 + license: MIT AND PSF-2.0 + purls: + - pkg:pypi/pkgutil-resolve-name + size: 10778 + timestamp: 1694617398467 - kind: conda - name: mypy - version: 1.10.1 - build: py312h4389bb4_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/mypy-1.10.1-py312h4389bb4_0.conda - sha256: 00e7a8f7ac90709b9195eb5655a55f53b8a0297a563201d75b9406936ed69b0b - md5: 94e70ace716472016f5a717d4ab7531f + name: pkgutil-resolve-name + version: 1.3.10 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a + md5: 405678b942f2481cecdb3e010f4925d9 depends: - - mypy_extensions >=1.0.0 - - psutil >=4.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - typing_extensions >=4.1.0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - python >=3.6 + license: MIT AND PSF-2.0 + purls: + - pkg:pypi/pkgutil-resolve-name?source=conda-forge-mapping + size: 10778 + timestamp: 1694617398467 +- kind: conda + name: platformdirs + version: 4.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + sha256: 2ebfb971236ab825dd79dd6086ea742a9901008ffb9c6222c1f2b5172a8039d3 + md5: a0bc3eec34b0fab84be6b2da94e98e20 + depends: + - python >=3.8 license: MIT license_family: MIT - size: 8414692 - timestamp: 1719301939732 + purls: + - pkg:pypi/platformdirs + size: 20210 + timestamp: 1706713564353 - kind: conda - name: mypy - version: 1.10.1 - build: py312h7e5086c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.10.1-py312h7e5086c_0.conda - sha256: d07f260bde42e963558bedbb5d8607c18a16f71a0dff45fb7cecc85bfcd97c6f - md5: 0aea347a79c70d8134ebd2efc897dda0 + name: platformdirs + version: 4.2.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + sha256: adc59384cf0b2fc6dc7362840151e8cb076349197a38f7230278252698a88442 + md5: 6f6cf28bf8e021933869bae3f84b8fc9 depends: - - __osx >=11.0 - - mypy_extensions >=1.0.0 - - psutil >=4.0 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - typing_extensions >=4.1.0 + - python >=3.8 license: MIT license_family: MIT - size: 9622339 - timestamp: 1719301964191 + purls: + - pkg:pypi/platformdirs?source=conda-forge-mapping + size: 20572 + timestamp: 1715777739019 - kind: conda - name: mypy - version: 1.10.1 - build: py312h9a8786e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.10.1-py312h9a8786e_0.conda - sha256: d65af401f7368680f164990f110d084ee5139cd01a62189c76a88ab87ea50285 - md5: 35504aad41d76808fa379bee8cd6882e + name: platformdirs + version: 4.2.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + sha256: adc59384cf0b2fc6dc7362840151e8cb076349197a38f7230278252698a88442 + md5: 6f6cf28bf8e021933869bae3f84b8fc9 depends: - - libgcc-ng >=12 - - mypy_extensions >=1.0.0 - - psutil >=4.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - typing_extensions >=4.1.0 + - python >=3.8 license: MIT license_family: MIT - size: 16471696 - timestamp: 1719302037228 + size: 20572 + timestamp: 1715777739019 - kind: conda - name: mypy - version: 1.10.1 - build: py312hbd25219_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.10.1-py312hbd25219_0.conda - sha256: 353e75ea35e3c44294787f318e710379f7f0618962a918af90e91597a2710dea - md5: 38d751fa3fd6e793f11903f816ee1cfe + name: pluggy + version: 1.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda + sha256: 6edfd2c41938ea772096c674809bfcf2ebb9bef7e82de6c7ea0b966b86bfb4d0 + md5: 139e9feb65187e916162917bb2484976 depends: - - __osx >=10.13 - - mypy_extensions >=1.0.0 - - psutil >=4.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - typing_extensions >=4.1.0 + - python >=3.8 license: MIT license_family: MIT - size: 10370551 - timestamp: 1719302314714 + purls: + - pkg:pypi/pluggy + size: 23384 + timestamp: 1706116931972 - kind: conda - name: mypy_extensions - version: 1.0.0 - build: pyha770c72_0 + name: pluggy + version: 1.5.0 + build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + sha256: 33eaa3359948a260ebccf9cdc2fd862cea5a6029783289e13602d8e634cd9a26 + md5: d3483c8fc2dc2cc3f5cf43e26d60cabf depends: - - python >=3.5 + - python >=3.8 license: MIT license_family: MIT - size: 10492 - timestamp: 1675543414256 -- kind: conda - name: ncurses - version: 6.4.20240210 - build: h078ce10_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4.20240210-h078ce10_0.conda - sha256: 06f0905791575e2cd3aa961493c56e490b3d82ad9eb49f1c332bd338b0216911 - md5: 616ae8691e6608527d0071e6766dcb81 - license: X11 AND BSD-3-Clause - purls: [] - size: 820249 - timestamp: 1710866874348 -- kind: conda - name: ncurses - version: 6.4.20240210 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 - md5: 97da8860a0da5413c7c98a3b3838a645 - depends: - - libgcc-ng >=12 - license: X11 AND BSD-3-Clause - purls: [] - size: 895669 - timestamp: 1710866638986 -- kind: conda - name: ncurses - version: 6.4.20240210 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 - md5: 50f28c512e9ad78589e3eab34833f762 - license: X11 AND BSD-3-Clause - purls: [] - size: 823010 - timestamp: 1710866856626 -- kind: conda - name: ncurses - version: '6.5' - build: h5846eda_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda - sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 - md5: 02a888433d165c99bf09784a7b14d900 - license: X11 AND BSD-3-Clause - size: 823601 - timestamp: 1715195267791 + purls: + - pkg:pypi/pluggy?source=conda-forge-mapping + size: 23815 + timestamp: 1713667175451 - kind: conda - name: ncurses - version: '6.5' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda - sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 - md5: fcea371545eda051b6deafb24889fc69 + name: pre-commit + version: 3.7.1 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda + sha256: 689c169ce6ed5d516d8524cc1e6ef2687dff19747c1ed1ee9b347a71f47ff12d + md5: 724bc4489c1174fc8e3233b0624fa51f depends: - - libgcc-ng >=12 - license: X11 AND BSD-3-Clause - size: 887465 - timestamp: 1715194722503 -- kind: conda - name: ncurses - version: '6.5' - build: hb89a1cb_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda - sha256: 87d7cf716d9d930dab682cb57b3b8d3a61940b47d6703f3529a155c938a6990a - md5: b13ad5724ac9ae98b6b4fd87e4500ba4 - license: X11 AND BSD-3-Clause - size: 795131 - timestamp: 1715194898402 + - cfgv >=2.0.0 + - identify >=1.0.0 + - nodeenv >=0.11.1 + - python >=3.9 + - pyyaml >=5.1 + - virtualenv >=20.10.0 + license: MIT + license_family: MIT + size: 179748 + timestamp: 1715432871404 - kind: conda - name: nodeenv - version: 1.9.1 + name: pre-commit-hooks + version: 4.6.0 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda - sha256: 85ee07342ab055dc081f3de8292c5e7195e43e046db9c5750f242f928f6bb8f2 - md5: dfe0528d0f1c16c1f7c528ea5536ab30 - depends: - - python 2.7|>=3.7 - - setuptools - license: BSD-3-Clause - license_family: BSD - size: 34489 - timestamp: 1717585382642 -- kind: conda - name: openssl - version: 3.2.1 - build: h0d3ecfb_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_1.conda - sha256: 519dc941d7ab0ebf31a2878d85c2f444450e7c5f6f41c4d07252c6bb3417b78b - md5: eb580fb888d93d5d550c557323ac5cee + url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-4.6.0-pyhd8ed1ab_0.conda + sha256: 2d4a57474c7e2b90cc301df6197207d0812753279b2a7fae88106e0adc5d0b21 + md5: 9b353c467bcabf27ab5bae2e319c16bf depends: - - ca-certificates - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 2855250 - timestamp: 1710793435903 + - python >=3.6 + - ruamel.yaml >=0.15 + - tomli >=1.1.0 + license: MIT + license_family: MIT + size: 34686 + timestamp: 1712432480698 - kind: conda - name: openssl - version: 3.2.1 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_1.conda - sha256: 61ce4e11c3c26ed4e4d9b7e7e2483121a1741ad0f9c8db0a91a28b6e05182ce6 - md5: 958e0418e93e50c575bff70fbcaa12d8 + name: psutil + version: 5.9.8 + build: py312h41838bb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py312h41838bb_0.conda + sha256: 12e5053d19bddaf7841e59cbe9ba98fa5d4d8502ceccddad80888515e1366107 + md5: 03926e7089a5e61b77043b470ae7b553 depends: - - ca-certificates - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 8230112 - timestamp: 1710796158475 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil + size: 495162 + timestamp: 1705722685887 - kind: conda - name: openssl - version: 3.2.1 - build: hd590300_1 - build_number: 1 + name: psutil + version: 5.9.8 + build: py312h98912ed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 - md5: 9d731343cff6ee2e5a25c4a091bf8e2a + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py312h98912ed_0.conda + sha256: 27e7f8f5d30c74439f39d61e21ac14c0cd03b5d55f7bf9f946fb619016f73c61 + md5: 3facaca6cc0f7988df3250efccd32da3 depends: - - ca-certificates - libgcc-ng >=12 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 2865379 - timestamp: 1710793235846 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil + size: 486243 + timestamp: 1705722547420 - kind: conda - name: openssl - version: 3.2.1 - build: hd75f5a5_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 - md5: 570a6f04802df580be529f3a72d2bbf7 + name: psutil + version: 5.9.8 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py312he37b823_0.conda + sha256: a996bd5f878da264d1d3ba7fde717b0a2c158a86645efb1e899d087cca74832d + md5: cd6e99b9c5a623735161973b5f693a86 depends: - - ca-certificates - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 2506344 - timestamp: 1710793930515 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil + size: 499490 + timestamp: 1705722767772 - kind: conda - name: openssl - version: 3.3.1 - build: h2466b09_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_1.conda - sha256: e45ee071d45fcfaa59beb31def800cdb9d81b17bbb74c4a7e400102cb22ca35e - md5: aa36aca82d1ffd26bee88ac7dc9e1ee3 + name: psutil + version: 5.9.8 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py312he70551f_0.conda + sha256: 36f8addb327f80da4d6bd421170ff4cf8fb570d9ee8df39372427a4e33298dca + md5: 5f2998851564bea33a159bd00e6249e8 depends: - - ca-certificates + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 8355633 - timestamp: 1719366975403 -- kind: conda - name: openssl - version: 3.3.1 - build: h4ab18f5_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda - sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 - md5: b1e9d076f14e8d776213fd5047b4c3d9 - depends: - - ca-certificates - - libgcc-ng >=12 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2896610 - timestamp: 1719363957188 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil + size: 503677 + timestamp: 1705722843679 - kind: conda - name: openssl - version: 3.3.1 - build: h87427d6_1 - build_number: 1 + name: psutil + version: 6.0.0 + build: py310h936d840_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda - sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 - md5: d838ffe9ec3c6d971f110e04487466ff + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py310h936d840_0.conda + sha256: c976819733772f63a1c8e704cb96bf4287c0eb477b10ba467be3adbe5974bf3a + md5: 2f5a3bd97ce3176794b59c160ed51fba depends: - __osx >=10.13 - - ca-certificates - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2551950 - timestamp: 1719364820943 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 378205 + timestamp: 1719274714245 - kind: conda - name: openssl - version: 3.3.1 - build: hfb2fe0b_1 - build_number: 1 + name: psutil + version: 6.0.0 + build: py310ha6dd24b_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_1.conda - sha256: 3ab411856c3bef88595473f0dd86e82de4f913f88319548acf262d5b1175b050 - md5: c665dec48e08311096823956642a501c + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py310ha6dd24b_0.conda + sha256: 7477bd84734668992cda9076147c5d07ce92f59c70441757a5b289401bd8ed85 + md5: 0e0df689b8c6ea6676b786bd78a575d1 depends: - __osx >=11.0 - - ca-certificates - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2897767 - timestamp: 1719363723462 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 379588 + timestamp: 1719274858964 - kind: conda - name: packaging - version: '24.0' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - sha256: a390182d74c31dfd713c16db888c92c277feeb6d1fe96ff9d9c105f9564be48a - md5: 248f521b64ce055e7feae3105e7abeb8 + name: psutil + version: 6.0.0 + build: py310ha8f682b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py310ha8f682b_0.conda + sha256: 9801a18aa6fadd3a6286fd89e83fe6affbcb3ca275bb2a00ab0da299d32e92ad + md5: 32f5673b7aa2309dda74ccd01822caca depends: - - python >=3.8 - license: Apache-2.0 - license_family: APACHE + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/packaging - size: 49832 - timestamp: 1710076089469 -- kind: conda - name: patch - version: 2.7.6 - build: h27ca646_1002 - build_number: 1002 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 - sha256: 45316f216976a35180e1973840de08013f075bc94a9a57ae9a9e4e52ea2224d4 - md5: 129d8d6f5a313a5c3e9ed39710d71147 - license: GPL-3.0-or-later - license_family: GPL - purls: [] - size: 130036 - timestamp: 1612446664446 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 388249 + timestamp: 1719275165312 - kind: conda - name: patch - version: 2.7.6 - build: h7f98852_1002 - build_number: 1002 + name: psutil + version: 6.0.0 + build: py310hc51659f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 - sha256: fc30d1b643c35d82abd294cde6b34f7b9e952856c0386f4f069c3a2b7feb28dd - md5: 4c1bbbec45149a186b915c67d086ed3b + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py310hc51659f_0.conda + sha256: d23e0a2bf49a752fcc8267484c5eff3e5b267703853c11cc7b4f762412d0f7ef + md5: b04405826f96f4eb2f502e642d121bb5 depends: - - libgcc-ng >=9.3.0 - license: GPL-3.0-or-later - license_family: GPL - purls: [] - size: 123495 - timestamp: 1612446599889 -- kind: conda - name: patch - version: 2.7.6 - build: hbcf498f_1002 - build_number: 1002 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 - sha256: 786044706396b82f4017e0c9d19b50fad5043de120c164b4f24f9b727a59d4db - md5: 6b43381b7baa13d12f7f8c1c5f815902 - license: GPL-3.0-or-later - license_family: GPL - purls: [] - size: 135993 - timestamp: 1612446691250 + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 371633 + timestamp: 1719274668659 - kind: conda - name: patchelf - version: 0.17.2 - build: h58526e2_0 + name: psutil + version: 6.0.0 + build: py311h331c9d8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda - sha256: eb355ac225be2f698e19dba4dcab7cb0748225677a9799e9cc8e4cadc3cb738f - md5: ba76a6a448819560b5f8b08a9c74f415 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py311h331c9d8_0.conda + sha256: 33fea160c284e588f4ff534567e84c8d3679556787708b9bab89a99e5008ac76 + md5: f1cbef9236edde98a811ba5a98975f2e depends: - - libgcc-ng >=7.5.0 - - libstdcxx-ng >=7.5.0 - license: GPL-3.0-or-later - license_family: GPL - purls: [] - size: 94048 - timestamp: 1673473024463 + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 508965 + timestamp: 1719274724588 - kind: conda - name: pep517 - version: 0.13.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 - sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 - md5: d94aa03d99d8adc9898f783eba0d84d2 + name: psutil + version: 6.0.0 + build: py311h72ae277_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py311h72ae277_0.conda + sha256: fa9ddabbf1a7f0e360dcdd9dfb6fd93742e211211c821693843e946655163dbf + md5: a31301b30c5844e74944b88ff3e6a98c depends: - - python >=3.8 - - tomli - license: MIT - license_family: MIT + - __osx >=10.13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/pep517 - size: 19044 - timestamp: 1667916747996 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 517243 + timestamp: 1719274745686 - kind: conda - name: pkginfo - version: 1.10.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.10.0-pyhd8ed1ab_0.conda - sha256: 3e833f907039646e34d23203cd5c9cc487a451d955d8c8d6581e18a8ccef4cee - md5: 8c6a4a704308f5d91f3a974a72db1096 + name: psutil + version: 6.0.0 + build: py311hd3f4193_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py311hd3f4193_0.conda + sha256: 984318469265162206090199a756db2f327dada39b050c9878534663b3eb6268 + md5: 3cfef0112ab97269edb8fd98afc78288 depends: - - python >=3.7 - license: MIT - license_family: MIT + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/pkginfo - size: 28142 - timestamp: 1709561205511 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 517029 + timestamp: 1719274800839 - kind: conda - name: pkgutil-resolve-name - version: 1.3.10 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a - md5: 405678b942f2481cecdb3e010f4925d9 + name: psutil + version: 6.0.0 + build: py311he736701_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py311he736701_0.conda + sha256: 9a9900e87f48a04ea597a987105dd978f4d62312f334f2a0f58f3a749b42e226 + md5: 325e47d267a6db408c1d61bde22c2d9c depends: - - python >=3.6 - license: MIT AND PSF-2.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/pkgutil-resolve-name - size: 10778 - timestamp: 1694617398467 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 527926 + timestamp: 1719275196844 - kind: conda - name: platformdirs - version: 4.2.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - sha256: 2ebfb971236ab825dd79dd6086ea742a9901008ffb9c6222c1f2b5172a8039d3 - md5: a0bc3eec34b0fab84be6b2da94e98e20 + name: psutil + version: 6.0.0 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda + sha256: c9ed9457fa4c4900b7f2fc5e28493bdd3885acb823ed48c01dae59f043a65ad8 + md5: 86fd428b42be7495c93d0ff837adfc9e depends: - - python >=3.8 - license: MIT - license_family: MIT + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/platformdirs - size: 20210 - timestamp: 1706713564353 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 509298 + timestamp: 1719275243368 - kind: conda - name: platformdirs - version: 4.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - sha256: adc59384cf0b2fc6dc7362840151e8cb076349197a38f7230278252698a88442 - md5: 6f6cf28bf8e021933869bae3f84b8fc9 + name: psutil + version: 6.0.0 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda + sha256: c9ed9457fa4c4900b7f2fc5e28493bdd3885acb823ed48c01dae59f043a65ad8 + md5: 86fd428b42be7495c93d0ff837adfc9e depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 20572 - timestamp: 1715777739019 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 509298 + timestamp: 1719275243368 - kind: conda - name: pluggy - version: 1.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - sha256: 6edfd2c41938ea772096c674809bfcf2ebb9bef7e82de6c7ea0b966b86bfb4d0 - md5: 139e9feb65187e916162917bb2484976 + name: psutil + version: 6.0.0 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda + sha256: d677457b2ce2e6ef6c2845c653e5bc39be9a59a900d95a5a7771b490f754cb5f + md5: e45a140733a4805d80e282c1ede40d0b depends: - - python >=3.8 - license: MIT - license_family: MIT + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/pluggy - size: 23384 - timestamp: 1706116931972 -- kind: conda - name: pre-commit - version: 3.7.1 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - sha256: 689c169ce6ed5d516d8524cc1e6ef2687dff19747c1ed1ee9b347a71f47ff12d - md5: 724bc4489c1174fc8e3233b0624fa51f - depends: - - cfgv >=2.0.0 - - identify >=1.0.0 - - nodeenv >=0.11.1 - - python >=3.9 - - pyyaml >=5.1 - - virtualenv >=20.10.0 - license: MIT - license_family: MIT - size: 179748 - timestamp: 1715432871404 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 501703 + timestamp: 1719274787455 - kind: conda - name: pre-commit-hooks - version: 4.6.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-4.6.0-pyhd8ed1ab_0.conda - sha256: 2d4a57474c7e2b90cc301df6197207d0812753279b2a7fae88106e0adc5d0b21 - md5: 9b353c467bcabf27ab5bae2e319c16bf + name: psutil + version: 6.0.0 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda + sha256: d677457b2ce2e6ef6c2845c653e5bc39be9a59a900d95a5a7771b490f754cb5f + md5: e45a140733a4805d80e282c1ede40d0b depends: - - python >=3.6 - - ruamel.yaml >=0.15 - - tomli >=1.1.0 - license: MIT - license_family: MIT - size: 34686 - timestamp: 1712432480698 + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 501703 + timestamp: 1719274787455 - kind: conda name: psutil - version: 5.9.8 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py312h41838bb_0.conda - sha256: 12e5053d19bddaf7841e59cbe9ba98fa5d4d8502ceccddad80888515e1366107 - md5: 03926e7089a5e61b77043b470ae7b553 + version: 6.0.0 + build: py312h9a8786e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda + sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d + md5: 1aeffa86c55972ca4e88ac843eccedf2 depends: + - libgcc-ng >=12 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/psutil - size: 495162 - timestamp: 1705722685887 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 493452 + timestamp: 1719274737481 - kind: conda name: psutil - version: 5.9.8 - build: py312h98912ed_0 + version: 6.0.0 + build: py312h9a8786e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py312h98912ed_0.conda - sha256: 27e7f8f5d30c74439f39d61e21ac14c0cd03b5d55f7bf9f946fb619016f73c61 - md5: 3facaca6cc0f7988df3250efccd32da3 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda + sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d + md5: 1aeffa86c55972ca4e88ac843eccedf2 depends: - libgcc-ng >=12 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/psutil - size: 486243 - timestamp: 1705722547420 + size: 493452 + timestamp: 1719274737481 - kind: conda name: psutil - version: 5.9.8 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py312he37b823_0.conda - sha256: a996bd5f878da264d1d3ba7fde717b0a2c158a86645efb1e899d087cca74832d - md5: cd6e99b9c5a623735161973b5f693a86 + version: 6.0.0 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda + sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b + md5: db086d71e9be086313110a670b6d549f depends: + - __osx >=10.13 - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/psutil - size: 499490 - timestamp: 1705722767772 + - pkg:pypi/psutil?source=conda-forge-mapping + size: 499307 + timestamp: 1719274858092 - kind: conda name: psutil - version: 5.9.8 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py312he70551f_0.conda - sha256: 36f8addb327f80da4d6bd421170ff4cf8fb570d9ee8df39372427a4e33298dca - md5: 5f2998851564bea33a159bd00e6249e8 + version: 6.0.0 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda + sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b + md5: db086d71e9be086313110a670b6d549f depends: + - __osx >=10.13 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 499307 + timestamp: 1719274858092 +- kind: conda + name: py-lief + version: 0.14.1 + build: py310h1c30a33_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py310h1c30a33_1.conda + sha256: 6a892fe8fee5d7df125e050611432d5607c3a1b5906f1447e5a3f7de5154450a + md5: 25455db113c9054c9953e087e2c4e6e1 + depends: + - __osx >=11.0 + - libcxx >=16 + - liblief 0.14.1 h3f3aa29_1 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 537402 + timestamp: 1711564598636 +- kind: conda + name: py-lief + version: 0.14.1 + build: py310h76e45a6_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py310h76e45a6_1.conda + sha256: 92d334bcf1c5c9fe9f6f5fd00e02ff25c76d2169b2446bd27364e78ae4b6a2b9 + md5: d5c59876069c68601ce499ef27dd4259 + depends: + - libgcc-ng >=12 + - liblief 0.14.1 hac33072_1 + - libstdcxx-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 758883 + timestamp: 1711564243168 +- kind: conda + name: py-lief + version: 0.14.1 + build: py310h9e98ed7_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py310h9e98ed7_1.conda + sha256: 9a6bad6be81deadd8ffe1de435d60c536b068785b42a0f373d168ac4f6beb3f0 + md5: ceabe44f00f1a6dfb517f96114e4c98d + depends: + - liblief 0.14.1 he0c23c2_1 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 - ucrt >=10.0.20348.0 - vc >=14.2,<15 + - vc >=14.3,<15 - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD + - vc14_runtime >=14.38.33130 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 561154 + timestamp: 1711564684497 +- kind: conda + name: py-lief + version: 0.14.1 + build: py310hb4f5172_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py310hb4f5172_1.conda + sha256: 822034d92c0aacf77219f3d502a88c4690c1e725eb72fca4b9cfc4bdcffeb4b9 + md5: 4309d35046606a5712afa257340dd99f + depends: + - __osx >=10.13 + - libcxx >=16 + - liblief 0.14.1 ha0df490_1 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 534495 + timestamp: 1711565105949 +- kind: conda + name: py-lief + version: 0.14.1 + build: py311h4332511_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py311h4332511_1.conda + sha256: ae3ca16770b295b2fe598f4c049e685f52e60c51535151f1803326649a96c54a + md5: b580153e3b54da2b04d701025998a3c9 + depends: + - libgcc-ng >=12 + - liblief 0.14.1 hac33072_1 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 761118 + timestamp: 1711564022504 +- kind: conda + name: py-lief + version: 0.14.1 + build: py311h6376970_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py311h6376970_1.conda + sha256: 4fcde94f58863e6bc30b0c88392ca1bc5754a49b4d5eb81f68be30b14193ab10 + md5: 797b9616482561ffa07f135df25ceb13 + depends: + - __osx >=11.0 + - libcxx >=16 + - liblief 0.14.1 h3f3aa29_1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 537450 + timestamp: 1711565060994 +- kind: conda + name: py-lief + version: 0.14.1 + build: py311h8fdbec6_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py311h8fdbec6_1.conda + sha256: 6be49d5a69b75e85a81d9dd05f6a52ab585df1defbbf81b45b1d0038e13dded4 + md5: 9a39b1dd56bbb1b1c4bef604029ea9cc + depends: + - __osx >=10.13 + - libcxx >=16 + - liblief 0.14.1 ha0df490_1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache purls: - - pkg:pypi/psutil - size: 503677 - timestamp: 1705722843679 + - pkg:pypi/lief?source=conda-forge-mapping + size: 534246 + timestamp: 1711566009635 - kind: conda - name: psutil - version: 6.0.0 - build: py312h4389bb4_0 + name: py-lief + version: 0.14.1 + build: py311hda3d55a_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda - sha256: c9ed9457fa4c4900b7f2fc5e28493bdd3885acb823ed48c01dae59f043a65ad8 - md5: 86fd428b42be7495c93d0ff837adfc9e + url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py311hda3d55a_1.conda + sha256: efd37bec51018d6439f0e8204b96d0268174ec9ff78540a0ec49860aa36eed32 + md5: 37e851553922f3681bc08a9f8955f869 depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - liblief 0.14.1 he0c23c2_1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 - ucrt >=10.0.20348.0 - vc >=14.2,<15 + - vc >=14.3,<15 - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 509298 - timestamp: 1719275243368 -- kind: conda - name: psutil - version: 6.0.0 - build: py312h7e5086c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda - sha256: d677457b2ce2e6ef6c2845c653e5bc39be9a59a900d95a5a7771b490f754cb5f - md5: e45a140733a4805d80e282c1ede40d0b - depends: - - __osx >=11.0 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 501703 - timestamp: 1719274787455 -- kind: conda - name: psutil - version: 6.0.0 - build: py312h9a8786e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda - sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d - md5: 1aeffa86c55972ca4e88ac843eccedf2 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 493452 - timestamp: 1719274737481 + - vc14_runtime >=14.38.33130 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 560420 + timestamp: 1711564997607 - kind: conda - name: psutil - version: 6.0.0 - build: py312hbd25219_0 + name: py-lief + version: 0.14.1 + build: py312h1683c14_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda - sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b - md5: db086d71e9be086313110a670b6d549f + url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py312h1683c14_1.conda + sha256: 758107fe3b36182cd654c1f0bfd0d9197c7d921130d9462934606bcf3d48c4a4 + md5: 9fd5fac90f4c02f0da97fb84d271caf9 depends: - __osx >=10.13 + - libcxx >=16 + - liblief 0.14.1 ha0df490_1 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 499307 - timestamp: 1719274858092 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief + size: 537434 + timestamp: 1711566440502 - kind: conda name: py-lief version: 0.14.1 @@ -5716,7 +12309,7 @@ packages: license: Apache-2.0 license_family: Apache purls: - - pkg:pypi/lief + - pkg:pypi/lief?source=conda-forge-mapping size: 537434 timestamp: 1711566440502 - kind: conda @@ -5740,6 +12333,27 @@ packages: - pkg:pypi/lief size: 539467 timestamp: 1711566025401 +- kind: conda + name: py-lief + version: 0.14.1 + build: py312h2721eaf_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py312h2721eaf_1.conda + sha256: 09e288c5a14f7469e551ab810e6e9e24c8fbe15e3e02004750e9754ade2979f6 + md5: b157344e38369e52964a83bf85ef93d4 + depends: + - __osx >=11.0 + - libcxx >=16 + - liblief 0.14.1 h3f3aa29_1 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 539467 + timestamp: 1711566025401 - kind: conda name: py-lief version: 0.14.1 @@ -5764,6 +12378,51 @@ packages: - pkg:pypi/lief size: 561588 timestamp: 1711565313159 +- kind: conda + name: py-lief + version: 0.14.1 + build: py312h275cf98_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py312h275cf98_1.conda + sha256: a8a2a2c82272e1819b113da9975ca00a74659e5c819e4970e9350de5863073cb + md5: 33f97d4de13a9c6442aa5a1cabc1f547 + depends: + - liblief 0.14.1 he0c23c2_1 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc >=14.3,<15 + - vc14_runtime >=14.29.30139 + - vc14_runtime >=14.38.33130 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 561588 + timestamp: 1711565313159 +- kind: conda + name: py-lief + version: 0.14.1 + build: py312h7070661_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py312h7070661_1.conda + sha256: 8410ab9d798a10299133a0e105c3c50cf3cde1cc21bbd79eae3df6f8fd56e289 + md5: f69fc698e1625960fd3cc5cc796205f6 + depends: + - libgcc-ng >=12 + - liblief 0.14.1 hac33072_1 + - libstdcxx-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief + size: 758297 + timestamp: 1711563364357 - kind: conda name: py-lief version: 0.14.1 @@ -5779,27 +12438,191 @@ packages: - libstdcxx-ng >=12 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 758297 + timestamp: 1711563364357 +- kind: conda + name: pybind11-abi + version: '4' + build: hd8ed1ab_3 + build_number: 3 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0 + md5: 878f923dd6acc8aeb47a75da6c4098be + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 9906 + timestamp: 1610372835205 +- kind: conda + name: pycosat + version: 0.6.6 + build: py310h2372a71_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py310h2372a71_0.conda + sha256: ea7faba72a38b1d9e799294ea270916d2ea3f4a491df06a4d5a55347f3a036ce + md5: 0adaac9a86d59adae2bc86b3cdef2df1 + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 86636 + timestamp: 1696355901183 +- kind: conda + name: pycosat + version: 0.6.6 + build: py310h2aa6e3c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py310h2aa6e3c_0.conda + sha256: 43fc36a584cc9db9cbcd0bee62875ca7702e68fd1df1f35db87f3a14098bb8bc + md5: 3a048bfd19ef0f4e1d6efd3f821c3988 + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 82535 + timestamp: 1696356406059 +- kind: conda + name: pycosat + version: 0.6.6 + build: py310h6729b98_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py310h6729b98_0.conda + sha256: c8ce26a91bd19ab83f8fb7e2f8ada1de799453b519ee156f59aa901146f353d8 + md5: 89b601f80d076bf8053eea906293353c + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 84654 + timestamp: 1696356173413 +- kind: conda + name: pycosat + version: 0.6.6 + build: py310h8d17308_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py310h8d17308_0.conda + sha256: 7123e5ca4d6f268d8cc9b56f1cbbe7f31e9ba8d3d69f7a84f47d39fd4b8e1eb9 + md5: 0baa6a176b2328e65f217adf769815c5 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 75339 + timestamp: 1696356628343 +- kind: conda + name: pycosat + version: 0.6.6 + build: py311h2725bcf_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py311h2725bcf_0.conda + sha256: 1899b863919c949d38634dbdaec7af2ddb52326a496dd68751ab4f4fe0e8f36a + md5: 47b4652f8a7e6222786663c757815dd5 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 88031 + timestamp: 1696356171531 +- kind: conda + name: pycosat + version: 0.6.6 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py311h459d7ec_0.conda + sha256: a4cfda3897fc7bd2b23e1eac1a6e9d8847e1e9ef42cb5948d7c1e244c884a799 + md5: 9a5b1fabf02c6c91da7203d7d5d53ffd + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 88071 + timestamp: 1696355908348 +- kind: conda + name: pycosat + version: 0.6.6 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py311ha68e1ae_0.conda + sha256: 93ac7e98408dd92e355f087e05f0a29722214db10fe3ee3d524556cb03d360e1 + md5: beaebb9595065ca64bcce57a6b3ab2fd + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 78811 + timestamp: 1696356770331 +- kind: conda + name: pycosat + version: 0.6.6 + build: py311heffc1b2_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py311heffc1b2_0.conda + sha256: 4451971678bbc4fb314201f786c5c3640d429985d195e7d940bfd7d33a384560 + md5: d60b2f87d7b8dd1623fb1baf91a0e311 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 85652 + timestamp: 1696356197481 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312h02f2b3b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py312h02f2b3b_0.conda + sha256: 79622e905c3185fe96c57bf6c57b20c545e86b3a6e7da88f24dc50d03ddbe3a6 + md5: 4d07092345b6e66e580ce3cd9141c6da + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT purls: - - pkg:pypi/lief - size: 758297 - timestamp: 1711563364357 -- kind: conda - name: pybind11-abi - version: '4' - build: hd8ed1ab_3 - build_number: 3 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 - sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0 - md5: 878f923dd6acc8aeb47a75da6c4098be - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 9906 - timestamp: 1610372835205 + - pkg:pypi/pycosat + size: 86424 + timestamp: 1696356256622 - kind: conda name: pycosat version: 0.6.6 @@ -5815,7 +12638,7 @@ packages: license: MIT license_family: MIT purls: - - pkg:pypi/pycosat + - pkg:pypi/pycosat?source=conda-forge-mapping size: 86424 timestamp: 1696356256622 - kind: conda @@ -5835,6 +12658,23 @@ packages: - pkg:pypi/pycosat size: 89221 timestamp: 1696356180943 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312h104f124_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h104f124_0.conda + sha256: b37afbc13d4216dde3a613ded3a1688adae3d74ab98ea55cc6914b39d2417d55 + md5: 106c2d37708757f4c23ff1f487bf5a3f + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 89221 + timestamp: 1696356180943 - kind: conda name: pycosat version: 0.6.6 @@ -5853,6 +12693,24 @@ packages: - pkg:pypi/pycosat size: 88549 timestamp: 1696355931150 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h98912ed_0.conda + sha256: b973d39eb9fd9625fe97e2fbb4b6f758ea47aa288f5f8c7769e3f36a3acbb5da + md5: 8f1c372e7b843167be885dc8229931c1 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 88549 + timestamp: 1696355931150 - kind: conda name: pycosat version: 0.6.6 @@ -5873,6 +12731,41 @@ packages: - pkg:pypi/pycosat size: 77670 timestamp: 1696356641443 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312he70551f_0.conda + sha256: 680e91170b5b29c39a486995c55bb29fc84dea86a8cc3c2180e30c4d4556d3ec + md5: 619f8a019eaeffff3c9507fd2f5769c2 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 77670 + timestamp: 1696356641443 +- kind: conda + name: pycparser + version: '2.22' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + sha256: 406001ebf017688b1a1554b49127ca3a4ac4626ec0fd51dc75ffa4415b720b64 + md5: 844d9eb3b43095b031874477f7d70088 + depends: + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 105098 + timestamp: 1711811634025 - kind: conda name: pycparser version: '2.22' @@ -5886,6 +12779,8 @@ packages: - python >=3.8 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/pycparser?source=conda-forge-mapping size: 105098 timestamp: 1711811634025 - kind: conda @@ -5913,6 +12808,51 @@ packages: - pkg:pypi/pygithub size: 145581 timestamp: 1711296584144 +- kind: conda + name: pygithub + version: 2.3.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + sha256: 6f03bffc523305f60b2c9a60d085cdefcfb98329251dd109e995dde878b14d23 + md5: b07dc79f5617b22abbaba663d84d1400 + depends: + - cryptography >=3.4.0 + - deprecated + - pyjwt >=2.4.0 + - pynacl >=1.4.0 + - python >=3.7 + - python-dateutil + - requests >=2.14.0 + - typing-extensions >=4.0.0 + - urllib3 >=1.26.0 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/pygithub?source=conda-forge-mapping + size: 145581 + timestamp: 1711296584144 +- kind: conda + name: pyjwt + version: 2.8.0 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + sha256: d7cb7fbafd767e938db10820c76a9c16d91faf5a081842159cc185787879eb07 + md5: 74f76d4868dbba5870f2cf1d9b12d8f3 + depends: + - python >=3.7 + constrains: + - cryptography >=3.3.1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyjwt + size: 24906 + timestamp: 1706895211122 - kind: conda name: pyjwt version: 2.8.0 @@ -5930,9 +12870,207 @@ packages: license: MIT license_family: MIT purls: - - pkg:pypi/pyjwt - size: 24906 - timestamp: 1706895211122 + - pkg:pypi/pyjwt?source=conda-forge-mapping + size: 24906 + timestamp: 1706895211122 +- kind: conda + name: pynacl + version: 1.5.0 + build: py310h2372a71_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py310h2372a71_3.conda + sha256: f47cc2039e555a03187defab05cf77cc28f56df1a820d789efad39a930994192 + md5: a29a0825809cd3a780097472be176618 + depends: + - cffi >=1.4.1 + - libgcc-ng >=12 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1120137 + timestamp: 1695545009057 +- kind: conda + name: pynacl + version: 1.5.0 + build: py310h2aa6e3c_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py310h2aa6e3c_3.conda + sha256: 980e18545c20809e7f360c9597300afdbbdc9df18630ad5b588512903552e36e + md5: c684863c740f57038bf66d18935b966c + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1175664 + timestamp: 1695545328740 +- kind: conda + name: pynacl + version: 1.5.0 + build: py310h635b8f1_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py310h635b8f1_3.conda + sha256: 66fdf626f076e9c80425fddc49a0b3dd4fd5cc0a7eb06ac721c506fc918eecfa + md5: 4053b2bc00767190bcc7ced4f17eca8d + depends: + - cffi >=1.4.1 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1278753 + timestamp: 1695545360964 +- kind: conda + name: pynacl + version: 1.5.0 + build: py310h6729b98_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py310h6729b98_3.conda + sha256: 16f5759f2b240f98189f4de1ca51a87ba3c352de74418747ec94f46c6ea1e8b3 + md5: 9835aba2d857e8dc24315e4d411c6217 + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1135703 + timestamp: 1695545167585 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311h2725bcf_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py311h2725bcf_3.conda + sha256: be82b01eff22a7347d30ddd7c65a6b5e12110b4ed6773d1b20688d39e3c65be3 + md5: f0ac41d1fc525643445fafb5943927bb + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1155846 + timestamp: 1695545339481 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311h459d7ec_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py311h459d7ec_3.conda + sha256: 8547795cd19394c953e5f5bd55bbcfd598b96c4bee7fbc48eaf977b42740a3a7 + md5: 41431936fe7624294df31197ae699c44 + depends: + - cffi >=1.4.1 + - libgcc-ng >=12 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1154575 + timestamp: 1695545029063 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311hd53affc_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py311hd53affc_3.conda + sha256: 5c226512cb702b0d19a760eb2ad7b38716592a782300cd27e880043987c741ac + md5: f281b8aabfefac05a58db6a623be8e5c + depends: + - cffi >=1.4.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1244245 + timestamp: 1695545315762 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311heffc1b2_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py311heffc1b2_3.conda + sha256: c2f19b094b9a16dbf1f8dd135a394a36eccfbbce31d4ee91c21bf6bd40623ea5 + md5: f7d0400f93600ab4c7e84abe4503deae + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1150034 + timestamp: 1695545290049 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312h02f2b3b_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda + sha256: 733bba1d4b25f17a5e30f99dc4355b6cd9345cf0c9a1241c205323d8e0ec42af + md5: 5648ef2d224601e852af9b4e8eb30d3a + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl + size: 1148303 + timestamp: 1695545270114 - kind: conda name: pynacl version: 1.5.0 @@ -5952,7 +13090,7 @@ packages: license: Apache-2.0 license_family: Apache purls: - - pkg:pypi/pynacl + - pkg:pypi/pynacl?source=conda-forge-mapping size: 1148303 timestamp: 1695545270114 - kind: conda @@ -5976,6 +13114,27 @@ packages: - pkg:pypi/pynacl size: 1165861 timestamp: 1695545180164 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312h104f124_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda + sha256: 9e7f8189c8cb3e0e4318b59ca42ff97f7803a732c69b1fb192e7c2af3f4234c3 + md5: eee6d82c708669043c7d581afd45a6db + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1165861 + timestamp: 1695545180164 - kind: conda name: pynacl version: 1.5.0 @@ -5998,6 +13157,28 @@ packages: - pkg:pypi/pynacl size: 1147941 timestamp: 1695545046950 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312h98912ed_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda + sha256: f9077093cbd75165abd2f538ad2924ec4cf3a5928604e9ff6ffcf2b224de2163 + md5: 66244781991f08a163ff80a91359dbf5 + depends: + - cffi >=1.4.1 + - libgcc-ng >=12 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1147941 + timestamp: 1695545046950 - kind: conda name: pynacl version: 1.5.0 @@ -6021,6 +13202,29 @@ packages: - pkg:pypi/pynacl size: 1247874 timestamp: 1695545310942 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312hc560f31_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda + sha256: 7b525604cbf5af4858b970e92aa37fbe9bbc83739c099dc734210f48ceb24fe2 + md5: c0c5ade781f5914663ba090a86088af0 + depends: + - cffi >=1.4.1 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1247874 + timestamp: 1695545310942 - kind: conda name: pysocks version: 1.7.1 @@ -6041,6 +13245,26 @@ packages: - pkg:pypi/pysocks size: 19348 timestamp: 1661605138291 +- kind: conda + name: pysocks + version: 1.7.1 + build: pyh0701188_6 + build_number: 6 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 + md5: 56cd9fe388baac0e90c7149cfac95b60 + depends: + - __win + - python >=3.8 + - win_inet_pton + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/pysocks?source=conda-forge-mapping + size: 19348 + timestamp: 1661605138291 - kind: conda name: pysocks version: 1.7.1 @@ -6061,30 +13285,241 @@ packages: size: 18981 timestamp: 1661604969727 - kind: conda - name: pytest - version: 8.1.2 - build: pyhd8ed1ab_0 + name: pysocks + version: 1.7.1 + build: pyha2e5f31_6 + build_number: 6 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.2-pyhd8ed1ab_0.conda - sha256: 52915f1439934397a1d775af669b79670527d8db463e03acdf0365cdb4aed1b3 - md5: bd376c5806a6ba58c1375aa4d7dd6e51 + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + md5: 2a7de29fb590ca14b5243c4c812c8025 depends: - - colorama - - exceptiongroup >=1.0.0rc8 - - iniconfig - - packaging - - pluggy <2.0,>=1.4 + - __unix - python >=3.8 - - tomli >=1 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/pysocks?source=conda-forge-mapping + size: 18981 + timestamp: 1661604969727 +- kind: conda + name: python + version: 3.10.14 + build: h00d2728_0_cpython + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.14-h00d2728_0_cpython.conda + sha256: 00c1de2d46ede26609ef4e84a44b83be7876ba6a0215b7c83bff41a0656bf694 + md5: 0a1cddc4382c5c171e791c70740546dd + depends: + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + purls: [] + size: 11890228 + timestamp: 1710940046031 +- kind: conda + name: python + version: 3.10.14 + build: h2469fbe_0_cpython + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.14-h2469fbe_0_cpython.conda + sha256: 454d609fe25daedce9e886efcbfcadad103ed0362e7cb6d2bcddec90b1ecd3ee + md5: 4ae999c8227c6d8c7623d32d51d25ea9 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + purls: [] + size: 12336005 + timestamp: 1710939659384 +- kind: conda + name: python + version: 3.10.14 + build: h4de0772_0_cpython + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.14-h4de0772_0_cpython.conda + sha256: 332f97d9927b65857d6d2d4d50d66dce9b37da81edb67833ae6b88ad52acbd0c + md5: 4a00e84f29d1eb418d84970598c444e1 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.1,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + purls: [] + size: 15864027 + timestamp: 1710938888352 +- kind: conda + name: python + version: 3.10.14 + build: hd12c33a_0_cpython + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.14-hd12c33a_0_cpython.conda + sha256: 76a5d12e73542678b70a94570f7b0f7763f9a938f77f0e75d9ea615ef22aa84c + md5: 2b4ba962994e8bd4be9ff5b64b75aff2 + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + purls: [] + size: 25517742 + timestamp: 1710939725109 +- kind: conda + name: python + version: 3.11.9 + build: h631f459_0_cpython + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.9-h631f459_0_cpython.conda + sha256: 23698d4eb24970f74911d120204318d48384fabbb25e1e57773ad74fcd38fb12 + md5: d7ed1e7c4e2dcdfd4599bd42c0613e6c + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.3,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.1,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + purls: [] + size: 18232422 + timestamp: 1713551717924 +- kind: conda + name: python + version: 3.11.9 + build: h657bba9_0_cpython + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda + sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c + md5: 612763bc5ede9552e4233ec518b9c9fb + depends: + - __osx >=10.9 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.3,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + purls: [] + size: 15503226 + timestamp: 1713553747073 +- kind: conda + name: python + version: 3.11.9 + build: h932a869_0_cpython + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.9-h932a869_0_cpython.conda + sha256: a436ceabde1f056a0ac3e347dadc780ee2a135a421ddb6e9a469370769829e3c + md5: 293e0713ae804b5527a673e7605c04fc + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.3,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + purls: [] + size: 14644189 + timestamp: 1713552154779 +- kind: conda + name: python + version: 3.11.9 + build: hb806964_0_cpython + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda + sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 + md5: ac68acfa8b558ed406c75e98d3428d7b + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.45.3,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 constrains: - - pytest-faulthandler >=2 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pytest?source=conda-forge-mapping - size: 255436 - timestamp: 1714173970715 + - python_abi 3.11.* *_cp311 + license: Python-2.0 + purls: [] + size: 30884494 + timestamp: 1713553104915 - kind: conda name: python version: 3.12.3 @@ -6197,6 +13632,37 @@ packages: purls: [] size: 31991381 timestamp: 1713208036041 +- kind: conda + name: python + version: 3.12.4 + build: h194c7f8_0_cpython + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda + sha256: 97a78631e6c928bf7ad78d52f7f070fcf3bd37619fa48dc4394c21cf3058cdee + md5: d73490214f536cccb5819e9873048c92 + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.46.0,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.3.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + purls: [] + size: 32073625 + timestamp: 1718621771849 - kind: conda name: python version: 3.12.4 @@ -6227,6 +13693,33 @@ packages: license: Python-2.0 size: 32073625 timestamp: 1718621771849 +- kind: conda + name: python + version: 3.12.4 + build: h30c5eda_0_cpython + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.4-h30c5eda_0_cpython.conda + sha256: 107824b584eb5e43f71df8cb2741019f5c377c734f8309899aa2a6ed53b79a47 + md5: e3e44e0e72aed46dcb810fa3e96784be + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.46.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.3.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + purls: [] + size: 12183332 + timestamp: 1718619490228 - kind: conda name: python version: 3.12.4 @@ -6253,6 +13746,33 @@ packages: license: Python-2.0 size: 12183332 timestamp: 1718619490228 +- kind: conda + name: python + version: 3.12.4 + build: h37a9e06_0_cpython + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda + sha256: 677958ee90eff229755d4e0ed40af6d835c9131e863b1539b34bbf07d7a775f3 + md5: 94e2b77992f580ac6b7a4fc9b53018b3 + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.46.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.3.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + purls: [] + size: 13848015 + timestamp: 1718619909707 - kind: conda name: python version: 3.12.4 @@ -6279,6 +13799,33 @@ packages: license: Python-2.0 size: 13848015 timestamp: 1718619909707 +- kind: conda + name: python + version: 3.12.4 + build: h889d299_0_cpython + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.4-h889d299_0_cpython.conda + sha256: 1db32594bfd8db2a49af66c14aaf479520f98df7a86e9d6e6a9ae484d369f4da + md5: 4527737432f0fade2fc1e5852c672133 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.46.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.1,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + purls: [] + size: 16173770 + timestamp: 1718619012084 - kind: conda name: python version: 3.12.4 @@ -6323,6 +13870,170 @@ packages: - pkg:pypi/python-dateutil size: 222742 timestamp: 1709299922152 +- kind: conda + name: python-dateutil + version: 2.9.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 + md5: 2cf4264fffb9e6eff6031c5b6884d61c + depends: + - python >=3.7 + - six >=1.5 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/python-dateutil?source=conda-forge-mapping + size: 222742 + timestamp: 1709299922152 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py310h2ec42d9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py310h2ec42d9_0.conda + sha256: 1b24e11b085f3309662d4894b422d6b0ed1a3e83c962954da4f6eef60ba70e27 + md5: f34bc1a74fb342c23d1b96df38504c57 + depends: + - libarchive + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 62933 + timestamp: 1709828799531 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py310h5588dad_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py310h5588dad_0.conda + sha256: e78058a939ae6ec0b609f1275f4c8246de1d33e9ff8f26b73b748c74fe861421 + md5: 27b5c101b64bc02a13d2382c35d1e17e + depends: + - libarchive + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 41964 + timestamp: 1709828702759 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py310hbe9552e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py310hbe9552e_0.conda + sha256: 2bd7d5e658eb7e1ae2619c7d3d4074111d212c1254c9d822e4ca0b950ea5d202 + md5: c3edd24ade38997d7ad01d0e5beca955 + depends: + - libarchive + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 63715 + timestamp: 1709828374864 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py310hff52083_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py310hff52083_0.conda + sha256: 9d45c4833bbdfc0e27d54870584e3f01a4d37fdbfc21688fd35f7092489c9949 + md5: aa6fbde705cf9fb0a7744947f40a01d8 + depends: + - libarchive + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 63251 + timestamp: 1709828608030 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py311h1ea47a8_0.conda + sha256: abb846d7567bfdebf4993b45f7f91d25af216a33afe854f30a728aeff085f98f + md5: 539643934437e067f9e871fa919289ce + depends: + - libarchive + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 49850 + timestamp: 1709828673052 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py311h267d04e_0.conda + sha256: 4599b286d0a0fc7cc2a273ec9c14428abe9dea664cceed16821e8059ae347fcd + md5: 6aa9eca587a168b04629da457d43efdd + depends: + - libarchive + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 71650 + timestamp: 1709828981524 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py311h38be061_0.conda + sha256: 28e12135b44ad0e0e9346fed063d5671f3bae445754a756d40321c8848f4ff37 + md5: 28f69afe80aa23792fc99f7877b46f9f + depends: + - libarchive + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 71208 + timestamp: 1709828732615 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py311h6eed73b_0.conda + sha256: 47fa50b8a54aa0c4611598eff38bc2462580fb251cc64c89b43d89c87c0f4f90 + md5: 2b6bd8cc77db0ce9c235ea1b01acd7ec + depends: + - libarchive + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 71391 + timestamp: 1709829060640 - kind: conda name: python-libarchive-c version: '5.1' @@ -6341,6 +14052,42 @@ packages: - pkg:pypi/libarchive-c size: 48652 timestamp: 1709828762233 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py312h2e8e312_0.conda + sha256: 468f2b72cbd84d3ca0bbf956059d17180b91ba3a5d1253035a7471ac4b291567 + md5: ae97341f8a8520442f9c53a8ca999108 + depends: + - libarchive + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 48652 + timestamp: 1709828762233 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py312h7900ff3_0.conda + sha256: 243538d18db27dbb2c27453146c81386acc7909f32f9b7845980ad843ca9ed66 + md5: 5c766786ca3f47e406785553cfc05ce7 + depends: + - libarchive + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c + size: 69718 + timestamp: 1709828706620 - kind: conda name: python-libarchive-c version: '5.1' @@ -6356,9 +14103,28 @@ packages: license: CC0-1.0 license_family: CC purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 69718 + timestamp: 1709828706620 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py312h81bd7bf_0.conda + sha256: ce2f6ea609799d379d2cc1fca01266b4d0af2f29cc7b5987f14a5440ef5c5f93 + md5: 9228b410f4d130823fc86407861c0527 + depends: + - libarchive + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: CC0-1.0 + license_family: CC + purls: - pkg:pypi/libarchive-c - size: 69718 - timestamp: 1709828706620 + size: 70407 + timestamp: 1709829093907 - kind: conda name: python-libarchive-c version: '5.1' @@ -6375,7 +14141,7 @@ packages: license: CC0-1.0 license_family: CC purls: - - pkg:pypi/libarchive-c + - pkg:pypi/libarchive-c?source=conda-forge-mapping size: 70407 timestamp: 1709829093907 - kind: conda @@ -6396,6 +14162,167 @@ packages: - pkg:pypi/libarchive-c size: 69751 timestamp: 1709828844280 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda + sha256: 6c82bf2f807310120630dea4c642b836d7e85804bb5750ee07b8e446386288ed + md5: 8c8948f8210f5508068744c520652feb + depends: + - libarchive + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 69751 + timestamp: 1709828844280 +- kind: conda + name: python_abi + version: '3.10' + build: 4_cp310 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-4_cp310.conda + sha256: 456bec815bfc2b364763084d08b412fdc4c17eb9ccc66a36cb775fa7ac3cbaec + md5: 26322ec5d7712c3ded99dd656142b8ce + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6398 + timestamp: 1695147363189 +- kind: conda + name: python_abi + version: '3.10' + build: 4_cp310 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-4_cp310.conda + sha256: abc26b3b5a62f9c8112a2303d24b0c590d5f7fc9470521f5a520472d59c2223e + md5: b15c816c5a86abcc4d1458dd63aa4c65 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6484 + timestamp: 1695147705581 +- kind: conda + name: python_abi + version: '3.10' + build: 4_cp310 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-4_cp310.conda + sha256: f69bac2f28082a275ef67313968b2c366d8236c3a6869b9cdf5cdb97a5821812 + md5: 1a3d9c6bb5f0b1b22d9e9296c127e8c7 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6490 + timestamp: 1695147522999 +- kind: conda + name: python_abi + version: '3.10' + build: 4_cp310 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-4_cp310.conda + sha256: 19066c462fd0e32c64503c688f77cb603beb4019b812caf855d03f2a5447960b + md5: b41195997c14fb7473d26637ea4c3946 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6773 + timestamp: 1695147715814 +- kind: conda + name: python_abi + version: '3.11' + build: 4_cp311 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda + sha256: 0be3ac1bf852d64f553220c7e6457e9c047dfb7412da9d22fbaa67e60858b3cf + md5: d786502c97404c94d7d58d258a445a65 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6385 + timestamp: 1695147338551 +- kind: conda + name: python_abi + version: '3.11' + build: 4_cp311 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda + sha256: f56dfe2a57b3b27bad3f9527f943548e8b2526e949d9d6fc0a383020d9359afe + md5: fef7a52f0eca6bae9e8e2e255bc86394 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6478 + timestamp: 1695147518012 +- kind: conda + name: python_abi + version: '3.11' + build: 4_cp311 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda + sha256: 4837089c477b9b84fa38a17f453e6634e68237267211b27a8a2f5ccd847f4e55 + md5: 8d3751bc73d3bbb66f216fa2331d5649 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6492 + timestamp: 1695147509940 +- kind: conda + name: python_abi + version: '3.11' + build: 4_cp311 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda + sha256: 67c2aade3e2160642eec0742384e766b20c766055e3d99335681e3e05d88ed7b + md5: 70513332c71b56eace4ee6441e66c012 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6755 + timestamp: 1695147711935 +- kind: conda + name: python_abi + version: '3.12' + build: 4_cp312 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda + sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6 + md5: dccc2d142812964fcc6abdc97b672dff + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6385 + timestamp: 1695147396604 - kind: conda name: python_abi version: '3.12' @@ -6409,6 +14336,7 @@ packages: - python 3.12.* *_cpython license: BSD-3-Clause license_family: BSD + purls: [] size: 6385 timestamp: 1695147396604 - kind: conda @@ -6426,6 +14354,37 @@ packages: license_family: BSD size: 6496 timestamp: 1695147498447 +- kind: conda + name: python_abi + version: '3.12' + build: 4_cp312 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda + sha256: 82c154d95c1637604671a02a89e72f1382e89a4269265a03506496bd928f6f14 + md5: 87201ac4314b911b74197e588cca3639 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6496 + timestamp: 1695147498447 +- kind: conda + name: python_abi + version: '3.12' + build: 4_cp312 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda + sha256: db25428e4f24f8693ffa39f3ff6dfbb8fd53bc298764b775b57edab1c697560f + md5: bbb3a02c78b2d8219d7213f76d644a2a + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6508 + timestamp: 1695147497048 - kind: conda name: python_abi version: '3.12' @@ -6439,40 +14398,254 @@ packages: - python 3.12.* *_cpython license: BSD-3-Clause license_family: BSD + purls: [] size: 6508 timestamp: 1695147497048 - kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 + name: python_abi + version: '3.12' + build: 4_cp312 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda + sha256: 488f8519d04b48f59bd6fde21ebe2d7a527718ff28aac86a8b53aa63658bdef6 + md5: 17f4ccf6be9ded08bd0a376f489ac1a6 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6785 + timestamp: 1695147430513 +- kind: conda + name: python_abi + version: '3.12' + build: 4_cp312 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda + sha256: 488f8519d04b48f59bd6fde21ebe2d7a527718ff28aac86a8b53aa63658bdef6 + md5: 17f4ccf6be9ded08bd0a376f489ac1a6 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6785 + timestamp: 1695147430513 +- kind: conda + name: pytz + version: '2024.1' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 + md5: 3eeeeb9e4827ace8c0c1419c85d590ad + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pytz + size: 188538 + timestamp: 1706886944988 +- kind: conda + name: pytz + version: '2024.1' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 + md5: 3eeeeb9e4827ace8c0c1419c85d590ad + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pytz?source=conda-forge-mapping + size: 188538 + timestamp: 1706886944988 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py310h2372a71_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py310h2372a71_1.conda + sha256: aa78ccddb0a75fa722f0f0eb3537c73ee1219c9dd46cea99d6b9eebfdd780f3d + md5: bb010e368de4940771368bc3dc4c63e7 + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 170627 + timestamp: 1695373587159 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py310h2aa6e3c_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py310h2aa6e3c_1.conda + sha256: 7b8668cd86d2421c62ec241f840d84a600b854afc91383a509bbb60ba907aeec + md5: 0e7ccdd121ce7b486f1de7917178387c + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 158641 + timestamp: 1695373859696 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py310h6729b98_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py310h6729b98_1.conda + sha256: 00567f2cb2d1c8fede8fe7727f7bbd1c38cbca886814d612e162d5c936d8db1b + md5: d964cec3e7972e44bc4a328134b9eaf1 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 160097 + timestamp: 1695373947773 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py310h8d17308_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py310h8d17308_1.conda + sha256: ea51291e477b44c5bb9d91cc095db0dfe07b9576831e9682100d68c820c43ae3 + md5: ce279186f68d0f12812dc9955ea909a4 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 146195 + timestamp: 1695374085323 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py311h2725bcf_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py311h2725bcf_1.conda + sha256: 8ce2ba443414170a2570514d0ce6d03625a847e91af9763d48dc58c338e6f7f3 + md5: 9283f991b5e5856a99f8aabba9927df5 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 188606 + timestamp: 1695373840022 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py311h459d7ec_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py311h459d7ec_1.conda + sha256: 28729ef1ffa7f6f9dfd54345a47c7faac5d34296d66a2b9891fb147f4efe1348 + md5: 52719a74ad130de8fb5d047dc91f247a + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 200626 + timestamp: 1695373818537 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py311ha68e1ae_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda - sha256: 488f8519d04b48f59bd6fde21ebe2d7a527718ff28aac86a8b53aa63658bdef6 - md5: 17f4ccf6be9ded08bd0a376f489ac1a6 - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6785 - timestamp: 1695147430513 + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py311ha68e1ae_1.conda + sha256: 4fb0770fc70381a8ab3ced33413ad9dc5e82d4c535b593edd580113ce8760298 + md5: 2b4128962cd665153e946f2a88667a3b + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 175469 + timestamp: 1695374086205 - kind: conda - name: pytz - version: '2024.1' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 - md5: 3eeeeb9e4827ace8c0c1419c85d590ad + name: pyyaml + version: 6.0.1 + build: py311heffc1b2_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py311heffc1b2_1.conda + sha256: b155f5c27f0e2951256774628c4b91fdeee3267018eef29897a74e3d1316c8b0 + md5: d310bfbb8230b9175c0cbc10189ad804 depends: - - python >=3.7 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT purls: - - pkg:pypi/pytz - size: 188538 - timestamp: 1706886944988 + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 187795 + timestamp: 1695373829282 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py312h02f2b3b_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py312h02f2b3b_1.conda + sha256: b6b4027b89c17b9bbd8089aec3e44bc29f802a7d5668d5a75b5358d7ed9705ca + md5: a0c843e52a1c4422d8657dd76e9eb994 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 182705 + timestamp: 1695373895409 - kind: conda name: pyyaml version: 6.0.1 @@ -6489,6 +14662,8 @@ packages: - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping size: 182705 timestamp: 1695373895409 - kind: conda @@ -6508,6 +14683,43 @@ packages: license_family: MIT size: 185636 timestamp: 1695373742454 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py312h104f124_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda + sha256: 04aa180782cb675b960c0bf4aad439b4a7a08553c6af74d0b8e5df9a0c7cc4f4 + md5: 260ed90aaf06061edabd7209638cf03b + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 185636 + timestamp: 1695373742454 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py312h98912ed_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda + sha256: 7f347a10a7121b08d79d21cd4f438c07c23479ea0c74dfb89d6dc416f791bb7f + md5: e3fd78d8d490af1d84763b9fe3f2e552 + depends: + - libgcc-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 196583 + timestamp: 1695373632212 - kind: conda name: pyyaml version: 6.0.1 @@ -6524,6 +14736,8 @@ packages: - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping size: 196583 timestamp: 1695373632212 - kind: conda @@ -6546,6 +14760,28 @@ packages: license_family: MIT size: 167932 timestamp: 1695374097139 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py312he70551f_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda + sha256: a72fa8152791b4738432f270e70b3a9a4d583ef059a78aa1c62f4b4ab7b15494 + md5: f91e0baa89ba21166916624ba7bfb422 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 167932 + timestamp: 1695374097139 - kind: conda name: rattler-build version: 0.15.0 @@ -6614,6 +14850,76 @@ packages: purls: [] size: 7882297 timestamp: 1713391855237 +- kind: conda + name: rattler-build + version: 0.18.1 + build: h4e38c46_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda + sha256: b0243ba443693a86e2a3d1b29bfc8baa438a83fca448254b601338a67883c3d6 + md5: 5806e79f5a69ff027a1af654d1358482 + depends: + - __osx >=10.13 + - libcxx >=16 + constrains: + - __osx >=10.13 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 8456272 + timestamp: 1719424996372 +- kind: conda + name: rattler-build + version: 0.18.1 + build: h72610f6_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda + sha256: a9c0c3dca83f0669215047e35e33ea1ff0d32c719f22080b2de6d895d9b3bce8 + md5: 5af2c9fc769373e906963fbff24c44ab + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.3.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 11347191 + timestamp: 1719424616011 +- kind: conda + name: rattler-build + version: 0.18.1 + build: ha08ef0e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda + sha256: 5e29f95c7cd0e09198d89ac897c1affb80688404309a985e0874aebeec0d8a55 + md5: df8973d7e2643cb8d5b27729a0a1ef1c + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 7825518 + timestamp: 1719425741068 +- kind: conda + name: rattler-build + version: 0.18.1 + build: hc069d6b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda + sha256: 857295a4ba9fe67cba583c1223da8061eb5bb022d7a1478ca7bb5bb861e96582 + md5: 874d941ede09e8a8005b7c5d015812d6 + depends: + - __osx >=11.0 + - libcxx >=16 + constrains: + - __osx >=11.0 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 8115703 + timestamp: 1719424948999 - kind: pypi name: rattler-build-conda-compat version: 0.2.0 @@ -6639,6 +14945,38 @@ packages: license_family: GPL size: 281456 timestamp: 1679532220005 +- kind: conda + name: readline + version: '8.2' + build: h8228510_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 + md5: 47d31b792659ce70f470b5c82fdfb7a4 + depends: + - libgcc-ng >=12 + - ncurses >=6.3,<7.0a0 + license: GPL-3.0-only + license_family: GPL + purls: [] + size: 281456 + timestamp: 1679532220005 +- kind: conda + name: readline + version: '8.2' + build: h92ec313_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 + md5: 8cbb776a2f641b943d413b3e19df71f4 + depends: + - ncurses >=6.3,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 250351 + timestamp: 1679532511311 - kind: conda name: readline version: '8.2' @@ -6652,6 +14990,7 @@ packages: - ncurses >=6.3,<7.0a0 license: GPL-3.0-only license_family: GPL + purls: [] size: 250351 timestamp: 1679532511311 - kind: conda @@ -6669,6 +15008,22 @@ packages: license_family: GPL size: 255870 timestamp: 1679532707590 +- kind: conda + name: readline + version: '8.2' + build: h9e318b2_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 + md5: f17f77f2acf4d344734bda76829ce14e + depends: + - ncurses >=6.3,<7.0a0 + license: GPL-3.0-only + license_family: GPL + purls: [] + size: 255870 + timestamp: 1679532707590 - kind: conda name: referencing version: 0.34.0 @@ -6688,6 +15043,25 @@ packages: - pkg:pypi/referencing size: 42071 timestamp: 1710763821612 +- kind: conda + name: referencing + version: 0.35.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + sha256: be8d6d9e86b1a3fef5424127ff81782f8ca63d3058980859609f6f1ecdd34cb3 + md5: 0fc8b52192a8898627c3efae1003e9f6 + depends: + - attrs >=22.2.0 + - python >=3.8 + - rpds-py >=0.7.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/referencing?source=conda-forge-mapping + size: 42210 + timestamp: 1714619625532 - kind: conda name: reproc version: 14.2.4.post0 @@ -6829,23 +15203,46 @@ packages: build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad - md5: a30144e4156cdbb236f99ebb49828f8b + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + md5: a30144e4156cdbb236f99ebb49828f8b + depends: + - certifi >=2017.4.17 + - charset-normalizer >=2,<4 + - idna >=2.5,<4 + - python >=3.7 + - urllib3 >=1.21.1,<3 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/requests + size: 56690 + timestamp: 1684774408600 +- kind: conda + name: requests + version: 2.32.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + sha256: 5845ffe82a6fa4d437a2eae1e32a1ad308d7ad349f61e337c0a890fe04c513cc + md5: 5ede4753180c7a550a443c430dc8ab52 depends: - certifi >=2017.4.17 - charset-normalizer >=2,<4 - idna >=2.5,<4 - - python >=3.7 + - python >=3.8 - urllib3 >=1.21.1,<3 constrains: - chardet >=3.0.2,<6 license: Apache-2.0 license_family: APACHE purls: - - pkg:pypi/requests - size: 56690 - timestamp: 1684774408600 + - pkg:pypi/requests?source=conda-forge-mapping + size: 58810 + timestamp: 1717057174842 - kind: conda name: ripgrep version: 11.0.2 @@ -6921,67 +15318,483 @@ packages: license: MIT license_family: MIT purls: - - pkg:pypi/rpds-py - size: 302124 - timestamp: 1707923275835 + - pkg:pypi/rpds-py + size: 302124 + timestamp: 1707923275835 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py312h4b3b743_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.0-py312h4b3b743_0.conda + sha256: 7d8ca38e56db7f803dbc42240bd1918d6084f01cfd56e252a7121c5cdf850191 + md5: cc8165b34bdb002ade83b068f44e5774 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py + size: 919366 + timestamp: 1707922953470 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py312h77200ec_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.18.0-py312h77200ec_0.conda + sha256: 3848b40a75246402ce99793cca8f0974c835952be3e215cbe4e6d6b8bbd49c30 + md5: d28b1b0c190d1c0166449b1641801842 + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py + size: 294636 + timestamp: 1707923464809 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py312hfccd98a_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.0-py312hfccd98a_0.conda + sha256: fa16681746a210e79783cde2069e8704cdb29b15d4e99e16859853f260da9867 + md5: 4f201390adc379696fb0bd3f2b5cdcc7 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py + size: 201960 + timestamp: 1707923686383 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py310h12a1ced_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py310h12a1ced_0.conda + sha256: 9d0039e11dea3d93cb90c470a6586c7cb2914214bc0a100f401f3d3785c1db0d + md5: 08c4c4d84b48c11a615c98fd3123d141 + depends: + - __osx >=10.13 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 293879 + timestamp: 1720476737875 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py310h42e942d_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py310h42e942d_0.conda + sha256: 9195cb82a745afc7a51b2ca32a2541fc4766c20bec3036000d52b25ebe93e5ed + md5: f7d048860e7ab5ab18c733d9ce7ecbd0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 332537 + timestamp: 1720476726824 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py310h947b723_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py310h947b723_0.conda + sha256: 845fa5eb9bf7c1463dfe2a86022b2eb90c64a91cde7d53b910914e7921c98cad + md5: 13200fc967f75cf098e98fbbe70be60d + depends: + - __osx >=11.0 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 288427 + timestamp: 1720476823964 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py310hc226416_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py310hc226416_0.conda + sha256: 1dbca9a739602ae19765ca6aacf06bfa2c2d1717173966b81c88f5c7c5fafc37 + md5: ff2d31d2d675feee0ab7d6f5360f9424 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 206147 + timestamp: 1720477109096 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py311h295b1db_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py311h295b1db_0.conda + sha256: 2fd1b7f0191cdf0b933c1e593fe05fc5ad62f12ba0ea6166b71dccf274731d2a + md5: d8535fdf90c6f305bc305fed0fb1e24a + depends: + - __osx >=10.13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 294306 + timestamp: 1720476815878 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py311h533ab2d_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py311h533ab2d_0.conda + sha256: 414afb9b15b8e3dc78445730e9e710470990b2b3a8ddd62a9874a9dbd9a80b07 + md5: a596b3c3f1ba36b3668765b79cbf7e81 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 205907 + timestamp: 1720477189899 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py311h98c6a39_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py311h98c6a39_0.conda + sha256: f176d657a1e36740354568b8a8ac2a133445dbb8a83706a31eaf00fb143b9f5c + md5: f6b7b80530db28eb61fb3cc41fecb58d + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 288343 + timestamp: 1720476944005 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py311hb3a8bbb_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py311hb3a8bbb_0.conda + sha256: 59cdf20e780485cf5d44a6d1170addd32f3a831bda2fedb9bf9464880cb756bb + md5: c724ab184763ae3168331e1c467d887e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 331396 + timestamp: 1720476807230 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py312h2615798_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py312h2615798_0.conda + sha256: ac83da8d226fa0b44705e53f113213c83c416b8e54ca0a4f2caa673a1a2db6ac + md5: b2b9089125b69baddc8b29517ff75efa + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 206392 + timestamp: 1720477385623 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py312h552d48e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py312h552d48e_0.conda + sha256: 16bcdedd216724a2e11edede285ea4451d07373d021bc72000cccc2ad38cb187 + md5: 17a379a348d6946ffb8c62f31b0f7608 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 290080 + timestamp: 1720476886445 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py312ha47ea1c_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py312ha47ea1c_0.conda + sha256: f952828a1980e2a3d445a9836ac2ac481114d230acf2c2276092d426ad7a3dc0 + md5: d92edd61e8e16a218a821e1cf6d983f9 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 295597 + timestamp: 1720476792452 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py312hf008fa9_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py312hf008fa9_0.conda + sha256: 75af7e5a0906ed4856f917020e4b7641dc61d414bcf97b6a4801c0acb1945dcd + md5: 66ebbe714bafd06ba298a0c6bc2f04ad + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 333646 + timestamp: 1720476841723 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py310h2372a71_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py310h2372a71_0.conda + sha256: 37581cbd99eb8855b6d268c85d189d723dd4fa1f9d115b8a633bed6dea4c370e + md5: 50b7d9b39099cdbabf65bf27df73a793 + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 203692 + timestamp: 1707298326808 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py310h8d17308_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py310h8d17308_0.conda + sha256: 7c6f8954918242e84934af51eaa7d1464e391f6e3f24f52652e18256cfe663b0 + md5: b1117979e43fa36aab602b0b95bc07f2 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ruamel.yaml.clib >=0.1.2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 203921 + timestamp: 1707298493499 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py310hb372a2b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py310hb372a2b_0.conda + sha256: 6b8700746c15be00d6a63391a69dc20078c19a93136a065658b34710815868ae + md5: a6691c80f3bf62bc0df37b87caac6a70 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 203655 + timestamp: 1707298514456 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py310hd125d64_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py310hd125d64_0.conda + sha256: 65e89da67ec766fcb8c5ff22ab3623dd6f7c81fccf699766c252e5623bf81797 + md5: 122d1d9bab6c74cebc0f17736a705e32 + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 203617 + timestamp: 1707298718718 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py311h05b510d_0.conda + sha256: 7ed21c406b18c0ae1c3f6815afe5d7dcfddc374a0ac212fd9f203767d0a18ad4 + md5: d2a62ffc98713af809060950a6c1d107 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 272944 + timestamp: 1707298618971 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py311h459d7ec_0.conda + sha256: b7056cf0f680a70c24d0a9addea6e8b640bfeafda4c37887e276331757404da0 + md5: 4dccc0bc3bb4d6e5c30bccbd053c4f90 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 272940 + timestamp: 1707298251976 - kind: conda - name: rpds-py - version: 0.18.0 - build: py312h4b3b743_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.0-py312h4b3b743_0.conda - sha256: 7d8ca38e56db7f803dbc42240bd1918d6084f01cfd56e252a7121c5cdf850191 - md5: cc8165b34bdb002ade83b068f44e5774 + name: ruamel.yaml + version: 0.18.6 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py311ha68e1ae_0.conda + sha256: a6914bab1f8350c1c4d1b3cd09cf753d788b2e8bd496d78389390660e5be18cd + md5: d471ed4194d2e3aa016278223a8fa52c depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT purls: - - pkg:pypi/rpds-py - size: 919366 - timestamp: 1707922953470 + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 274051 + timestamp: 1707298487840 - kind: conda - name: rpds-py - version: 0.18.0 - build: py312h77200ec_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.18.0-py312h77200ec_0.conda - sha256: 3848b40a75246402ce99793cca8f0974c835952be3e215cbe4e6d6b8bbd49c30 - md5: d28b1b0c190d1c0166449b1641801842 + name: ruamel.yaml + version: 0.18.6 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py311he705e18_0.conda + sha256: 64b13898feefe6b98b776a8a0fff05163dad116c643b946a611ae895edcf435b + md5: 7a3e388f29ca1862754f89b6d79de335 depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - constrains: - - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 license: MIT license_family: MIT purls: - - pkg:pypi/rpds-py - size: 294636 - timestamp: 1707923464809 + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 274220 + timestamp: 1707298563958 - kind: conda - name: rpds-py - version: 0.18.0 - build: py312hfccd98a_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.0-py312hfccd98a_0.conda - sha256: fa16681746a210e79783cde2069e8704cdb29b15d4e99e16859853f260da9867 - md5: 4f201390adc379696fb0bd3f2b5cdcc7 + name: ruamel.yaml + version: 0.18.6 + build: py312h41838bb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda + sha256: 27ab446d39a46f7db365265a48ce74929c672e14c86b1ce8955f59e2d92dff39 + md5: 9db93e711729ec70dacdfa58bf970cfd depends: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - ruamel.yaml.clib >=0.1.2 license: MIT license_family: MIT - purls: - - pkg:pypi/rpds-py - size: 201960 - timestamp: 1707923686383 + size: 268460 + timestamp: 1707298596313 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -6996,6 +15809,8 @@ packages: - ruamel.yaml.clib >=0.1.2 license: MIT license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 268460 timestamp: 1707298596313 - kind: conda @@ -7015,6 +15830,42 @@ packages: license_family: MIT size: 268015 timestamp: 1707298336196 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda + sha256: 26856daba883254736b7f3767c08f445b5d010eebbf4fc7aa384ee80e24aa663 + md5: a99a06a875138829ef65f44bbe2c30ca + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 268015 + timestamp: 1707298336196 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda + sha256: 4a27b50445842e97a31e3f412816d4a0d576b4f1ee327b9a892a183ba5c60f6f + md5: cb9f9b4797001b2c52383f4007fa1f4b + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + size: 268637 + timestamp: 1707298502612 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -7030,6 +15881,8 @@ packages: - ruamel.yaml.clib >=0.1.2 license: MIT license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 268637 timestamp: 1707298502612 - kind: conda @@ -7051,6 +15904,188 @@ packages: license_family: MIT size: 267762 timestamp: 1707298539404 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda + sha256: 31a9e347107a46149ae334586430bebb3a769bb5792eba9ccb89c664dbce7970 + md5: 5833ba75a49ac40876242ccb5f77ab23 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ruamel.yaml.clib >=0.1.2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 267762 + timestamp: 1707298539404 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py310h2372a71_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py310h2372a71_0.conda + sha256: cfcb1b4528074684b2e339b6854320f42a03e7545ff1944ef8262e0130e5c6c8 + md5: dcf6d2535586c77b31425ed835610c54 + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 136172 + timestamp: 1707314637100 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py310h8d17308_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py310h8d17308_0.conda + sha256: 7ea7e20e777d2bccc5df44d68efa9da6540f917863e84d03d2e5757b76a94f26 + md5: 3f4173b2fe24f282b7c03e684a4579c4 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 99742 + timestamp: 1707315298946 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py310hb372a2b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py310hb372a2b_0.conda + sha256: 76535acf0bbefbbfeeca68bc732e4b8eea7526f0ef2090f2bdcf0283ec4b3738 + md5: a6254db88b5bf45d4870c3a63dc39e8d + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 118488 + timestamp: 1707314814452 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py310hd125d64_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py310hd125d64_0.conda + sha256: 83b27f5dafd201a9408886ff18af6ccdde45e748c934fce588a4b531cdd249d5 + md5: e0b9a24f19622386be17bf9f29674e81 + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 111512 + timestamp: 1707315215965 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py311h05b510d_0.conda + sha256: 8b64d7ac6d544cdb1c5e3677c3a6ea10f1d87f818888b25df5f3b97f271ef14f + md5: 0fbb200e26cec1931d0337ee70422965 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 111700 + timestamp: 1707315151942 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py311h459d7ec_0.conda + sha256: b6a4b72ec2a59de0307fca0c699da6238391ee20deb2d121780d10559b5a61a3 + md5: 7865c897d89a39abc0056d89e37bd9e9 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 135856 + timestamp: 1707314709100 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda + sha256: 40896e9a78f24d108ee5cd4156042e2a71bd40fcf74167af0cca3e2551e02eda + md5: 4938101fc72fa2a9919c51f194a733cb + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 99133 + timestamp: 1707315268440 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda + sha256: e6d5b2c9a75191305c8d367d13218c0bd0cc7a640ae776b541124c0fe8341bc9 + md5: 3fdbde273667047893775e077cef290d + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 117859 + timestamp: 1707314957390 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py312h41838bb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda + sha256: c0a321d14505b3621d6301e1ed9bc0129b4c8b2812e7520040d2609aaeb07845 + md5: a134bf1778eb7add92ea760e801dc245 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 118650 + timestamp: 1707314908121 - kind: conda name: ruamel.yaml.clib version: 0.2.8 @@ -7064,6 +16099,8 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping size: 118650 timestamp: 1707314908121 - kind: conda @@ -7085,86 +16122,63 @@ packages: - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 - md5: 2fa02324046cfcb7a67fae30fd06a945 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda + sha256: 5965302881d8b1049291e3ba3912286cdc72cb82303230cbbf0a048c6f6dd7c1 + md5: 05f31c2a79ba61df8d6d903ce4a4ce7b depends: + - libgcc-ng >=12 - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 111221 - timestamp: 1707315016121 + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 135640 + timestamp: 1707314642857 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda - sha256: 7d5705ee3190a5b1c24eee2def964cc1d70b9e856488d971f0fd6df0224ca666 - md5: f8de34a829b65a8e3ac6ddc61ed0d2e0 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 96333 - timestamp: 1707315306489 -- kind: conda - name: ruff - version: 0.3.7 - build: py312h1ae9fbf_0 + build: py312he37b823_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.3.7-py312h1ae9fbf_0.conda - sha256: d410024c1f5007dded6cde0336ef66eb1f20c6012541cdfab8098bf92f88f76f - md5: 19a5d0d42b93d6705a430836e27a72e8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda + sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 + md5: 2fa02324046cfcb7a67fae30fd06a945 depends: - - libcxx >=16 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - constrains: - - __osx >=11.0 license: MIT license_family: MIT - purls: - - pkg:pypi/ruff - size: 5873488 - timestamp: 1712963468673 + size: 111221 + timestamp: 1707315016121 - kind: conda - name: ruff - version: 0.3.7 - build: py312h1bc86af_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.3.7-py312h1bc86af_0.conda - sha256: 34453d115397fb697c5786f25382f3419e418dcbb5a185d0e6217388b1edfd9b - md5: 43f114392c6f66ef9238edbd9c229815 + name: ruamel.yaml.clib + version: 0.2.8 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda + sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 + md5: 2fa02324046cfcb7a67fae30fd06a945 depends: - - libcxx >=16 - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - constrains: - - __osx >=10.12 license: MIT license_family: MIT purls: - - pkg:pypi/ruff - size: 6190521 - timestamp: 1712963528403 + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 111221 + timestamp: 1707315016121 - kind: conda - name: ruff - version: 0.3.7 - build: py312h60fbdae_0 + name: ruamel.yaml.clib + version: 0.2.8 + build: py312he70551f_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.3.7-py312h60fbdae_0.conda - sha256: e1f2debb0daa31da527aa45281c8f5097c9bda74589ad7c8c6056011528a86e0 - md5: fbed1c59af89011cd6f286e5c12771a2 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda + sha256: 7d5705ee3190a5b1c24eee2def964cc1d70b9e856488d971f0fd6df0224ca666 + md5: f8de34a829b65a8e3ac6ddc61ed0d2e0 depends: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -7173,29 +16187,28 @@ packages: - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - purls: - - pkg:pypi/ruff - size: 6336660 - timestamp: 1712963199532 + size: 96333 + timestamp: 1707315306489 - kind: conda - name: ruff - version: 0.3.7 - build: py312h9118e91_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.3.7-py312h9118e91_0.conda - sha256: 457e71eb4a877715353510ec1fc28742bb21f874551a1ca1ef9f91456e18c202 - md5: 76dc72c065cc15f69b96656b3431a5a4 + name: ruamel.yaml.clib + version: 0.2.8 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda + sha256: 7d5705ee3190a5b1c24eee2def964cc1d70b9e856488d971f0fd6df0224ca666 + md5: f8de34a829b65a8e3ac6ddc61ed0d2e0 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT purls: - - pkg:pypi/ruff - size: 6410120 - timestamp: 1712962253616 + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 96333 + timestamp: 1707315306489 - kind: conda name: ruff version: 0.4.10 @@ -7302,6 +16315,23 @@ packages: license_family: MIT size: 496453 timestamp: 1720782643725 +- kind: conda + name: setuptools + version: 71.0.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + sha256: b09ba557d62111d315f1841176cf01fd75e5ae0ae9d6360ccb6aaca1e9a6935f + md5: aede3d5c0882ebed2f07024400a111ed + depends: + - python >=3.8 + license: MIT + license_family: MIT + purls: + - pkg:pypi/setuptools?source=conda-forge-mapping + size: 1411474 + timestamp: 1721294193795 - kind: conda name: sigtool version: 0.1.3 @@ -7349,6 +16379,23 @@ packages: - pkg:pypi/six size: 14259 timestamp: 1620240338595 +- kind: conda + name: six + version: 1.16.0 + build: pyh6c4a22f_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + md5: e5f25f8dbc060e9a8d912e432202afc2 + depends: + - python + license: MIT + license_family: MIT + purls: + - pkg:pypi/six?source=conda-forge-mapping + size: 14259 + timestamp: 1620240338595 - kind: conda name: soupsieve version: '2.5' @@ -7368,23 +16415,23 @@ packages: size: 36754 timestamp: 1693929424267 - kind: conda - name: syrupy - version: 4.6.1 - build: pyhd8ed1ab_0 + name: soupsieve + version: '2.5' + build: pyhd8ed1ab_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - sha256: e9833ae370284f5cbdb62078d7db52a133498d44a3d30770c6914589de94a873 - md5: 7a566d6e1b00b1a521ef8db68aa95f4c + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c + md5: 3f144b2c34f8cb5a9abd9ed23a39c561 depends: - - pytest >=7.0.0,<9.0.0 - - python >=3.8.1,<4.0 - license: Apache-2.0 - license_family: APACHE + - python >=3.8 + license: MIT + license_family: MIT purls: - - pkg:pypi/syrupy - size: 43681 - timestamp: 1707319626819 + - pkg:pypi/soupsieve?source=conda-forge-mapping + size: 36754 + timestamp: 1693929424267 - kind: conda name: tapi version: 1100.0.11 @@ -7430,6 +16477,37 @@ packages: license_family: BSD size: 3270220 timestamp: 1699202389792 +- kind: conda + name: tk + version: 8.6.13 + build: h1abcd95_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 + md5: bf830ba5afc507c6232d4ef0fb1a882d + depends: + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + purls: [] + size: 3270220 + timestamp: 1699202389792 +- kind: conda + name: tk + version: 8.6.13 + build: h5083fa2_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 + md5: b50a57ba89c32b62428b71a875291c9b + depends: + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3145523 + timestamp: 1699202432999 - kind: conda name: tk version: 8.6.13 @@ -7443,6 +16521,7 @@ packages: - libzlib >=1.2.13,<2.0.0a0 license: TCL license_family: BSD + purls: [] size: 3145523 timestamp: 1699202432999 - kind: conda @@ -7462,6 +16541,40 @@ packages: license_family: BSD size: 3503410 timestamp: 1699202577803 +- kind: conda + name: tk + version: 8.6.13 + build: h5226925_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 + md5: fc048363eb8f03cd1737600a5d08aafe + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: TCL + license_family: BSD + purls: [] + size: 3503410 + timestamp: 1699202577803 +- kind: conda + name: tk + version: 8.6.13 + build: noxft_h4845f30_101 + build_number: 101 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: d453b98d9c83e71da0741bb0ff4d76bc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3318875 + timestamp: 1699202167581 - kind: conda name: tk version: 8.6.13 @@ -7476,6 +16589,7 @@ packages: - libzlib >=1.2.13,<2.0.0a0 license: TCL license_family: BSD + purls: [] size: 3318875 timestamp: 1699202167581 - kind: conda @@ -7493,6 +16607,23 @@ packages: license_family: MIT size: 15940 timestamp: 1644342331069 +- kind: conda + name: tomli + version: 2.0.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + md5: 5844808ffab9ebdb694585b50ba02a96 + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/tomli?source=conda-forge-mapping + size: 15940 + timestamp: 1644342331069 - kind: conda name: tqdm version: 4.66.2 @@ -7510,6 +16641,23 @@ packages: - pkg:pypi/tqdm size: 89567 timestamp: 1707598746354 +- kind: conda + name: tqdm + version: 4.66.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + sha256: 75342f40a69e434a1a23003c3e254a95dca695fb14955bc32f1819cd503964b2 + md5: e74cd796e70a4261f86699ee0a3a7a24 + depends: + - colorama + - python >=3.7 + license: MPL-2.0 or MIT + purls: + - pkg:pypi/tqdm?source=conda-forge-mapping + size: 89452 + timestamp: 1714855008479 - kind: conda name: truststore version: 0.8.0 @@ -7527,6 +16675,23 @@ packages: - pkg:pypi/truststore size: 20667 timestamp: 1694154740564 +- kind: conda + name: truststore + version: 0.8.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda + sha256: ba49bed74ca170c5a3bf995c33a6179fd74b33abb2444f511862e7f9f57f9149 + md5: 08316d001eca8854392cf2837828ea11 + depends: + - python >=3.10 + license: MIT + license_family: MIT + purls: + - pkg:pypi/truststore?source=conda-forge-mapping + size: 20667 + timestamp: 1694154740564 - kind: conda name: types-pyyaml version: 6.0.12.20240311 @@ -7572,6 +16737,23 @@ packages: license_family: PSF size: 39888 timestamp: 1717802653893 +- kind: conda + name: typing_extensions + version: 4.12.2 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + sha256: 0fce54f8ec3e59f5ef3bb7641863be4e1bf1279623e5af3d3fa726e8f7628ddb + md5: ebe6952715e1d5eb567eeebf25250fa7 + depends: + - python >=3.8 + license: PSF-2.0 + license_family: PSF + purls: + - pkg:pypi/typing-extensions?source=conda-forge-mapping + size: 39888 + timestamp: 1717802653893 - kind: conda name: typos version: 1.23.2 @@ -7651,6 +16833,33 @@ packages: license: LicenseRef-Public-Domain size: 119815 timestamp: 1706886945727 +- kind: conda + name: tzdata + version: 2024a + build: h0c530f3_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + sha256: 7b2b69c54ec62a243eb6fba2391b5e443421608c3ae5dbff938ad33ca8db5122 + md5: 161081fc7cec0bfda0d86d7cb595f8d8 + license: LicenseRef-Public-Domain + purls: [] + size: 119815 + timestamp: 1706886945727 +- kind: conda + name: ucrt + version: 10.0.22621.0 + build: h57928b3_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 + md5: 72608f6cd3e5898229c3ea16deb1ac43 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-Proprietary + license_family: PROPRIETARY + size: 1283972 + timestamp: 1666630199266 - kind: conda name: ucrt version: 10.0.22621.0 @@ -7663,6 +16872,7 @@ packages: - vs2015_runtime >=14.29.30037 license: LicenseRef-Proprietary license_family: PROPRIETARY + purls: [] size: 1283972 timestamp: 1666630199266 - kind: conda @@ -7747,19 +16957,59 @@ packages: build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - sha256: d4009dcc9327684d6409706ce17656afbeae690d8522d3c9bc4df57649a352cd - md5: 08807a87fa7af10754d46f63b368e016 + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda + sha256: d4009dcc9327684d6409706ce17656afbeae690d8522d3c9bc4df57649a352cd + md5: 08807a87fa7af10754d46f63b368e016 + depends: + - brotli-python >=1.0.9 + - pysocks >=1.5.6,<2.0,!=1.5.7 + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/urllib3 + size: 94669 + timestamp: 1708239595549 +- kind: conda + name: urllib3 + version: 2.2.2 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + sha256: 00c47c602c03137e7396f904eccede8cc64cc6bad63ce1fc355125df8882a748 + md5: e804c43f58255e977093a2298e442bb8 depends: - brotli-python >=1.0.9 + - h2 >=4,<5 - pysocks >=1.5.6,<2.0,!=1.5.7 - - python >=3.7 + - python >=3.8 + - zstandard >=0.18.0 license: MIT license_family: MIT purls: - - pkg:pypi/urllib3 - size: 94669 - timestamp: 1708239595549 + - pkg:pypi/urllib3?source=conda-forge-mapping + size: 95048 + timestamp: 1719391384778 +- kind: conda + name: vc + version: '14.3' + build: h8a93ad2_20 + build_number: 20 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda + sha256: 23ac5feb15a9adf3ab2b8c4dcd63650f8b7ae860c5ceb073e49cf71d203eddef + md5: 8558f367e1d7700554f7cdb823c46faf + depends: + - vc14_runtime >=14.40.33810 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 17391 + timestamp: 1717709040616 - kind: conda name: vc version: '14.3' @@ -7813,6 +17063,24 @@ packages: purls: [] size: 749868 timestamp: 1702511239004 +- kind: conda + name: vc14_runtime + version: 14.40.33810 + build: ha82c5b3_20 + build_number: 20 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda + sha256: af3cfa347e3d7c1277e9b964b0849a9a9f095bff61836cb3c3a89862fbc32e17 + md5: e39cc4c34c53654ec939558993d9dc5b + depends: + - ucrt >=10.0.20348.0 + constrains: + - vs2015_runtime 14.40.33810.* *_20 + license: LicenseRef-ProprietaryMicrosoft + license_family: Proprietary + purls: [] + size: 751934 + timestamp: 1717709031266 - kind: conda name: vc14_runtime version: 14.40.33810 @@ -7864,6 +17132,22 @@ packages: purls: [] size: 16988 timestamp: 1702511261442 +- kind: conda + name: vs2015_runtime + version: 14.40.33810 + build: h3bf8584_20 + build_number: 20 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda + sha256: 0c2803f7a788c51f28235a7228dc2ab3f107b4b16ab0845a3e595c8c51e50a7a + md5: c21f1b4a3a30bbc3ef35a50957578e0e + depends: + - vc14_runtime >=14.40.33810 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 17395 + timestamp: 1717709043353 - kind: conda name: vs2015_runtime version: 14.40.33810 @@ -7897,6 +17181,170 @@ packages: - pkg:pypi/win-inet-pton size: 8191 timestamp: 1667051294134 +- kind: conda + name: win_inet_pton + version: 1.1.0 + build: pyhd8ed1ab_6 + build_number: 6 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 + md5: 30878ecc4bd36e8deeea1e3c151b2e0b + depends: + - __win + - python >=3.6 + license: PUBLIC-DOMAIN + purls: + - pkg:pypi/win-inet-pton?source=conda-forge-mapping + size: 8191 + timestamp: 1667051294134 +- kind: conda + name: wrapt + version: 1.16.0 + build: py310h2372a71_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py310h2372a71_0.conda + sha256: 2adc15cd1e66845c1ab498735e2f828003e2d5fe20eed1febddb712f58793c31 + md5: d9dc9c45bdc2b38403e6b388581e92f0 + depends: + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 55415 + timestamp: 1699533000763 +- kind: conda + name: wrapt + version: 1.16.0 + build: py310h8d17308_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py310h8d17308_0.conda + sha256: 2de005b8199cf5cc19a4547b9aa3ebd7b756c7e8c898dfea9d96283dc2b6745d + md5: 80326d84a304f866ddc5c49caf7ab3ae + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 54038 + timestamp: 1699533408150 +- kind: conda + name: wrapt + version: 1.16.0 + build: py310hb372a2b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py310hb372a2b_0.conda + sha256: 27c9c05285f7405b1084681822686c3ef9e3ae45dff544a83636c1b669efb228 + md5: 7efc437e30061a48eeb60e4ce515ad77 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 51650 + timestamp: 1699533356448 +- kind: conda + name: wrapt + version: 1.16.0 + build: py310hd125d64_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py310hd125d64_0.conda + sha256: 4509076b945781cd445b5418502e8c8e4befee3349364e613e0c60ab3d8c9e99 + md5: d1cdb4037779fcef0c824bc790c5ee57 + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 52698 + timestamp: 1699533350125 +- kind: conda + name: wrapt + version: 1.16.0 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py311h05b510d_0.conda + sha256: c071b132b8415ccd1452e0b8002aa79ea59a4fd0b0ac0d3b2fd0ab6b19b3390c + md5: 35f87feb986222d2ada633b45df0bbc9 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 60998 + timestamp: 1699533434768 +- kind: conda + name: wrapt + version: 1.16.0 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py311h459d7ec_0.conda + sha256: 6587e0b7d42368f767172b239a755fcf6363d91348faf9b7ab5743585369fc58 + md5: 6669b5529d206c1f880b642cdd17ae05 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 63465 + timestamp: 1699532930817 +- kind: conda + name: wrapt + version: 1.16.0 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py311ha68e1ae_0.conda + sha256: e8209b3ebdde15834b59101fd14a7f293d868d2fbad2dcd634357cc3406f1052 + md5: b96598823313b647148417455f2fa659 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 62017 + timestamp: 1699533574835 +- kind: conda + name: wrapt + version: 1.16.0 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py311he705e18_0.conda + sha256: e5546a52c0c0ed8a78dbac1cfec9a639f37fb3a86ea8ade8ff44aa7459dc6796 + md5: 5ef2eefe4fca7c786bbbdd4f1de464ed + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 59558 + timestamp: 1699533106157 - kind: conda name: wrapt version: 1.16.0 @@ -7914,6 +17362,23 @@ packages: - pkg:pypi/wrapt size: 59057 timestamp: 1699533259706 +- kind: conda + name: wrapt + version: 1.16.0 + build: py312h41838bb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda + sha256: 9ed208c4c844c50f161764df7ed7a226c42822917c892ab7c8f67eec6ca96dff + md5: d87798aa7210da2c5eaf96c0346dca00 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 59057 + timestamp: 1699533259706 - kind: conda name: wrapt version: 1.16.0 @@ -7932,6 +17397,24 @@ packages: - pkg:pypi/wrapt size: 62482 timestamp: 1699532968076 +- kind: conda + name: wrapt + version: 1.16.0 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda + sha256: dc8431b343961347ad93b33d2d8270e8c15d8825382f4f2540835c94aba2de05 + md5: fa957a1c7bee7e47ad44633caf7be8bc + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 62482 + timestamp: 1699532968076 - kind: conda name: wrapt version: 1.16.0 @@ -7950,6 +17433,24 @@ packages: - pkg:pypi/wrapt size: 59676 timestamp: 1699533197501 +- kind: conda + name: wrapt + version: 1.16.0 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py312he37b823_0.conda + sha256: 25824dd9a22f2c1e8f205eb55c906b28b2f4748a68cb8e3d95ffdf73f08cbac9 + md5: 86726ebb1f6da39c68f306ae624ee4ed + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 59676 + timestamp: 1699533197501 - kind: conda name: wrapt version: 1.16.0 @@ -7970,6 +17471,39 @@ packages: - pkg:pypi/wrapt size: 61358 timestamp: 1699533495284 +- kind: conda + name: wrapt + version: 1.16.0 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py312he70551f_0.conda + sha256: e4b5ac6c897e68a798dfe13a1499dc9b555c48b468aa477d456807f2a7366c30 + md5: cea7b1aa961de6a8ac90584b5968a01d + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 61358 + timestamp: 1699533495284 +- kind: conda + name: xz + version: 5.2.6 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + md5: 2161070d867d1b1204ea749c8eec4ef0 + depends: + - libgcc-ng >=12 + license: LGPL-2.1 and GPL-2.0 + size: 418368 + timestamp: 1660346797927 - kind: conda name: xz version: 5.2.6 @@ -7981,6 +17515,7 @@ packages: depends: - libgcc-ng >=12 license: LGPL-2.1 and GPL-2.0 + purls: [] size: 418368 timestamp: 1660346797927 - kind: conda @@ -7992,8 +17527,31 @@ packages: sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec md5: 39c6b54e94014701dd157f4f576ed211 license: LGPL-2.1 and GPL-2.0 - size: 235693 - timestamp: 1660346961024 + size: 235693 + timestamp: 1660346961024 +- kind: conda + name: xz + version: 5.2.6 + build: h57fd34a_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + md5: 39c6b54e94014701dd157f4f576ed211 + license: LGPL-2.1 and GPL-2.0 + purls: [] + size: 235693 + timestamp: 1660346961024 +- kind: conda + name: xz + version: 5.2.6 + build: h775f41a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + md5: a72f9d4ea13d55d745ff1ed594747f10 + license: LGPL-2.1 and GPL-2.0 + size: 238119 + timestamp: 1660346964847 - kind: conda name: xz version: 5.2.6 @@ -8003,6 +17561,7 @@ packages: sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 md5: a72f9d4ea13d55d745ff1ed594747f10 license: LGPL-2.1 and GPL-2.0 + purls: [] size: 238119 timestamp: 1660346964847 - kind: conda @@ -8019,6 +17578,34 @@ packages: license: LGPL-2.1 and GPL-2.0 size: 217804 timestamp: 1660346976440 +- kind: conda + name: xz + version: 5.2.6 + build: h8d14728_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 + md5: 515d77642eaa3639413c6b1bc3f94219 + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: LGPL-2.1 and GPL-2.0 + purls: [] + size: 217804 + timestamp: 1660346976440 +- kind: conda + name: yaml + version: 0.2.5 + build: h0d85af4_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 + md5: d7e08fcf8259d742156188e8762b4d20 + license: MIT + license_family: MIT + size: 84237 + timestamp: 1641347062780 - kind: conda name: yaml version: 0.2.5 @@ -8030,6 +17617,7 @@ packages: md5: d7e08fcf8259d742156188e8762b4d20 license: MIT license_family: MIT + purls: [] size: 84237 timestamp: 1641347062780 - kind: conda @@ -8045,6 +17633,20 @@ packages: license_family: MIT size: 88016 timestamp: 1641347076660 +- kind: conda + name: yaml + version: 0.2.5 + build: h3422bc3_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + md5: 4bb3f014845110883a3c5ee811fd84b4 + license: MIT + license_family: MIT + purls: [] + size: 88016 + timestamp: 1641347076660 - kind: conda name: yaml version: 0.2.5 @@ -8060,6 +17662,22 @@ packages: license_family: MIT size: 89141 timestamp: 1641346969816 +- kind: conda + name: yaml + version: 0.2.5 + build: h7f98852_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae + depends: + - libgcc-ng >=9.4.0 + license: MIT + license_family: MIT + purls: [] + size: 89141 + timestamp: 1641346969816 - kind: conda name: yaml version: 0.2.5 @@ -8076,6 +17694,23 @@ packages: license_family: MIT size: 63274 timestamp: 1641347623319 +- kind: conda + name: yaml + version: 0.2.5 + build: h8ffe710_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 + md5: adbfb9f45d1004a26763652246a33764 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: MIT + license_family: MIT + purls: [] + size: 63274 + timestamp: 1641347623319 - kind: conda name: yaml-cpp version: 0.8.0 @@ -8156,6 +17791,23 @@ packages: - pkg:pypi/zipp size: 18954 timestamp: 1695255262261 +- kind: conda + name: zipp + version: 3.19.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + sha256: e3e9c8501f581bfdc4700b83ea283395e237ec6b9b5cbfbedb556e1da6f4fdc9 + md5: 49808e59df5535116f6878b2a820d6f4 + depends: + - python >=3.8 + license: MIT + license_family: MIT + purls: + - pkg:pypi/zipp?source=conda-forge-mapping + size: 20917 + timestamp: 1718013395428 - kind: conda name: zstandard version: 0.22.0 @@ -8241,6 +17893,270 @@ packages: - pkg:pypi/zstandard size: 415099 timestamp: 1698830281446 +- kind: conda + name: zstandard + version: 0.23.0 + build: py310h0e17136_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py310h0e17136_0.conda + sha256: 58bf5ea4088fb35b77ea782bbacff543c491b81f3736ab0889b32715875c8da3 + md5: 6ab528988876dcf5680f8e4b3d833416 + depends: + - __osx >=10.13 + - cffi >=1.11 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 402180 + timestamp: 1721044244377 +- kind: conda + name: zstandard + version: 0.23.0 + build: py310h64cae3c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310h64cae3c_0.conda + sha256: de35f156899fc51bf28895989bd04a048849657ddd7a8baa29d09c4e254cd336 + md5: b527de1849629f2635dafc77745b015a + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 407508 + timestamp: 1721044137484 +- kind: conda + name: zstandard + version: 0.23.0 + build: py310hd9c37c8_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py310hd9c37c8_0.conda + sha256: 48c1ae9b9ff5d8854d214b92b3c0d8857694c942f18838aa1db500bcb6eef768 + md5: c631ea71aa30944076d07a9d7ba274a0 + depends: + - __osx >=11.0 + - cffi >=1.11 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 322406 + timestamp: 1721044389403 +- kind: conda + name: zstandard + version: 0.23.0 + build: py310he5e10e1_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310he5e10e1_0.conda + sha256: 9056ac084dfa12fba1d50352c68d3b9b9311d2741199cf75f94c25148431ab86 + md5: b2566258cb2785003ed52f08f98fb16f + depends: + - cffi >=1.11 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 310488 + timestamp: 1721044503613 +- kind: conda + name: zstandard + version: 0.23.0 + build: py311h4a6b76e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py311h4a6b76e_0.conda + sha256: c372898778c58816cf8ad0031504ffb9a451d92c8547e2e524e6e61c1df5d9a3 + md5: 0571c2ddfd8f08fbf08f3333ac826b2d + depends: + - __osx >=11.0 + - cffi >=1.11 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 332378 + timestamp: 1721044254516 +- kind: conda + name: zstandard + version: 0.23.0 + build: py311h51fa951_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py311h51fa951_0.conda + sha256: 5cbac17776b5c8bd27f08f6db4b05a7dc886966370626132654e1418a828931f + md5: 9e5d830263cca953b20bb760ca4b6a0d + depends: + - __osx >=10.13 + - cffi >=1.11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 412173 + timestamp: 1721044344005 +- kind: conda + name: zstandard + version: 0.23.0 + build: py311h53056dc_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py311h53056dc_0.conda + sha256: 3bd0e287215152d6e3a17090c015368b7632f907cecfb363e7a3391f8ee04f8e + md5: a2663051856bfd6ac673a93a0baa7aba + depends: + - cffi >=1.11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 322403 + timestamp: 1721044645946 +- kind: conda + name: zstandard + version: 0.23.0 + build: py311h5cd10c7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311h5cd10c7_0.conda + sha256: ee4e7202ed6d6027eabb9669252b4dfd8144d4fde644435ebe39ab608086e7af + md5: 8efe4fe2396281627b3450af8357b190 + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 416323 + timestamp: 1721044178290 +- kind: conda + name: zstandard + version: 0.23.0 + build: py312h331e495_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py312h331e495_0.conda + sha256: c1d379d1062f23e3fbd3dd8548fc6cf61b23d6f96b11e78c4e01f4761580cb02 + md5: fb62d40e45f51f7d6a7df47c9a12caf4 + depends: + - __osx >=10.13 + - cffi >=1.11 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 411066 + timestamp: 1721044218542 +- kind: conda + name: zstandard + version: 0.23.0 + build: py312h3483029_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312h3483029_0.conda + sha256: 7e1e105ea7eab2af591faebf743ff2493f53c313079e316419577925e4492b03 + md5: eab52e88c858d87cf5a069f79d10bb50 + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 416708 + timestamp: 1721044154409 +- kind: conda + name: zstandard + version: 0.23.0 + build: py312h721a963_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h721a963_0.conda + sha256: 6fc0d2f7a0a49a7c1453bb9eacd5456214b6cf000760067d72f0cce464975fa1 + md5: caf7f5b85615a132c0fa586b82bd59e6 + depends: + - __osx >=11.0 + - cffi >=1.11 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 332489 + timestamp: 1721044244889 +- kind: conda + name: zstandard + version: 0.23.0 + build: py312h7606c53_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h7606c53_0.conda + sha256: 907edf473419a5aff6151900d09bb3f2b2c2ede8964f20ae87cb6fae04d0cbb7 + md5: c405924e081cb476495ffe72c88e92c2 + depends: + - cffi >=1.11 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 320649 + timestamp: 1721044547910 - kind: conda name: zstd version: 1.5.5 @@ -8306,3 +18222,70 @@ packages: purls: [] size: 545199 timestamp: 1693151163452 +- kind: conda + name: zstd + version: 1.5.6 + build: h0ea2cb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda + sha256: 768e30dc513568491818fb068ee867c57c514b553915536da09e5d10b4ebf3c3 + md5: 9a17230f95733c04dc40a2b1e5491d74 + depends: + - libzlib >=1.2.13,<2.0.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 349143 + timestamp: 1714723445995 +- kind: conda + name: zstd + version: 1.5.6 + build: h915ae27_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 + md5: 4cb2cd56f039b129bb0e491c1164167e + depends: + - __osx >=10.9 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 498900 + timestamp: 1714723303098 +- kind: conda + name: zstd + version: 1.5.6 + build: ha6fb4c9_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b + md5: 4d056880988120e29d75bfff282e0f45 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 554846 + timestamp: 1714722996770 +- kind: conda + name: zstd + version: 1.5.6 + build: hb46c0d2_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda + sha256: 2d4fd1ff7ee79cd954ca8e81abf11d9d49954dd1fef80f27289e2402ae9c2e09 + md5: d96942c06c3e84bfcc5efb038724a7fd + depends: + - __osx >=11.0 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 405089 + timestamp: 1714723101397 diff --git a/pixi.toml b/pixi.toml index 3385f59..6d34c12 100644 --- a/pixi.toml +++ b/pixi.toml @@ -55,7 +55,7 @@ python = "3.11.*" python = "3.10.*" [environments] -py312 = { features = ["py312"], solve-group = "py312" } -py311 = ["py311"] -py310 = ["py310"] +py312 = { features = ["py312", "test"], solve-group = "py312" } +py311 = ["py311", "test"] +py310 = ["py310", "test"] lint = { features = ["lint"], no-default-feature = true, solve-group = "default" } From bf36151ad2bdf61982c2471611d957ab5b8016c4 Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Thu, 18 Jul 2024 16:51:42 +0200 Subject: [PATCH 21/31] Re-render lock file --- pixi.lock | 2635 ++++++++--------------------------------------------- 1 file changed, 405 insertions(+), 2230 deletions(-) diff --git a/pixi.lock b/pixi.lock index de1cf42..2723c58 100644 --- a/pixi.lock +++ b/pixi.lock @@ -695,6 +695,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py310hb1bd9d3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py310hc51659f_0.conda @@ -705,6 +706,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_0.conda @@ -759,6 +761,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py310h2372a71_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.14-hd12c33a_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py310hff52083_0.conda @@ -775,9 +778,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py310h42e942d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py310h2372a71_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py310h2372a71_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py310hea9781c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda @@ -821,6 +826,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py310h8d695f1_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py310h936d840_0.conda @@ -831,6 +837,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py310h2ec42d9_0.conda @@ -880,6 +887,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py310h6729b98_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.14-h00d2728_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py310h2ec42d9_0.conda @@ -896,10 +904,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py310h12a1ced_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py310hb372a2b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py310hb372a2b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py310h6f176b8_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -944,6 +954,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py310ha71c378_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py310ha6dd24b_0.conda @@ -954,6 +965,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py310hbe9552e_0.conda @@ -1003,6 +1015,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py310h2aa6e3c_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.14-h2469fbe_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py310hbe9552e_0.conda @@ -1019,10 +1032,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py310h947b723_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py310hd125d64_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py310hd125d64_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py310h3dab08e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -1064,6 +1079,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py310h25a5809_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py310ha8f682b_0.conda @@ -1073,6 +1089,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_0.conda @@ -1115,6 +1132,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py310h635b8f1_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.14-h4de0772_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py310h5588dad_0.conda @@ -1130,9 +1148,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py310hc226416_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py310h8d17308_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py310h8d17308_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py310h7f1804c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda @@ -1187,6 +1207,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py311h4a61cc7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py311h331c9d8_0.conda @@ -1197,6 +1218,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_0.conda @@ -1252,6 +1274,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py311h459d7ec_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py311h38be061_0.conda @@ -1268,9 +1291,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py311hb3a8bbb_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py311h459d7ec_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py311hce3a109_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda @@ -1314,6 +1339,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py311h4ba4ffd_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py311h72ae277_0.conda @@ -1324,6 +1350,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py311h6eed73b_0.conda @@ -1374,6 +1401,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py311h2725bcf_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py311h6eed73b_0.conda @@ -1390,10 +1418,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py311h295b1db_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py311he705e18_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py311h9a97b26_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -1438,6 +1468,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py311hcaeb4ce_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py311hd3f4193_0.conda @@ -1448,6 +1479,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py311h267d04e_0.conda @@ -1498,6 +1530,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py311heffc1b2_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.9-h932a869_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py311h267d04e_0.conda @@ -1514,10 +1547,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py311h98c6a39_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py311h05b510d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py311hd374d79_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -1559,6 +1594,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py311hfd75b31_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py311he736701_0.conda @@ -1568,6 +1604,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_0.conda @@ -1611,6 +1648,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py311hd53affc_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.9-h631f459_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py311h1ea47a8_0.conda @@ -1626,9 +1664,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py311h533ab2d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py311ha68e1ae_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py311ha637bb9_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda @@ -1683,6 +1723,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py312hbcc2302_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py312h9a8786e_0.conda @@ -1693,6 +1734,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_0.conda @@ -1748,6 +1790,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py312h7900ff3_0.conda @@ -1764,9 +1807,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py312hf008fa9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py312hbe4c86d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda @@ -1810,6 +1855,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py312h7e81a9d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py312hbd25219_0.conda @@ -1820,6 +1866,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py312hb401068_0.conda @@ -1870,6 +1917,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda @@ -1886,10 +1934,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py312ha47ea1c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py312h8b25c6c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -1934,6 +1984,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py312had01cb0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py312h7e5086c_0.conda @@ -1944,6 +1995,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py312h81bd7bf_0.conda @@ -1994,6 +2046,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.4-h30c5eda_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py312h81bd7bf_0.conda @@ -2010,10 +2063,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py312h552d48e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py312h3402d49_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -2055,6 +2110,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py312h9500af3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py312h4389bb4_0.conda @@ -2064,6 +2120,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_0.conda @@ -2107,6 +2164,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.4-h889d299_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py312h2e8e312_0.conda @@ -2122,9 +2180,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py312h2615798_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py312h7a6832a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda @@ -2147,17 +2207,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda - pypi: . packages: -- kind: conda - name: _libgcc_mutex - version: '0.1' - build: conda_forge - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - md5: d7c89558ba9fa0495403155b64376d81 - license: None - size: 2562 - timestamp: 1578324546067 - kind: conda name: _libgcc_mutex version: '0.1' @@ -2170,24 +2219,6 @@ packages: purls: [] size: 2562 timestamp: 1578324546067 -- kind: conda - name: _openmp_mutex - version: '4.5' - build: 2_gnu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - md5: 73aaf86a425cc6e73fcf236a5a46396d - depends: - - _libgcc_mutex 0.1 conda_forge - - libgomp >=7.5.0 - constrains: - - openmp_impl 9999 - license: BSD-3-Clause - license_family: BSD - size: 23621 - timestamp: 1650670423406 - kind: conda name: _openmp_mutex version: '4.5' @@ -2207,22 +2238,6 @@ packages: purls: [] size: 23621 timestamp: 1650670423406 -- kind: conda - name: archspec - version: 0.2.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda - sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7 - md5: 192278292e20704f663b9c766909d67b - depends: - - python >=3.6 - license: MIT OR Apache-2.0 - purls: - - pkg:pypi/archspec - size: 48780 - timestamp: 1708969700251 - kind: conda name: archspec version: 0.2.3 @@ -2239,23 +2254,6 @@ packages: - pkg:pypi/archspec?source=conda-forge-mapping size: 48780 timestamp: 1708969700251 -- kind: conda - name: attrs - version: 23.2.0 - build: pyh71513ae_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea - md5: 5e4c0743c70186509d1412e03c2d8dfa - depends: - - python >=3.7 - license: MIT - license_family: MIT - purls: - - pkg:pypi/attrs - size: 54582 - timestamp: 1704011393776 - kind: conda name: attrs version: 23.2.0 @@ -2273,24 +2271,6 @@ packages: - pkg:pypi/attrs?source=conda-forge-mapping size: 54582 timestamp: 1704011393776 -- kind: conda - name: beautifulsoup4 - version: 4.12.3 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 - md5: 332493000404d8411859539a5a630865 - depends: - - python >=3.6 - - soupsieve >=1.2 - license: MIT - license_family: MIT - purls: - - pkg:pypi/beautifulsoup4 - size: 118200 - timestamp: 1705564819537 - kind: conda name: beautifulsoup4 version: 4.12.3 @@ -2309,23 +2289,6 @@ packages: - pkg:pypi/beautifulsoup4?source=conda-forge-mapping size: 118200 timestamp: 1705564819537 -- kind: conda - name: boltons - version: 24.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc - md5: 61de176bd62041f9cd5bd4fcd09eb0ff - depends: - - python ==2.7.*|>=3.7 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/boltons - size: 297896 - timestamp: 1711936529147 - kind: conda name: boltons version: 24.0.0 @@ -2519,28 +2482,6 @@ packages: - pkg:pypi/brotli?source=conda-forge-mapping size: 366864 timestamp: 1695990449997 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h30efb56_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda - sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f - md5: 45801a89533d3336a365284d93298e36 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hd590300_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 350604 - timestamp: 1695990206327 - kind: conda name: brotli-python version: 1.1.0 @@ -2563,29 +2504,6 @@ packages: - pkg:pypi/brotli?source=conda-forge-mapping size: 350604 timestamp: 1695990206327 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h53d5487_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda - sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 - md5: d01a6667b99f0e8ad4097af66c938e62 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - libbrotlicommon 1.1.0 hcfcfb64_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 322514 - timestamp: 1695991054894 - kind: conda name: brotli-python version: 1.1.0 @@ -2609,28 +2527,6 @@ packages: - pkg:pypi/brotli?source=conda-forge-mapping size: 322514 timestamp: 1695991054894 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h9f69965_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda - sha256: 3418b1738243abba99e931c017b952771eeaa1f353c07f7d45b55e83bb74fcb3 - md5: 1bc01b9ffdf42beb1a9fe4e9222e0567 - depends: - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hb547adb_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 343435 - timestamp: 1695990731924 - kind: conda name: brotli-python version: 1.1.0 @@ -2653,27 +2549,6 @@ packages: - pkg:pypi/brotli?source=conda-forge-mapping size: 343435 timestamp: 1695990731924 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312heafc425_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda - sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 - md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a - depends: - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli - size: 366883 - timestamp: 1695990710194 - kind: conda name: brotli-python version: 1.1.0 @@ -2695,27 +2570,6 @@ packages: - pkg:pypi/brotli?source=conda-forge-mapping size: 366883 timestamp: 1695990710194 -- kind: conda - name: build - version: 0.7.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb - md5: add7f31586d03678695b32b78a1337a1 - depends: - - importlib-metadata - - packaging - - pep517 >=0.9.1 - - python >=3.6 - - tomli - license: MIT - license_family: MIT - purls: - - pkg:pypi/build - size: 17759 - timestamp: 1631843776429 - kind: conda name: build version: 0.7.0 @@ -3190,29 +3044,6 @@ packages: purls: [] size: 21451 timestamp: 1710484533466 -- kind: conda - name: cctools_osx-64 - version: '986' - build: h58a35ae_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda - sha256: a11f85e26b7189af87aa7e42b29a80f6bae73a92710cd5a40e278d6376a66ef5 - md5: 1139258589f2d752a578ed5b2680eb60 - depends: - - ld64_osx-64 >=711,<712.0a0 - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - sigtool - constrains: - - ld64 711.* - - cctools 986.* - - clang 18.1.* - license: APSL-2.0 - license_family: Other - purls: [] - size: 1104790 - timestamp: 1710484461097 - kind: conda name: cctools_osx-64 version: '986' @@ -3236,29 +3067,6 @@ packages: purls: [] size: 1104790 timestamp: 1710484461097 -- kind: conda - name: cctools_osx-arm64 - version: '986' - build: hd11630f_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda - sha256: 4152323bbb78e2730fea9004333c9c51fb82a9ddd935f005280bf621849ec53d - md5: cce200c91b2d291c85e66098fe0d31c2 - depends: - - ld64_osx-arm64 >=711,<712.0a0 - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - sigtool - constrains: - - cctools 986.* - - clang 18.1.* - - ld64 711.* - license: APSL-2.0 - license_family: Other - purls: [] - size: 1123368 - timestamp: 1710484635601 - kind: conda name: cctools_osx-arm64 version: '986' @@ -3489,58 +3297,23 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping size: 282370 timestamp: 1696002004433 - kind: conda name: cffi version: 1.16.0 - build: py312h38bf5a0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda - sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e - md5: a45759c013ab20b9017ef9539d234dd7 + build: py312h8e38eb3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda + sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 + md5: 960ecbd65860d3b1de5e30373e1bffb1 depends: - libffi >=3.4,<4.0a0 - pycparser - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 282370 - timestamp: 1696002004433 -- kind: conda - name: cffi - version: 1.16.0 - build: py312h8e38eb3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda - sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 - md5: 960ecbd65860d3b1de5e30373e1bffb1 - depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 284245 - timestamp: 1696002181644 -- kind: conda - name: cffi - version: 1.16.0 - build: py312h8e38eb3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda - sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 - md5: 960ecbd65860d3b1de5e30373e1bffb1 - depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python >=3.12.0rc3,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: MIT license_family: MIT @@ -3548,25 +3321,6 @@ packages: - pkg:pypi/cffi?source=conda-forge-mapping size: 284245 timestamp: 1696002181644 -- kind: conda - name: cffi - version: 1.16.0 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda - sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 - md5: 5a51096925d52332c62bfd8904899055 - depends: - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 287805 - timestamp: 1696002408940 - kind: conda name: cffi version: 1.16.0 @@ -3588,24 +3342,6 @@ packages: - pkg:pypi/cffi?source=conda-forge-mapping size: 287805 timestamp: 1696002408940 -- kind: conda - name: cffi - version: 1.16.0 - build: py312hf06ca03_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda - sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 - md5: 56b0ca764ce23cc54f3f7e2a7b970f6d - depends: - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 294523 - timestamp: 1696001868949 - kind: conda name: cffi version: 1.16.0 @@ -3787,24 +3523,6 @@ packages: - pkg:pypi/chardet?source=conda-forge-mapping size: 267330 timestamp: 1695468986364 -- kind: conda - name: chardet - version: 5.2.0 - build: py312h2e8e312_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda - sha256: 105e8f3c7a4510d8b8e3f164970c898e2b7ea02417b99369c7f58a0bb95af34d - md5: fcc4fea02fa461bc3ad2a5d6de0c43a8 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet - size: 277773 - timestamp: 1695468989681 - kind: conda name: chardet version: 5.2.0 @@ -3823,24 +3541,6 @@ packages: - pkg:pypi/chardet?source=conda-forge-mapping size: 277773 timestamp: 1695468989681 -- kind: conda - name: chardet - version: 5.2.0 - build: py312h7900ff3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda - sha256: 584804790b465c8e28b3c3fcea8e774cb659fe479afd8adc0d39406e8c220194 - md5: af3980cc4690716a5510c8a08cb06238 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet - size: 260197 - timestamp: 1695468803539 - kind: conda name: chardet version: 5.2.0 @@ -3859,25 +3559,6 @@ packages: - pkg:pypi/chardet?source=conda-forge-mapping size: 260197 timestamp: 1695468803539 -- kind: conda - name: chardet - version: 5.2.0 - build: py312h81bd7bf_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda - sha256: 2451501ec933017ff77c18436884baa90b289420c43ad4bdb4fe60d55e5dcdfd - md5: ea728c39b7453cb5f7177bc44ee22c73 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet - size: 263585 - timestamp: 1695469015195 - kind: conda name: chardet version: 5.2.0 @@ -3897,24 +3578,6 @@ packages: - pkg:pypi/chardet?source=conda-forge-mapping size: 263585 timestamp: 1695469015195 -- kind: conda - name: chardet - version: 5.2.0 - build: py312hb401068_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda - sha256: ba2ebeb6d05a3cdd94dbd7a52dabc0686192e4337774c4f7c32da7ef0e04dd10 - md5: 488080e6ee9bc087762669d1f6d2dc8a - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet - size: 259854 - timestamp: 1695468947554 - kind: conda name: chardet version: 5.2.0 @@ -3933,23 +3596,6 @@ packages: - pkg:pypi/chardet?source=conda-forge-mapping size: 259854 timestamp: 1695468947554 -- kind: conda - name: charset-normalizer - version: 3.3.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 - md5: 7f4a9e3fcff3f6356ae99244a014da6a - depends: - - python >=3.7 - license: MIT - license_family: MIT - purls: - - pkg:pypi/charset-normalizer - size: 46597 - timestamp: 1698833765762 - kind: conda name: charset-normalizer version: 3.3.2 @@ -3967,24 +3613,6 @@ packages: - pkg:pypi/charset-normalizer?source=conda-forge-mapping size: 46597 timestamp: 1698833765762 -- kind: conda - name: click - version: 8.1.7 - build: unix_pyh707e725_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec - md5: f3ad426304898027fc619827ff428eca - depends: - - __unix - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/click - size: 84437 - timestamp: 1692311973840 - kind: conda name: click version: 8.1.7 @@ -4003,25 +3631,6 @@ packages: - pkg:pypi/click?source=conda-forge-mapping size: 84437 timestamp: 1692311973840 -- kind: conda - name: click - version: 8.1.7 - build: win_pyh7428d3b_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 - md5: 3549ecbceb6cd77b91a105511b7d0786 - depends: - - __win - - colorama - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/click - size: 85051 - timestamp: 1692312207348 - kind: conda name: click version: 8.1.7 @@ -4041,23 +3650,6 @@ packages: - pkg:pypi/click?source=conda-forge-mapping size: 85051 timestamp: 1692312207348 -- kind: conda - name: colorama - version: 0.4.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - md5: 3faab06a954c2a04039983f2c4a50d99 - depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/colorama - size: 25170 - timestamp: 1666700778190 - kind: conda name: colorama version: 0.4.6 @@ -5884,24 +5476,6 @@ packages: - pkg:pypi/cryptography?source=conda-forge-mapping size: 1981326 timestamp: 1717559617177 -- kind: conda - name: deprecated - version: 1.2.14 - build: pyh1a96a4e_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 - md5: 4e4c4236e1ca9bcd8816b921a4805882 - depends: - - python >=2.7 - - wrapt <2,>=1.10 - license: MIT - license_family: MIT - purls: - - pkg:pypi/deprecated - size: 14033 - timestamp: 1685233463632 - kind: conda name: deprecated version: 1.2.14 @@ -5949,26 +5523,25 @@ packages: license: Apache-2.0 license_family: APACHE purls: - - pkg:pypi/distro + - pkg:pypi/distro?source=conda-forge-mapping size: 42039 timestamp: 1704321683916 - kind: conda - name: distro - version: 1.9.0 + name: exceptiongroup + version: 1.2.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda - sha256: ae1c13d709c8001331b5b9345e4bcd77e9ae712d25f7958b2ebcbe0b068731b7 - md5: bbdb409974cd6cb30071b1d978302726 + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + sha256: e0edd30c4b7144406bb4da975e6bb97d6bc9c0e999aa4efe66ae108cada5d5b5 + md5: d02ae936e42063ca46af6cdad2dbd1e0 depends: - - python >=3.6 - license: Apache-2.0 - license_family: APACHE + - python >=3.7 + license: MIT and PSF-2.0 purls: - - pkg:pypi/distro?source=conda-forge-mapping - size: 42039 - timestamp: 1704321683916 + - pkg:pypi/exceptiongroup?source=conda-forge-mapping + size: 20418 + timestamp: 1720869435725 - kind: conda name: filelock version: 3.13.4 @@ -6475,35 +6048,18 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/idna + - pkg:pypi/idna?source=conda-forge-mapping size: 52718 timestamp: 1713279497047 - kind: conda - name: idna - version: '3.7' - build: pyhd8ed1ab_0 + name: importlib-metadata + version: 7.1.0 + build: pyha770c72_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b - md5: c0cc1420498b17414d8617d0b9f506ca - depends: - - python >=3.6 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/idna?source=conda-forge-mapping - size: 52718 - timestamp: 1713279497047 -- kind: conda - name: importlib-metadata - version: 7.1.0 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda - sha256: cc2e7d1f7f01cede30feafc1118b7aefa244d0a12224513734e24165ae12ba49 - md5: 0896606848b2dc5cebdf111b6543aa04 + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda + sha256: cc2e7d1f7f01cede30feafc1118b7aefa244d0a12224513734e24165ae12ba49 + md5: 0896606848b2dc5cebdf111b6543aa04 depends: - python >=3.8 - zipp >=0.5 @@ -6548,29 +6104,26 @@ packages: license: Apache-2.0 license_family: APACHE purls: - - pkg:pypi/importlib-resources + - pkg:pypi/importlib-resources?source=conda-forge-mapping size: 33056 timestamp: 1711041009039 - kind: conda - name: importlib_resources - version: 6.4.0 + name: iniconfig + version: 2.0.0 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - sha256: c6ae80c0beaeabb342c5b041f19669992ae6e937dbec56ced766cb035900f9de - md5: c5d3907ad8bd7bf557521a1833cf7e6d + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + md5: f800d2da156d08e289b14e87e43c1ae5 depends: - - python >=3.8 - - zipp >=3.1.0 - constrains: - - importlib-resources >=6.4.0,<6.4.1.0a0 - license: Apache-2.0 - license_family: APACHE + - python >=3.7 + license: MIT + license_family: MIT purls: - - pkg:pypi/importlib-resources?source=conda-forge-mapping - size: 33056 - timestamp: 1711041009039 + - pkg:pypi/iniconfig?source=conda-forge-mapping + size: 11101 + timestamp: 1673103208955 - kind: conda name: jinja2 version: 3.1.3 @@ -6607,24 +6160,6 @@ packages: - pkg:pypi/jinja2?source=conda-forge-mapping size: 111565 timestamp: 1715127275924 -- kind: conda - name: jsonpatch - version: '1.33' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda - sha256: fbb17e33ace3225c6416d1604637c1058906b8223da968cc015128985336b2b4 - md5: bfdb7c5c6ad1077c82a69a8642c87aff - depends: - - jsonpointer >=1.9 - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/jsonpatch - size: 17366 - timestamp: 1695536420928 - kind: conda name: jsonpatch version: '1.33' @@ -6969,25 +6504,6 @@ packages: - pkg:pypi/jsonschema?source=conda-forge-mapping size: 74323 timestamp: 1720529611305 -- kind: conda - name: jsonschema-specifications - version: 2023.12.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - sha256: a9630556ddc3121c0be32f4cbf792dd9102bd380d5cd81d57759d172cf0c2da2 - md5: a0e4efb5f35786a05af4809a2fb1f855 - depends: - - importlib_resources >=1.4.0 - - python >=3.8 - - referencing >=0.31.0 - license: MIT - license_family: MIT - purls: - - pkg:pypi/jsonschema-specifications - size: 16431 - timestamp: 1703778502971 - kind: conda name: jsonschema-specifications version: 2023.12.1 @@ -7838,22 +7354,6 @@ packages: purls: [] size: 112766 timestamp: 1702146165126 -- kind: conda - name: libexpat - version: 2.6.2 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda - sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19 - md5: e7ba12deb7020dd080c6c70e7b6f6a3d - depends: - - libgcc-ng >=12 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 73730 - timestamp: 1710362120304 - kind: conda name: libexpat version: 2.6.2 @@ -7871,20 +7371,6 @@ packages: purls: [] size: 73730 timestamp: 1710362120304 -- kind: conda - name: libexpat - version: 2.6.2 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda - sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 - md5: bc592d03f62779511d392c175dcece64 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 139224 - timestamp: 1710362609641 - kind: conda name: libexpat version: 2.6.2 @@ -7900,20 +7386,6 @@ packages: purls: [] size: 139224 timestamp: 1710362609641 -- kind: conda - name: libexpat - version: 2.6.2 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda - sha256: a188a77b275d61159a32ab547f7d17892226e7dac4518d2c6ac3ac8fc8dfde92 - md5: 3d1d51c8f716d97c864d12f7af329526 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 69246 - timestamp: 1710362566073 - kind: conda name: libexpat version: 2.6.2 @@ -7929,20 +7401,6 @@ packages: purls: [] size: 69246 timestamp: 1710362566073 -- kind: conda - name: libexpat - version: 2.6.2 - build: hebf3989_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda - sha256: ba7173ac30064ea901a4c9fb5a51846dcc25512ceb565759be7d18cbf3e5415e - md5: e3cde7cfa87f82f7cb13d482d5e0ad09 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 63655 - timestamp: 1710362424980 - kind: conda name: libexpat version: 2.6.2 @@ -7958,19 +7416,6 @@ packages: purls: [] size: 63655 timestamp: 1710362424980 -- kind: conda - name: libffi - version: 3.4.2 - build: h0d85af4_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - md5: ccb34fb14960ad8b125962d3d79b31a9 - license: MIT - license_family: MIT - size: 51348 - timestamp: 1636488394370 - kind: conda name: libffi version: 3.4.2 @@ -7985,19 +7430,6 @@ packages: purls: [] size: 51348 timestamp: 1636488394370 -- kind: conda - name: libffi - version: 3.4.2 - build: h3422bc3_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca - md5: 086914b672be056eb70fd4285b6783b6 - license: MIT - license_family: MIT - size: 39020 - timestamp: 1636488587153 - kind: conda name: libffi version: 3.4.2 @@ -8012,21 +7444,6 @@ packages: purls: [] size: 39020 timestamp: 1636488587153 -- kind: conda - name: libffi - version: 3.4.2 - build: h7f98852_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - depends: - - libgcc-ng >=9.4.0 - license: MIT - license_family: MIT - size: 58292 - timestamp: 1636488182923 - kind: conda name: libffi version: 3.4.2 @@ -8043,22 +7460,6 @@ packages: purls: [] size: 58292 timestamp: 1636488182923 -- kind: conda - name: libffi - version: 3.4.2 - build: h8ffe710_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - md5: 2c96d1b6915b408893f9472569dee135 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: MIT - license_family: MIT - size: 42063 - timestamp: 1636489106777 - kind: conda name: libffi version: 3.4.2 @@ -8671,30 +8072,6 @@ packages: - pkg:pypi/libmambapy?source=conda-forge-mapping size: 311255 timestamp: 1711395017728 -- kind: conda - name: libmambapy - version: 1.5.8 - build: py312h344e357_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py312h344e357_0.conda - sha256: 7cb94cf454c20cf25cf0c394e812ca7f86ceae47bb45f5b11518dd204f752cf0 - md5: 9167478ca4942d118d3b79f6149c758f - depends: - - fmt >=10.2.1,<11.0a0 - - libcxx >=16 - - libmamba 1.5.8 h90c426b_0 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 255134 - timestamp: 1711395612039 - kind: conda name: libmambapy version: 1.5.8 @@ -8719,31 +8096,6 @@ packages: - pkg:pypi/libmambapy?source=conda-forge-mapping size: 255134 timestamp: 1711395612039 -- kind: conda - name: libmambapy - version: 1.5.8 - build: py312h66cf91f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py312h66cf91f_0.conda - sha256: 6e27057b03d816b7992b7fa10df62b95ddfae596aade74802e9b2ec09792ca57 - md5: f29a796cc77bd964b396144103dc0c13 - depends: - - fmt >=10.2.1,<11.0a0 - - libmamba 1.5.8 h3f09ed1_0 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 634593 - timestamp: 1711396223183 - kind: conda name: libmambapy version: 1.5.8 @@ -8769,29 +8121,6 @@ packages: - pkg:pypi/libmambapy?source=conda-forge-mapping size: 634593 timestamp: 1711396223183 -- kind: conda - name: libmambapy - version: 1.5.8 - build: py312h67f5953_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py312h67f5953_0.conda - sha256: cb3f1fe02ef2c6bb39129e43af7dfcf1a3d98a4d4c21e5eed5a1f3ef1c0557fb - md5: c7d0f9c38601b87f6ebb0ba00fb02e5c - depends: - - fmt >=10.2.1,<11.0a0 - - libcxx >=16 - - libmamba 1.5.8 ha449628_0 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy - size: 272088 - timestamp: 1711395982732 - kind: conda name: libmambapy version: 1.5.8 @@ -8836,55 +8165,9 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/libmambapy + - pkg:pypi/libmambapy?source=conda-forge-mapping size: 306497 timestamp: 1711395345839 -- kind: conda - name: libmambapy - version: 1.5.8 - build: py312hd9e9ff6_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py312hd9e9ff6_0.conda - sha256: 429c8fd6f7be1040a52cedaa8cd7aa02a42ccc8a27baa0a4394516401e9d7b28 - md5: ab74748421323fd59d9fda55e45b979e - depends: - - fmt >=10.2.1,<11.0a0 - - libgcc-ng >=12 - - libmamba 1.5.8 had39da4_0 - - libstdcxx-ng >=12 - - openssl >=3.2.1,<4.0a0 - - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml-cpp >=0.8.0,<0.9.0a0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/libmambapy?source=conda-forge-mapping - size: 306497 - timestamp: 1711395345839 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: h47da74e_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda - sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb - md5: 700ac6ea6d53d5510591c4344d5c989a - depends: - - c-ares >=1.23.0,<2.0a0 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT - purls: [] - size: 631936 - timestamp: 1702130036271 - kind: conda name: libnghttp2 version: 1.58.0 @@ -8907,28 +8190,6 @@ packages: purls: [] size: 631936 timestamp: 1702130036271 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: h64cf6d3_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda - sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380 - md5: faecc55c2a8155d9ff1c0ff9a0fef64f - depends: - - __osx >=10.9 - - c-ares >=1.23.0,<2.0a0 - - libcxx >=16.0.6 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT - purls: [] - size: 599736 - timestamp: 1702130398536 - kind: conda name: libnghttp2 version: 1.58.0 @@ -8951,28 +8212,6 @@ packages: purls: [] size: 599736 timestamp: 1702130398536 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: ha4dd798_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda - sha256: fc97aaaf0c6d0f508be313d86c2705b490998d382560df24be918b8e977802cd - md5: 1813e066bfcef82de579a0be8a766df4 - depends: - - __osx >=10.9 - - c-ares >=1.23.0,<2.0a0 - - libcxx >=16.0.6 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT - purls: [] - size: 565451 - timestamp: 1702130473930 - kind: conda name: libnghttp2 version: 1.58.0 @@ -8995,20 +8234,6 @@ packages: purls: [] size: 565451 timestamp: 1702130473930 -- kind: conda - name: libnsl - version: 2.0.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - depends: - - libgcc-ng >=12 - license: LGPL-2.1-only - license_family: GPL - size: 33408 - timestamp: 1697359010159 - kind: conda name: libnsl version: 2.0.1 @@ -9383,23 +8608,6 @@ packages: license: Unlicense size: 830198 timestamp: 1718050644825 -- kind: conda - name: libssh2 - version: 1.11.0 - build: h0841786_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d - md5: 1f5a58e686b13bcfde88b93f547d23fe - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 271133 - timestamp: 1685837707056 - kind: conda name: libssh2 version: 1.11.0 @@ -9417,22 +8625,6 @@ packages: purls: [] size: 271133 timestamp: 1685837707056 -- kind: conda - name: libssh2 - version: 1.11.0 - build: h7a5bd25_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 - md5: 029f7dc931a3b626b94823bc77830b01 - depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 255610 - timestamp: 1685837894256 - kind: conda name: libssh2 version: 1.11.0 @@ -9449,25 +8641,6 @@ packages: purls: [] size: 255610 timestamp: 1685837894256 -- kind: conda - name: libssh2 - version: 1.11.0 - build: h7dfc565_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec - md5: dc262d03aae04fe26825062879141a41 - depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 266806 - timestamp: 1685838242099 - kind: conda name: libssh2 version: 1.11.0 @@ -9487,22 +8660,6 @@ packages: purls: [] size: 266806 timestamp: 1685838242099 -- kind: conda - name: libssh2 - version: 1.11.0 - build: hd019ec5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda - sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 - md5: ca3a72efba692c59a90d4b9fc0dfe774 - depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 259556 - timestamp: 1685837820566 - kind: conda name: libssh2 version: 1.11.0 @@ -9562,20 +8719,6 @@ packages: license_family: GPL size: 3881307 timestamp: 1719538923443 -- kind: conda - name: libuuid - version: 2.38.1 - build: h0b41bf4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 - md5: 40b61aab5c7ba9ff276c41cfffe6b80b - depends: - - libgcc-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 33601 - timestamp: 1680112270483 - kind: conda name: libuuid version: 2.38.1 @@ -9591,20 +8734,6 @@ packages: purls: [] size: 33601 timestamp: 1680112270483 -- kind: conda - name: libxcrypt - version: 4.4.36 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c - md5: 5aa797f8787fe7a17d1b0821485b5adc - depends: - - libgcc-ng >=12 - license: LGPL-2.1-or-later - size: 100393 - timestamp: 1702724383534 - kind: conda name: libxcrypt version: 4.4.36 @@ -10484,25 +9613,6 @@ packages: - pkg:pypi/markupsafe?source=conda-forge-mapping size: 26155 timestamp: 1706900211496 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda - sha256: 8dc8f31f78d00713300da000b6ebaa1943a17c112f267de310d5c3d82950079c - md5: c4a9c25c09cef3901789ca818d9beb10 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe - size: 25742 - timestamp: 1706900456837 - kind: conda name: markupsafe version: 2.1.5 @@ -10522,26 +9632,6 @@ packages: - pkg:pypi/markupsafe?source=conda-forge-mapping size: 25742 timestamp: 1706900456837 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda - sha256: 273d8efd6c089c534ccbede566394c0ac1e265bfe5d89fe76e80332f3d75a636 - md5: 6ff0b9582da2d4a74a1f9ae1f9ce2af6 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe - size: 26685 - timestamp: 1706900070330 - kind: conda name: markupsafe version: 2.1.5 @@ -10562,26 +9652,6 @@ packages: - pkg:pypi/markupsafe?source=conda-forge-mapping size: 26685 timestamp: 1706900070330 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py312he37b823_0.conda - sha256: 61480b725490f68856dd14e646f51ffc34f77f2c985bd33e3b77c04b2856d97d - md5: ba3a8f8cf8bbdb81394275b1e1d271da - depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe - size: 26382 - timestamp: 1706900495057 - kind: conda name: markupsafe version: 2.1.5 @@ -10621,29 +9691,7 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/markupsafe - size: 29060 - timestamp: 1706900374745 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda - sha256: f8690a3c87e2e96cebd434a829bb95cac43afe6c439530b336dc3452fe4ce4af - md5: 4950a739b19edaac1ed29ca9474e49ac - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/markupsafe?source=conda-forge-mapping + - pkg:pypi/markupsafe?source=conda-forge-mapping size: 29060 timestamp: 1706900374745 - kind: conda @@ -11507,24 +10555,6 @@ packages: purls: [] size: 94048 timestamp: 1673473024463 -- kind: conda - name: pep517 - version: 0.13.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 - sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 - md5: d94aa03d99d8adc9898f783eba0d84d2 - depends: - - python >=3.8 - - tomli - license: MIT - license_family: MIT - purls: - - pkg:pypi/pep517 - size: 19044 - timestamp: 1667916747996 - kind: conda name: pep517 version: 0.13.0 @@ -11577,23 +10607,6 @@ packages: - pkg:pypi/pkginfo?source=conda-forge-mapping size: 29692 timestamp: 1717941209022 -- kind: conda - name: pkgutil-resolve-name - version: 1.3.10 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a - md5: 405678b942f2481cecdb3e010f4925d9 - depends: - - python >=3.6 - license: MIT AND PSF-2.0 - purls: - - pkg:pypi/pkgutil-resolve-name - size: 10778 - timestamp: 1694617398467 - kind: conda name: pkgutil-resolve-name version: 1.3.10 @@ -12270,27 +11283,6 @@ packages: - pkg:pypi/lief?source=conda-forge-mapping size: 560420 timestamp: 1711564997607 -- kind: conda - name: py-lief - version: 0.14.1 - build: py312h1683c14_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py312h1683c14_1.conda - sha256: 758107fe3b36182cd654c1f0bfd0d9197c7d921130d9462934606bcf3d48c4a4 - md5: 9fd5fac90f4c02f0da97fb84d271caf9 - depends: - - __osx >=10.13 - - libcxx >=16 - - liblief 0.14.1 ha0df490_1 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/lief - size: 537434 - timestamp: 1711566440502 - kind: conda name: py-lief version: 0.14.1 @@ -12312,27 +11304,6 @@ packages: - pkg:pypi/lief?source=conda-forge-mapping size: 537434 timestamp: 1711566440502 -- kind: conda - name: py-lief - version: 0.14.1 - build: py312h2721eaf_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py312h2721eaf_1.conda - sha256: 09e288c5a14f7469e551ab810e6e9e24c8fbe15e3e02004750e9754ade2979f6 - md5: b157344e38369e52964a83bf85ef93d4 - depends: - - __osx >=11.0 - - libcxx >=16 - - liblief 0.14.1 h3f3aa29_1 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/lief - size: 539467 - timestamp: 1711566025401 - kind: conda name: py-lief version: 0.14.1 @@ -12354,30 +11325,6 @@ packages: - pkg:pypi/lief?source=conda-forge-mapping size: 539467 timestamp: 1711566025401 -- kind: conda - name: py-lief - version: 0.14.1 - build: py312h275cf98_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py312h275cf98_1.conda - sha256: a8a2a2c82272e1819b113da9975ca00a74659e5c819e4970e9350de5863073cb - md5: 33f97d4de13a9c6442aa5a1cabc1f547 - depends: - - liblief 0.14.1 he0c23c2_1 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc >=14.3,<15 - - vc14_runtime >=14.29.30139 - - vc14_runtime >=14.38.33130 - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/lief - size: 561588 - timestamp: 1711565313159 - kind: conda name: py-lief version: 0.14.1 @@ -12402,27 +11349,6 @@ packages: - pkg:pypi/lief?source=conda-forge-mapping size: 561588 timestamp: 1711565313159 -- kind: conda - name: py-lief - version: 0.14.1 - build: py312h7070661_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py312h7070661_1.conda - sha256: 8410ab9d798a10299133a0e105c3c50cf3cde1cc21bbd79eae3df6f8fd56e289 - md5: f69fc698e1625960fd3cc5cc796205f6 - depends: - - libgcc-ng >=12 - - liblief 0.14.1 hac33072_1 - - libstdcxx-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/lief - size: 758297 - timestamp: 1711563364357 - kind: conda name: py-lief version: 0.14.1 @@ -12605,24 +11531,6 @@ packages: - pkg:pypi/pycosat?source=conda-forge-mapping size: 85652 timestamp: 1696356197481 -- kind: conda - name: pycosat - version: 0.6.6 - build: py312h02f2b3b_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py312h02f2b3b_0.conda - sha256: 79622e905c3185fe96c57bf6c57b20c545e86b3a6e7da88f24dc50d03ddbe3a6 - md5: 4d07092345b6e66e580ce3cd9141c6da - depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pycosat - size: 86424 - timestamp: 1696356256622 - kind: conda name: pycosat version: 0.6.6 @@ -12641,23 +11549,6 @@ packages: - pkg:pypi/pycosat?source=conda-forge-mapping size: 86424 timestamp: 1696356256622 -- kind: conda - name: pycosat - version: 0.6.6 - build: py312h104f124_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h104f124_0.conda - sha256: b37afbc13d4216dde3a613ded3a1688adae3d74ab98ea55cc6914b39d2417d55 - md5: 106c2d37708757f4c23ff1f487bf5a3f - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pycosat - size: 89221 - timestamp: 1696356180943 - kind: conda name: pycosat version: 0.6.6 @@ -12675,24 +11566,6 @@ packages: - pkg:pypi/pycosat?source=conda-forge-mapping size: 89221 timestamp: 1696356180943 -- kind: conda - name: pycosat - version: 0.6.6 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h98912ed_0.conda - sha256: b973d39eb9fd9625fe97e2fbb4b6f758ea47aa288f5f8c7769e3f36a3acbb5da - md5: 8f1c372e7b843167be885dc8229931c1 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pycosat - size: 88549 - timestamp: 1696355931150 - kind: conda name: pycosat version: 0.6.6 @@ -12711,26 +11584,6 @@ packages: - pkg:pypi/pycosat?source=conda-forge-mapping size: 88549 timestamp: 1696355931150 -- kind: conda - name: pycosat - version: 0.6.6 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312he70551f_0.conda - sha256: 680e91170b5b29c39a486995c55bb29fc84dea86a8cc3c2180e30c4d4556d3ec - md5: 619f8a019eaeffff3c9507fd2f5769c2 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pycosat - size: 77670 - timestamp: 1696356641443 - kind: conda name: pycosat version: 0.6.6 @@ -12751,21 +11604,6 @@ packages: - pkg:pypi/pycosat?source=conda-forge-mapping size: 77670 timestamp: 1696356641443 -- kind: conda - name: pycparser - version: '2.22' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - sha256: 406001ebf017688b1a1554b49127ca3a4ac4626ec0fd51dc75ffa4415b720b64 - md5: 844d9eb3b43095b031874477f7d70088 - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 105098 - timestamp: 1711811634025 - kind: conda name: pycparser version: '2.22' @@ -12783,31 +11621,6 @@ packages: - pkg:pypi/pycparser?source=conda-forge-mapping size: 105098 timestamp: 1711811634025 -- kind: conda - name: pygithub - version: 2.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda - sha256: 6f03bffc523305f60b2c9a60d085cdefcfb98329251dd109e995dde878b14d23 - md5: b07dc79f5617b22abbaba663d84d1400 - depends: - - cryptography >=3.4.0 - - deprecated - - pyjwt >=2.4.0 - - pynacl >=1.4.0 - - python >=3.7 - - python-dateutil - - requests >=2.14.0 - - typing-extensions >=4.0.0 - - urllib3 >=1.26.0 - license: LGPL-3.0-only - license_family: LGPL - purls: - - pkg:pypi/pygithub - size: 145581 - timestamp: 1711296584144 - kind: conda name: pygithub version: 2.3.0 @@ -12850,27 +11663,7 @@ packages: license: MIT license_family: MIT purls: - - pkg:pypi/pyjwt - size: 24906 - timestamp: 1706895211122 -- kind: conda - name: pyjwt - version: 2.8.0 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda - sha256: d7cb7fbafd767e938db10820c76a9c16d91faf5a081842159cc185787879eb07 - md5: 74f76d4868dbba5870f2cf1d9b12d8f3 - depends: - - python >=3.7 - constrains: - - cryptography >=3.3.1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pyjwt?source=conda-forge-mapping + - pkg:pypi/pyjwt?source=conda-forge-mapping size: 24906 timestamp: 1706895211122 - kind: conda @@ -13049,28 +11842,6 @@ packages: - pkg:pypi/pynacl?source=conda-forge-mapping size: 1150034 timestamp: 1695545290049 -- kind: conda - name: pynacl - version: 1.5.0 - build: py312h02f2b3b_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda - sha256: 733bba1d4b25f17a5e30f99dc4355b6cd9345cf0c9a1241c205323d8e0ec42af - md5: 5648ef2d224601e852af9b4e8eb30d3a - depends: - - cffi >=1.4.1 - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - six - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/pynacl - size: 1148303 - timestamp: 1695545270114 - kind: conda name: pynacl version: 1.5.0 @@ -13093,27 +11864,6 @@ packages: - pkg:pypi/pynacl?source=conda-forge-mapping size: 1148303 timestamp: 1695545270114 -- kind: conda - name: pynacl - version: 1.5.0 - build: py312h104f124_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda - sha256: 9e7f8189c8cb3e0e4318b59ca42ff97f7803a732c69b1fb192e7c2af3f4234c3 - md5: eee6d82c708669043c7d581afd45a6db - depends: - - cffi >=1.4.1 - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - six - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/pynacl - size: 1165861 - timestamp: 1695545180164 - kind: conda name: pynacl version: 1.5.0 @@ -13135,28 +11885,6 @@ packages: - pkg:pypi/pynacl?source=conda-forge-mapping size: 1165861 timestamp: 1695545180164 -- kind: conda - name: pynacl - version: 1.5.0 - build: py312h98912ed_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda - sha256: f9077093cbd75165abd2f538ad2924ec4cf3a5928604e9ff6ffcf2b224de2163 - md5: 66244781991f08a163ff80a91359dbf5 - depends: - - cffi >=1.4.1 - - libgcc-ng >=12 - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - six - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/pynacl - size: 1147941 - timestamp: 1695545046950 - kind: conda name: pynacl version: 1.5.0 @@ -13179,29 +11907,6 @@ packages: - pkg:pypi/pynacl?source=conda-forge-mapping size: 1147941 timestamp: 1695545046950 -- kind: conda - name: pynacl - version: 1.5.0 - build: py312hc560f31_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda - sha256: 7b525604cbf5af4858b970e92aa37fbe9bbc83739c099dc734210f48ceb24fe2 - md5: c0c5ade781f5914663ba090a86088af0 - depends: - - cffi >=1.4.1 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - six - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/pynacl - size: 1247874 - timestamp: 1695545310942 - kind: conda name: pynacl version: 1.5.0 @@ -13225,26 +11930,6 @@ packages: - pkg:pypi/pynacl?source=conda-forge-mapping size: 1247874 timestamp: 1695545310942 -- kind: conda - name: pysocks - version: 1.7.1 - build: pyh0701188_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 - sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 - md5: 56cd9fe388baac0e90c7149cfac95b60 - depends: - - __win - - python >=3.8 - - win_inet_pton - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/pysocks - size: 19348 - timestamp: 1661605138291 - kind: conda name: pysocks version: 1.7.1 @@ -13281,28 +11966,34 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/pysocks + - pkg:pypi/pysocks?source=conda-forge-mapping size: 18981 timestamp: 1661604969727 - kind: conda - name: pysocks - version: 1.7.1 - build: pyha2e5f31_6 - build_number: 6 + name: pytest + version: 8.2.2 + build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - md5: 2a7de29fb590ca14b5243c4c812c8025 + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + sha256: 00b7a49b31cf705b59edbd96219d8a67d2b9f51a913aa059fadd921b016965cb + md5: 0f3f49c22c7ef3a1195fa61dad3c43be depends: - - __unix + - colorama + - exceptiongroup >=1.0.0rc8 + - iniconfig + - packaging + - pluggy <2.0,>=1.5 - python >=3.8 - license: BSD-3-Clause - license_family: BSD + - tomli >=1 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT purls: - - pkg:pypi/pysocks?source=conda-forge-mapping - size: 18981 - timestamp: 1661604969727 + - pkg:pypi/pytest?source=conda-forge-mapping + size: 257061 + timestamp: 1717533913269 - kind: conda name: python version: 3.10.14 @@ -13852,24 +12543,6 @@ packages: license: Python-2.0 size: 16173770 timestamp: 1718619012084 -- kind: conda - name: python-dateutil - version: 2.9.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 - md5: 2cf4264fffb9e6eff6031c5b6884d61c - depends: - - python >=3.7 - - six >=1.5 - license: Apache-2.0 - license_family: APACHE - purls: - - pkg:pypi/python-dateutil - size: 222742 - timestamp: 1709299922152 - kind: conda name: python-dateutil version: 2.9.0 @@ -14034,24 +12707,6 @@ packages: - pkg:pypi/libarchive-c?source=conda-forge-mapping size: 71391 timestamp: 1709829060640 -- kind: conda - name: python-libarchive-c - version: '5.1' - build: py312h2e8e312_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py312h2e8e312_0.conda - sha256: 468f2b72cbd84d3ca0bbf956059d17180b91ba3a5d1253035a7471ac4b291567 - md5: ae97341f8a8520442f9c53a8ca999108 - depends: - - libarchive - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: CC0-1.0 - license_family: CC - purls: - - pkg:pypi/libarchive-c - size: 48652 - timestamp: 1709828762233 - kind: conda name: python-libarchive-c version: '5.1' @@ -14070,24 +12725,6 @@ packages: - pkg:pypi/libarchive-c?source=conda-forge-mapping size: 48652 timestamp: 1709828762233 -- kind: conda - name: python-libarchive-c - version: '5.1' - build: py312h7900ff3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py312h7900ff3_0.conda - sha256: 243538d18db27dbb2c27453146c81386acc7909f32f9b7845980ad843ca9ed66 - md5: 5c766786ca3f47e406785553cfc05ce7 - depends: - - libarchive - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: CC0-1.0 - license_family: CC - purls: - - pkg:pypi/libarchive-c - size: 69718 - timestamp: 1709828706620 - kind: conda name: python-libarchive-c version: '5.1' @@ -14106,25 +12743,6 @@ packages: - pkg:pypi/libarchive-c?source=conda-forge-mapping size: 69718 timestamp: 1709828706620 -- kind: conda - name: python-libarchive-c - version: '5.1' - build: py312h81bd7bf_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py312h81bd7bf_0.conda - sha256: ce2f6ea609799d379d2cc1fca01266b4d0af2f29cc7b5987f14a5440ef5c5f93 - md5: 9228b410f4d130823fc86407861c0527 - depends: - - libarchive - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: CC0-1.0 - license_family: CC - purls: - - pkg:pypi/libarchive-c - size: 70407 - timestamp: 1709829093907 - kind: conda name: python-libarchive-c version: '5.1' @@ -14144,24 +12762,6 @@ packages: - pkg:pypi/libarchive-c?source=conda-forge-mapping size: 70407 timestamp: 1709829093907 -- kind: conda - name: python-libarchive-c - version: '5.1' - build: py312hb401068_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda - sha256: 6c82bf2f807310120630dea4c642b836d7e85804bb5750ee07b8e446386288ed - md5: 8c8948f8210f5508068744c520652feb - depends: - - libarchive - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: CC0-1.0 - license_family: CC - purls: - - pkg:pypi/libarchive-c - size: 69751 - timestamp: 1709828844280 - kind: conda name: python-libarchive-c version: '5.1' @@ -14308,21 +12908,6 @@ packages: purls: [] size: 6755 timestamp: 1695147711935 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda - sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6 - md5: dccc2d142812964fcc6abdc97b672dff - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6385 - timestamp: 1695147396604 - kind: conda name: python_abi version: '3.12' @@ -14339,21 +12924,6 @@ packages: purls: [] size: 6385 timestamp: 1695147396604 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda - sha256: 82c154d95c1637604671a02a89e72f1382e89a4269265a03506496bd928f6f14 - md5: 87201ac4314b911b74197e588cca3639 - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6496 - timestamp: 1695147498447 - kind: conda name: python_abi version: '3.12' @@ -14383,39 +12953,9 @@ packages: - python 3.12.* *_cpython license: BSD-3-Clause license_family: BSD + purls: [] size: 6508 timestamp: 1695147497048 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda - sha256: db25428e4f24f8693ffa39f3ff6dfbb8fd53bc298764b775b57edab1c697560f - md5: bbb3a02c78b2d8219d7213f76d644a2a - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 6508 - timestamp: 1695147497048 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda - sha256: 488f8519d04b48f59bd6fde21ebe2d7a527718ff28aac86a8b53aa63658bdef6 - md5: 17f4ccf6be9ded08bd0a376f489ac1a6 - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6785 - timestamp: 1695147430513 - kind: conda name: python_abi version: '3.12' @@ -14432,23 +12972,6 @@ packages: purls: [] size: 6785 timestamp: 1695147430513 -- kind: conda - name: pytz - version: '2024.1' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 - md5: 3eeeeb9e4827ace8c0c1419c85d590ad - depends: - - python >=3.7 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pytz - size: 188538 - timestamp: 1706886944988 - kind: conda name: pytz version: '2024.1' @@ -14628,24 +13151,6 @@ packages: - pkg:pypi/pyyaml?source=conda-forge-mapping size: 187795 timestamp: 1695373829282 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312h02f2b3b_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py312h02f2b3b_1.conda - sha256: b6b4027b89c17b9bbd8089aec3e44bc29f802a7d5668d5a75b5358d7ed9705ca - md5: a0c843e52a1c4422d8657dd76e9eb994 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 182705 - timestamp: 1695373895409 - kind: conda name: pyyaml version: 6.0.1 @@ -14666,23 +13171,6 @@ packages: - pkg:pypi/pyyaml?source=conda-forge-mapping size: 182705 timestamp: 1695373895409 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312h104f124_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda - sha256: 04aa180782cb675b960c0bf4aad439b4a7a08553c6af74d0b8e5df9a0c7cc4f4 - md5: 260ed90aaf06061edabd7209638cf03b - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 185636 - timestamp: 1695373742454 - kind: conda name: pyyaml version: 6.0.1 @@ -14702,24 +13190,6 @@ packages: - pkg:pypi/pyyaml?source=conda-forge-mapping size: 185636 timestamp: 1695373742454 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312h98912ed_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda - sha256: 7f347a10a7121b08d79d21cd4f438c07c23479ea0c74dfb89d6dc416f791bb7f - md5: e3fd78d8d490af1d84763b9fe3f2e552 - depends: - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 196583 - timestamp: 1695373632212 - kind: conda name: pyyaml version: 6.0.1 @@ -14740,26 +13210,6 @@ packages: - pkg:pypi/pyyaml?source=conda-forge-mapping size: 196583 timestamp: 1695373632212 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312he70551f_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda - sha256: a72fa8152791b4738432f270e70b3a9a4d583ef059a78aa1c62f4b4ab7b15494 - md5: f91e0baa89ba21166916624ba7bfb422 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 167932 - timestamp: 1695374097139 - kind: conda name: pyyaml version: 6.0.1 @@ -14929,22 +13379,6 @@ packages: - typing-extensions>=4.12,<5 requires_python: '>=3.10' editable: true -- kind: conda - name: readline - version: '8.2' - build: h8228510_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 - md5: 47d31b792659ce70f470b5c82fdfb7a4 - depends: - - libgcc-ng >=12 - - ncurses >=6.3,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 281456 - timestamp: 1679532220005 - kind: conda name: readline version: '8.2' @@ -14962,21 +13396,6 @@ packages: purls: [] size: 281456 timestamp: 1679532220005 -- kind: conda - name: readline - version: '8.2' - build: h92ec313_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 - md5: 8cbb776a2f641b943d413b3e19df71f4 - depends: - - ncurses >=6.3,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 250351 - timestamp: 1679532511311 - kind: conda name: readline version: '8.2' @@ -14993,21 +13412,6 @@ packages: purls: [] size: 250351 timestamp: 1679532511311 -- kind: conda - name: readline - version: '8.2' - build: h9e318b2_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 - md5: f17f77f2acf4d344734bda76829ce14e - depends: - - ncurses >=6.3,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 255870 - timestamp: 1679532707590 - kind: conda name: readline version: '8.2' @@ -15779,22 +14183,6 @@ packages: - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 274220 timestamp: 1707298563958 -- kind: conda - name: ruamel.yaml - version: 0.18.6 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda - sha256: 27ab446d39a46f7db365265a48ce74929c672e14c86b1ce8955f59e2d92dff39 - md5: 9db93e711729ec70dacdfa58bf970cfd - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ruamel.yaml.clib >=0.1.2 - license: MIT - license_family: MIT - size: 268460 - timestamp: 1707298596313 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -15813,23 +14201,6 @@ packages: - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 268460 timestamp: 1707298596313 -- kind: conda - name: ruamel.yaml - version: 0.18.6 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda - sha256: 26856daba883254736b7f3767c08f445b5d010eebbf4fc7aa384ee80e24aa663 - md5: a99a06a875138829ef65f44bbe2c30ca - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ruamel.yaml.clib >=0.1.2 - license: MIT - license_family: MIT - size: 268015 - timestamp: 1707298336196 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -15849,23 +14220,6 @@ packages: - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 268015 timestamp: 1707298336196 -- kind: conda - name: ruamel.yaml - version: 0.18.6 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda - sha256: 4a27b50445842e97a31e3f412816d4a0d576b4f1ee327b9a892a183ba5c60f6f - md5: cb9f9b4797001b2c52383f4007fa1f4b - depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - ruamel.yaml.clib >=0.1.2 - license: MIT - license_family: MIT - size: 268637 - timestamp: 1707298502612 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -15885,25 +14239,6 @@ packages: - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 268637 timestamp: 1707298502612 -- kind: conda - name: ruamel.yaml - version: 0.18.6 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda - sha256: 31a9e347107a46149ae334586430bebb3a769bb5792eba9ccb89c664dbce7970 - md5: 5833ba75a49ac40876242ccb5f77ab23 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ruamel.yaml.clib >=0.1.2 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 267762 - timestamp: 1707298539404 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -16071,21 +14406,6 @@ packages: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping size: 117859 timestamp: 1707314957390 -- kind: conda - name: ruamel.yaml.clib - version: 0.2.8 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda - sha256: c0a321d14505b3621d6301e1ed9bc0129b4c8b2812e7520040d2609aaeb07845 - md5: a134bf1778eb7add92ea760e801dc245 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 118650 - timestamp: 1707314908121 - kind: conda name: ruamel.yaml.clib version: 0.2.8 @@ -16117,50 +14437,18 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping size: 135640 timestamp: 1707314642857 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda - sha256: 5965302881d8b1049291e3ba3912286cdc72cb82303230cbbf0a048c6f6dd7c1 - md5: 05f31c2a79ba61df8d6d903ce4a4ce7b - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 135640 - timestamp: 1707314642857 -- kind: conda - name: ruamel.yaml.clib - version: 0.2.8 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 - md5: 2fa02324046cfcb7a67fae30fd06a945 - depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 111221 - timestamp: 1707315016121 -- kind: conda - name: ruamel.yaml.clib - version: 0.2.8 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 - md5: 2fa02324046cfcb7a67fae30fd06a945 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda + sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 + md5: 2fa02324046cfcb7a67fae30fd06a945 depends: - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython @@ -16171,24 +14459,6 @@ packages: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping size: 111221 timestamp: 1707315016121 -- kind: conda - name: ruamel.yaml.clib - version: 0.2.8 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda - sha256: 7d5705ee3190a5b1c24eee2def964cc1d70b9e856488d971f0fd6df0224ca666 - md5: f8de34a829b65a8e3ac6ddc61ed0d2e0 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 96333 - timestamp: 1707315306489 - kind: conda name: ruamel.yaml.clib version: 0.2.8 @@ -16283,6 +14553,261 @@ packages: license_family: MIT size: 6173973 timestamp: 1718950736324 +- kind: conda + name: ruff + version: 0.5.2 + build: py310h3dab08e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py310h3dab08e_0.conda + sha256: 0eb1847209a8a88e8fd6b3fe61553627cab602f6c7ac1722fcfc1dd118976e31 + md5: 58efb19e20ca420058e8e1ab1461f68e + depends: + - __osx >=11.0 + - libcxx >=16 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 5827194 + timestamp: 1720987393348 +- kind: conda + name: ruff + version: 0.5.2 + build: py310h6f176b8_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py310h6f176b8_0.conda + sha256: cde749fc923d355f674fff2713203a754f9bf336d974ed1bb67896925cb6359a + md5: 3edb11ae8ef09eef63e4bbc74fdefac0 + depends: + - __osx >=10.13 + - libcxx >=16 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 6126652 + timestamp: 1720987201383 +- kind: conda + name: ruff + version: 0.5.2 + build: py310h7f1804c_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py310h7f1804c_0.conda + sha256: 48b10abe4d390ee0c4304e0dc51cde5f12609cbc12a7e7a7d9d3a8dd43f996f0 + md5: ece1337b076886007fa2addba459bd00 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 6245366 + timestamp: 1720988239707 +- kind: conda + name: ruff + version: 0.5.2 + build: py310hea9781c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py310hea9781c_0.conda + sha256: 3fb9cda7e30ba055e47c13845147cfc7b9e3eccc9315b12ca3c792aaef647ad7 + md5: aaf77f57e6231bcfaed0f666751f77f4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 7156162 + timestamp: 1720986939023 +- kind: conda + name: ruff + version: 0.5.2 + build: py311h9a97b26_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py311h9a97b26_0.conda + sha256: 1f56ee2cd6f17062edab1f0f973cba256e87d374484539c524764da42398a04f + md5: ed343ddc05b50663c2f978b332dcc457 + depends: + - __osx >=10.13 + - libcxx >=16 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 6140113 + timestamp: 1720987189281 +- kind: conda + name: ruff + version: 0.5.2 + build: py311ha637bb9_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py311ha637bb9_0.conda + sha256: 00fb81b80ef362957fceec59605036b0daee1766b0299c7dde7feb4e27125896 + md5: 40f38eca1da9edb6f0592d8c452367a8 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 6249762 + timestamp: 1720987828118 +- kind: conda + name: ruff + version: 0.5.2 + build: py311hce3a109_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py311hce3a109_0.conda + sha256: 57b5f4e1573392dc44957f1e027a85797f185ef332a92b25eb18cdde4ce19f11 + md5: 750bfee62849b2e65735107aa5acdfa4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 7154470 + timestamp: 1720986952497 +- kind: conda + name: ruff + version: 0.5.2 + build: py311hd374d79_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py311hd374d79_0.conda + sha256: e3f595c57528cbd1bc9c69b46ebcabc6fbfdf514583b837f301481edbbe68ea0 + md5: bced605a88675788f0c6437c8759c7ae + depends: + - __osx >=11.0 + - libcxx >=16 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 5827787 + timestamp: 1720987101957 +- kind: conda + name: ruff + version: 0.5.2 + build: py312h3402d49_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py312h3402d49_0.conda + sha256: 5f72dae2ce24502ece7fd2646f40aae1f35099b223ee9f683e732d6582f4f3d1 + md5: 7c31c2b48802e6c59729f155b43a6b21 + depends: + - __osx >=11.0 + - libcxx >=16 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 5833254 + timestamp: 1720987358487 +- kind: conda + name: ruff + version: 0.5.2 + build: py312h7a6832a_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py312h7a6832a_0.conda + sha256: 242ec948ff510d0448821755a35132bbd43cfae8aab327698169a94d08062da7 + md5: de0e568ee829a2da1d1e421e0ecff048 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 6244880 + timestamp: 1720988034862 +- kind: conda + name: ruff + version: 0.5.2 + build: py312h8b25c6c_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py312h8b25c6c_0.conda + sha256: b00acf9064f7ca36263b8ed7132ffc548a20586b5340f9e9c4cf3bf71677c073 + md5: abbd3c7695d4cdf157714ef5cae86ba1 + depends: + - __osx >=10.13 + - libcxx >=16 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 6131175 + timestamp: 1720987160363 +- kind: conda + name: ruff + version: 0.5.2 + build: py312hbe4c86d_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py312hbe4c86d_0.conda + sha256: b524c0dfcc071752ec5e460735281b62f7f83b3b21b82b08d45cb599697c9dad + md5: a8edfd51e3bfc9863fc83fd65a0b12f6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff?source=conda-forge-mapping + size: 7153666 + timestamp: 1720986945468 - kind: conda name: setuptools version: 69.5.1 @@ -16362,23 +14887,6 @@ packages: purls: [] size: 213817 timestamp: 1643442169866 -- kind: conda - name: six - version: 1.16.0 - build: pyh6c4a22f_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - md5: e5f25f8dbc060e9a8d912e432202afc2 - depends: - - python - license: MIT - license_family: MIT - purls: - - pkg:pypi/six - size: 14259 - timestamp: 1620240338595 - kind: conda name: six version: 1.16.0 @@ -16411,27 +14919,27 @@ packages: license: MIT license_family: MIT purls: - - pkg:pypi/soupsieve + - pkg:pypi/soupsieve?source=conda-forge-mapping size: 36754 timestamp: 1693929424267 - kind: conda - name: soupsieve - version: '2.5' - build: pyhd8ed1ab_1 - build_number: 1 + name: syrupy + version: 4.6.1 + build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c - md5: 3f144b2c34f8cb5a9abd9ed23a39c561 + url: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + sha256: e9833ae370284f5cbdb62078d7db52a133498d44a3d30770c6914589de94a873 + md5: 7a566d6e1b00b1a521ef8db68aa95f4c depends: - - python >=3.8 - license: MIT - license_family: MIT + - pytest >=7.0.0,<9.0.0 + - python >=3.8.1,<4.0 + license: Apache-2.0 + license_family: APACHE purls: - - pkg:pypi/soupsieve?source=conda-forge-mapping - size: 36754 - timestamp: 1693929424267 + - pkg:pypi/syrupy?source=conda-forge-mapping + size: 43681 + timestamp: 1707319626819 - kind: conda name: tapi version: 1100.0.11 @@ -16462,21 +14970,6 @@ packages: purls: [] size: 191416 timestamp: 1602687595316 -- kind: conda - name: tk - version: 8.6.13 - build: h1abcd95_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 - md5: bf830ba5afc507c6232d4ef0fb1a882d - depends: - - libzlib >=1.2.13,<2.0.0a0 - license: TCL - license_family: BSD - size: 3270220 - timestamp: 1699202389792 - kind: conda name: tk version: 8.6.13 @@ -16493,21 +14986,6 @@ packages: purls: [] size: 3270220 timestamp: 1699202389792 -- kind: conda - name: tk - version: 8.6.13 - build: h5083fa2_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 - md5: b50a57ba89c32b62428b71a875291c9b - depends: - - libzlib >=1.2.13,<2.0.0a0 - license: TCL - license_family: BSD - size: 3145523 - timestamp: 1699202432999 - kind: conda name: tk version: 8.6.13 @@ -16524,23 +15002,6 @@ packages: purls: [] size: 3145523 timestamp: 1699202432999 -- kind: conda - name: tk - version: 8.6.13 - build: h5226925_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 - md5: fc048363eb8f03cd1737600a5d08aafe - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: TCL - license_family: BSD - size: 3503410 - timestamp: 1699202577803 - kind: conda name: tk version: 8.6.13 @@ -16569,44 +15030,13 @@ packages: sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e md5: d453b98d9c83e71da0741bb0ff4d76bc depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: TCL - license_family: BSD - size: 3318875 - timestamp: 1699202167581 -- kind: conda - name: tk - version: 8.6.13 - build: noxft_h4845f30_101 - build_number: 101 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e - md5: d453b98d9c83e71da0741bb0ff4d76bc - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: TCL - license_family: BSD - purls: [] - size: 3318875 - timestamp: 1699202167581 -- kind: conda - name: tomli - version: 2.0.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - md5: 5844808ffab9ebdb694585b50ba02a96 - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 15940 - timestamp: 1644342331069 + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + purls: [] + size: 3318875 + timestamp: 1699202167581 - kind: conda name: tomli version: 2.0.1 @@ -16658,23 +15088,6 @@ packages: - pkg:pypi/tqdm?source=conda-forge-mapping size: 89452 timestamp: 1714855008479 -- kind: conda - name: truststore - version: 0.8.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/truststore-0.8.0-pyhd8ed1ab_0.conda - sha256: ba49bed74ca170c5a3bf995c33a6179fd74b33abb2444f511862e7f9f57f9149 - md5: 08316d001eca8854392cf2837828ea11 - depends: - - python >=3.10 - license: MIT - license_family: MIT - purls: - - pkg:pypi/truststore - size: 20667 - timestamp: 1694154740564 - kind: conda name: truststore version: 0.8.0 @@ -16722,21 +15135,6 @@ packages: purls: [] size: 10097 timestamp: 1717802659025 -- kind: conda - name: typing_extensions - version: 4.12.2 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - sha256: 0fce54f8ec3e59f5ef3bb7641863be4e1bf1279623e5af3d3fa726e8f7628ddb - md5: ebe6952715e1d5eb567eeebf25250fa7 - depends: - - python >=3.8 - license: PSF-2.0 - license_family: PSF - size: 39888 - timestamp: 1717802653893 - kind: conda name: typing_extensions version: 4.12.2 @@ -16821,18 +15219,6 @@ packages: license_family: MIT size: 3670179 timestamp: 1720643007539 -- kind: conda - name: tzdata - version: 2024a - build: h0c530f3_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - sha256: 7b2b69c54ec62a243eb6fba2391b5e443421608c3ae5dbff938ad33ca8db5122 - md5: 161081fc7cec0bfda0d86d7cb595f8d8 - license: LicenseRef-Public-Domain - size: 119815 - timestamp: 1706886945727 - kind: conda name: tzdata version: 2024a @@ -16846,20 +15232,6 @@ packages: purls: [] size: 119815 timestamp: 1706886945727 -- kind: conda - name: ucrt - version: 10.0.22621.0 - build: h57928b3_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 - md5: 72608f6cd3e5898229c3ea16deb1ac43 - constrains: - - vs2015_runtime >=14.29.30037 - license: LicenseRef-Proprietary - license_family: PROPRIETARY - size: 1283972 - timestamp: 1666630199266 - kind: conda name: ucrt version: 10.0.22621.0 @@ -17163,24 +15535,6 @@ packages: license_family: BSD size: 17395 timestamp: 1717709043353 -- kind: conda - name: win_inet_pton - version: 1.1.0 - build: pyhd8ed1ab_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 - sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 - md5: 30878ecc4bd36e8deeea1e3c151b2e0b - depends: - - __win - - python >=3.6 - license: PUBLIC-DOMAIN - purls: - - pkg:pypi/win-inet-pton - size: 8191 - timestamp: 1667051294134 - kind: conda name: win_inet_pton version: 1.1.0 @@ -17345,23 +15699,6 @@ packages: - pkg:pypi/wrapt?source=conda-forge-mapping size: 59558 timestamp: 1699533106157 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda - sha256: 9ed208c4c844c50f161764df7ed7a226c42822917c892ab7c8f67eec6ca96dff - md5: d87798aa7210da2c5eaf96c0346dca00 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - purls: - - pkg:pypi/wrapt - size: 59057 - timestamp: 1699533259706 - kind: conda name: wrapt version: 1.16.0 @@ -17379,24 +15716,6 @@ packages: - pkg:pypi/wrapt?source=conda-forge-mapping size: 59057 timestamp: 1699533259706 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda - sha256: dc8431b343961347ad93b33d2d8270e8c15d8825382f4f2540835c94aba2de05 - md5: fa957a1c7bee7e47ad44633caf7be8bc - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - purls: - - pkg:pypi/wrapt - size: 62482 - timestamp: 1699532968076 - kind: conda name: wrapt version: 1.16.0 @@ -17415,24 +15734,6 @@ packages: - pkg:pypi/wrapt?source=conda-forge-mapping size: 62482 timestamp: 1699532968076 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py312he37b823_0.conda - sha256: 25824dd9a22f2c1e8f205eb55c906b28b2f4748a68cb8e3d95ffdf73f08cbac9 - md5: 86726ebb1f6da39c68f306ae624ee4ed - depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - purls: - - pkg:pypi/wrapt - size: 59676 - timestamp: 1699533197501 - kind: conda name: wrapt version: 1.16.0 @@ -17451,26 +15752,6 @@ packages: - pkg:pypi/wrapt?source=conda-forge-mapping size: 59676 timestamp: 1699533197501 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py312he70551f_0.conda - sha256: e4b5ac6c897e68a798dfe13a1499dc9b555c48b468aa477d456807f2a7366c30 - md5: cea7b1aa961de6a8ac90584b5968a01d - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - purls: - - pkg:pypi/wrapt - size: 61358 - timestamp: 1699533495284 - kind: conda name: wrapt version: 1.16.0 @@ -17491,19 +15772,6 @@ packages: - pkg:pypi/wrapt?source=conda-forge-mapping size: 61358 timestamp: 1699533495284 -- kind: conda - name: xz - version: 5.2.6 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - md5: 2161070d867d1b1204ea749c8eec4ef0 - depends: - - libgcc-ng >=12 - license: LGPL-2.1 and GPL-2.0 - size: 418368 - timestamp: 1660346797927 - kind: conda name: xz version: 5.2.6 @@ -17518,17 +15786,6 @@ packages: purls: [] size: 418368 timestamp: 1660346797927 -- kind: conda - name: xz - version: 5.2.6 - build: h57fd34a_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - md5: 39c6b54e94014701dd157f4f576ed211 - license: LGPL-2.1 and GPL-2.0 - size: 235693 - timestamp: 1660346961024 - kind: conda name: xz version: 5.2.6 @@ -17541,17 +15798,6 @@ packages: purls: [] size: 235693 timestamp: 1660346961024 -- kind: conda - name: xz - version: 5.2.6 - build: h775f41a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 - md5: a72f9d4ea13d55d745ff1ed594747f10 - license: LGPL-2.1 and GPL-2.0 - size: 238119 - timestamp: 1660346964847 - kind: conda name: xz version: 5.2.6 @@ -17564,20 +15810,6 @@ packages: purls: [] size: 238119 timestamp: 1660346964847 -- kind: conda - name: xz - version: 5.2.6 - build: h8d14728_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 - md5: 515d77642eaa3639413c6b1bc3f94219 - depends: - - vc >=14.1,<15 - - vs2015_runtime >=14.16.27033 - license: LGPL-2.1 and GPL-2.0 - size: 217804 - timestamp: 1660346976440 - kind: conda name: xz version: 5.2.6 @@ -17593,19 +15825,6 @@ packages: purls: [] size: 217804 timestamp: 1660346976440 -- kind: conda - name: yaml - version: 0.2.5 - build: h0d85af4_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 - sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 - md5: d7e08fcf8259d742156188e8762b4d20 - license: MIT - license_family: MIT - size: 84237 - timestamp: 1641347062780 - kind: conda name: yaml version: 0.2.5 @@ -17620,19 +15839,6 @@ packages: purls: [] size: 84237 timestamp: 1641347062780 -- kind: conda - name: yaml - version: 0.2.5 - build: h3422bc3_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 - md5: 4bb3f014845110883a3c5ee811fd84b4 - license: MIT - license_family: MIT - size: 88016 - timestamp: 1641347076660 - kind: conda name: yaml version: 0.2.5 @@ -17647,21 +15853,6 @@ packages: purls: [] size: 88016 timestamp: 1641347076660 -- kind: conda - name: yaml - version: 0.2.5 - build: h7f98852_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 - md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae - depends: - - libgcc-ng >=9.4.0 - license: MIT - license_family: MIT - size: 89141 - timestamp: 1641346969816 - kind: conda name: yaml version: 0.2.5 @@ -17678,22 +15869,6 @@ packages: purls: [] size: 89141 timestamp: 1641346969816 -- kind: conda - name: yaml - version: 0.2.5 - build: h8ffe710_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 - sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 - md5: adbfb9f45d1004a26763652246a33764 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: MIT - license_family: MIT - size: 63274 - timestamp: 1641347623319 - kind: conda name: yaml version: 0.2.5 From 8526f53b78d9aa58e83de39929ef79b8c27f0596 Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Thu, 18 Jul 2024 16:54:49 +0200 Subject: [PATCH 22/31] Add names to workflows --- .github/workflows/tests.yml | 3 +-- .github/workflows/type-check.yml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f2ff2e5..528d6bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,5 +1,4 @@ -# name: Run updater that will check for conda-forge packages - +name: Tests on: push: branches: [ "main" ] diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml index 98829af..44da2d2 100644 --- a/.github/workflows/type-check.yml +++ b/.github/workflows/type-check.yml @@ -1,4 +1,4 @@ -# name: Run updater that will check for conda-forge packages +name: Type Check on: push: branches: [ "main" ] From 0601bbb52d3e92671706de78124d33bb25a45f6a Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Thu, 18 Jul 2024 16:57:16 +0200 Subject: [PATCH 23/31] Adapt `test` to `tests` --- .github/workflows/tests.yml | 2 +- pixi.toml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 528d6bf..2d0cb3e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,4 +25,4 @@ jobs: environments: ${{ matrix.pixi-environment }} - name: run tests run: | - pixi run --environment ${{ matrix.pixi-environment }} test + pixi run --environment ${{ matrix.pixi-environment }} tests diff --git a/pixi.toml b/pixi.toml index 6d34c12..4fb6b5f 100644 --- a/pixi.toml +++ b/pixi.toml @@ -23,13 +23,13 @@ typing-extensions = ">=4.12.2,<4.13" [pypi-dependencies] rattler-build-conda-compat = { path = ".", editable = true} -[feature.test.dependencies] +[feature.tests.dependencies] pytest = "*" syrupy = "*" ruff = "*" -[feature.test.tasks] -test = "pytest tests" +[feature.tests.tasks] +tests = "pytest tests" snapshot_update = "pytest --snapshot-update tests" [feature.lint.dependencies] @@ -55,7 +55,7 @@ python = "3.11.*" python = "3.10.*" [environments] -py312 = { features = ["py312", "test"], solve-group = "py312" } -py311 = ["py311", "test"] -py310 = ["py310", "test"] +py312 = { features = ["py312", "tests"], solve-group = "py312" } +py311 = ["py311", "tests"] +py310 = ["py310", "tests"] lint = { features = ["lint"], no-default-feature = true, solve-group = "default" } From dd7ba75f3c99e2d590a758d3a46ea49418e07c36 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 11:07:38 +0200 Subject: [PATCH 24/31] feat: pin versions to what i could infer from lock --- pixi.lock | 442 +++++------------------------------------------------- pixi.toml | 29 ++-- 2 files changed, 56 insertions(+), 415 deletions(-) diff --git a/pixi.lock b/pixi.lock index 2723c58..92f0180 100644 --- a/pixi.lock +++ b/pixi.lock @@ -76,7 +76,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.0.2-py312h7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda @@ -100,7 +100,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.15.0-h614bb76_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda @@ -218,7 +218,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.15.0-hd81679c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda @@ -338,7 +338,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py312h02f2b3b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.15.0-h2b8f702_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda @@ -446,7 +446,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.15.0-h7ea99a0_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda @@ -520,7 +520,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.4.10-py312h5715c7c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py312hbe4c86d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -561,7 +561,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.4.10-py312h8b25c6c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py312h8b25c6c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -602,7 +602,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.4.10-py312h3402d49_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py312h3402d49_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -646,7 +646,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.4.10-py312h7a6832a_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py312h7a6832a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 @@ -1807,7 +1807,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py312hf008fa9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h98912ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py312hbe4c86d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -1934,7 +1933,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py312ha47ea1c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h41838bb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py312h8b25c6c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 @@ -2063,7 +2061,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py312h552d48e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312he37b823_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py312h3402d49_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 @@ -2180,7 +2177,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py312h2615798_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312he70551f_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py312h7a6832a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -2620,7 +2616,6 @@ packages: - vc14_runtime >=14.29.30139 license: bzip2-1.0.6 license_family: BSD - purls: [] size: 54927 timestamp: 1720974860185 - kind: conda @@ -2638,6 +2633,7 @@ packages: - vc14_runtime >=14.29.30139 license: bzip2-1.0.6 license_family: BSD + purls: [] size: 54927 timestamp: 1720974860185 - kind: conda @@ -2654,7 +2650,6 @@ packages: - libgcc-ng >=12 license: bzip2-1.0.6 license_family: BSD - purls: [] size: 252783 timestamp: 1720974456583 - kind: conda @@ -2671,6 +2666,7 @@ packages: - libgcc-ng >=12 license: bzip2-1.0.6 license_family: BSD + purls: [] size: 252783 timestamp: 1720974456583 - kind: conda @@ -2700,7 +2696,6 @@ packages: - __osx >=11.0 license: bzip2-1.0.6 license_family: BSD - purls: [] size: 122909 timestamp: 1720974522888 - kind: conda @@ -2716,6 +2711,7 @@ packages: - __osx >=11.0 license: bzip2-1.0.6 license_family: BSD + purls: [] size: 122909 timestamp: 1720974522888 - kind: conda @@ -2765,7 +2761,6 @@ packages: - __osx >=10.13 license: bzip2-1.0.6 license_family: BSD - purls: [] size: 134188 timestamp: 1720974491916 - kind: conda @@ -2781,6 +2776,7 @@ packages: - __osx >=10.13 license: bzip2-1.0.6 license_family: BSD + purls: [] size: 134188 timestamp: 1720974491916 - kind: conda @@ -2927,7 +2923,6 @@ packages: sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e md5: 9caa97c9504072cd060cf0a3142cc0ed license: ISC - purls: [] size: 154943 timestamp: 1720077592592 - kind: conda @@ -2939,6 +2934,7 @@ packages: sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e md5: 9caa97c9504072cd060cf0a3142cc0ed license: ISC + purls: [] size: 154943 timestamp: 1720077592592 - kind: conda @@ -2950,7 +2946,6 @@ packages: sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 md5: 7df874a4b05b2d2b82826190170eaa0f license: ISC - purls: [] size: 154473 timestamp: 1720077510541 - kind: conda @@ -2962,6 +2957,7 @@ packages: sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 md5: 7df874a4b05b2d2b82826190170eaa0f license: ISC + purls: [] size: 154473 timestamp: 1720077510541 - kind: conda @@ -2973,7 +2969,6 @@ packages: sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 md5: 23ab7665c5f63cfb9f1f6195256daac6 license: ISC - purls: [] size: 154853 timestamp: 1720077432978 - kind: conda @@ -2985,6 +2980,7 @@ packages: sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 md5: 23ab7665c5f63cfb9f1f6195256daac6 license: ISC + purls: [] size: 154853 timestamp: 1720077432978 - kind: conda @@ -2996,7 +2992,6 @@ packages: sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b md5: 21f9a33e5fe996189e470c19c5354dbe license: ISC - purls: [] size: 154517 timestamp: 1720077468981 - kind: conda @@ -3008,6 +3003,7 @@ packages: sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b md5: 21f9a33e5fe996189e470c19c5354dbe license: ISC + purls: [] size: 154517 timestamp: 1720077468981 - kind: conda @@ -5570,8 +5566,6 @@ packages: depends: - python >=3.7 license: Unlicense - purls: - - pkg:pypi/filelock?source=conda-forge-mapping size: 17592 timestamp: 1719088395353 - kind: conda @@ -5586,6 +5580,8 @@ packages: depends: - python >=3.7 license: Unlicense + purls: + - pkg:pypi/filelock?source=conda-forge-mapping size: 17592 timestamp: 1719088395353 - kind: conda @@ -6799,7 +6795,6 @@ packages: - binutils_impl_linux-64 2.40 license: GPL-3.0-only license_family: GPL - purls: [] size: 707602 timestamp: 1718625640445 - kind: conda @@ -6815,6 +6810,7 @@ packages: - binutils_impl_linux-64 2.40 license: GPL-3.0-only license_family: GPL + purls: [] size: 707602 timestamp: 1718625640445 - kind: conda @@ -7215,7 +7211,6 @@ packages: - __osx >=11.0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - purls: [] size: 1219441 timestamp: 1720589623297 - kind: conda @@ -7230,6 +7225,7 @@ packages: - __osx >=11.0 license: Apache-2.0 WITH LLVM-exception license_family: Apache + purls: [] size: 1219441 timestamp: 1720589623297 - kind: conda @@ -7244,7 +7240,6 @@ packages: - __osx >=10.13 license: Apache-2.0 WITH LLVM-exception license_family: Apache - purls: [] size: 1396919 timestamp: 1720589431855 - kind: conda @@ -7259,6 +7254,7 @@ packages: - __osx >=10.13 license: Apache-2.0 WITH LLVM-exception license_family: Apache + purls: [] size: 1396919 timestamp: 1720589431855 - kind: conda @@ -7511,7 +7507,6 @@ packages: - libgomp 14.1.0 h77fa898_0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - purls: [] size: 842109 timestamp: 1719538896937 - kind: conda @@ -7529,6 +7524,7 @@ packages: - libgomp 14.1.0 h77fa898_0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL + purls: [] size: 842109 timestamp: 1719538896937 - kind: conda @@ -7559,7 +7555,6 @@ packages: - _libgcc_mutex 0.1 conda_forge license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - purls: [] size: 456925 timestamp: 1719538796073 - kind: conda @@ -7574,6 +7569,7 @@ packages: - _libgcc_mutex 0.1 conda_forge license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL + purls: [] size: 456925 timestamp: 1719538796073 - kind: conda @@ -8502,7 +8498,6 @@ packages: - __osx >=10.13 - libzlib >=1.2.13,<2.0a0 license: Unlicense - purls: [] size: 908643 timestamp: 1718050720117 - kind: conda @@ -8517,6 +8512,7 @@ packages: - __osx >=10.13 - libzlib >=1.2.13,<2.0a0 license: Unlicense + purls: [] size: 908643 timestamp: 1718050720117 - kind: conda @@ -8532,7 +8528,6 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: Unlicense - purls: [] size: 876677 timestamp: 1718051113874 - kind: conda @@ -8548,6 +8543,7 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: Unlicense + purls: [] size: 876677 timestamp: 1718051113874 - kind: conda @@ -8562,7 +8558,6 @@ packages: - libgcc-ng >=12 - libzlib >=1.2.13,<2.0a0 license: Unlicense - purls: [] size: 865346 timestamp: 1718050628718 - kind: conda @@ -8577,6 +8572,7 @@ packages: - libgcc-ng >=12 - libzlib >=1.2.13,<2.0a0 license: Unlicense + purls: [] size: 865346 timestamp: 1718050628718 - kind: conda @@ -8591,7 +8587,6 @@ packages: - __osx >=11.0 - libzlib >=1.2.13,<2.0a0 license: Unlicense - purls: [] size: 830198 timestamp: 1718050644825 - kind: conda @@ -8606,6 +8601,7 @@ packages: - __osx >=11.0 - libzlib >=1.2.13,<2.0a0 license: Unlicense + purls: [] size: 830198 timestamp: 1718050644825 - kind: conda @@ -8702,7 +8698,6 @@ packages: - libgcc-ng 14.1.0 h77fa898_0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - purls: [] size: 3881307 timestamp: 1719538923443 - kind: conda @@ -8717,6 +8712,7 @@ packages: - libgcc-ng 14.1.0 h77fa898_0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL + purls: [] size: 3881307 timestamp: 1719538923443 - kind: conda @@ -8995,7 +8991,6 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other - purls: [] size: 56186 timestamp: 1716874730539 - kind: conda @@ -9015,6 +9010,7 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other + purls: [] size: 56186 timestamp: 1716874730539 - kind: conda @@ -9032,7 +9028,6 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other - purls: [] size: 61574 timestamp: 1716874187109 - kind: conda @@ -9050,6 +9045,7 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other + purls: [] size: 61574 timestamp: 1716874187109 - kind: conda @@ -9067,7 +9063,6 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other - purls: [] size: 57372 timestamp: 1716874211519 - kind: conda @@ -9085,6 +9080,7 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other + purls: [] size: 57372 timestamp: 1716874211519 - kind: conda @@ -9102,7 +9098,6 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other - purls: [] size: 46921 timestamp: 1716874262512 - kind: conda @@ -9120,6 +9115,7 @@ packages: - zlib 1.3.1 *_1 license: Zlib license_family: Other + purls: [] size: 46921 timestamp: 1716874262512 - kind: conda @@ -10152,7 +10148,6 @@ packages: sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 md5: 02a888433d165c99bf09784a7b14d900 license: X11 AND BSD-3-Clause - purls: [] size: 823601 timestamp: 1715195267791 - kind: conda @@ -10164,6 +10159,7 @@ packages: sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 md5: 02a888433d165c99bf09784a7b14d900 license: X11 AND BSD-3-Clause + purls: [] size: 823601 timestamp: 1715195267791 - kind: conda @@ -10177,7 +10173,6 @@ packages: depends: - libgcc-ng >=12 license: X11 AND BSD-3-Clause - purls: [] size: 887465 timestamp: 1715194722503 - kind: conda @@ -10191,6 +10186,7 @@ packages: depends: - libgcc-ng >=12 license: X11 AND BSD-3-Clause + purls: [] size: 887465 timestamp: 1715194722503 - kind: conda @@ -10202,7 +10198,6 @@ packages: sha256: 87d7cf716d9d930dab682cb57b3b8d3a61940b47d6703f3529a155c938a6990a md5: b13ad5724ac9ae98b6b4fd87e4500ba4 license: X11 AND BSD-3-Clause - purls: [] size: 795131 timestamp: 1715194898402 - kind: conda @@ -10214,6 +10209,7 @@ packages: sha256: 87d7cf716d9d930dab682cb57b3b8d3a61940b47d6703f3529a155c938a6990a md5: b13ad5724ac9ae98b6b4fd87e4500ba4 license: X11 AND BSD-3-Clause + purls: [] size: 795131 timestamp: 1715194898402 - kind: conda @@ -10271,25 +10267,6 @@ packages: purls: [] size: 8230112 timestamp: 1710796158475 -- kind: conda - name: openssl - version: 3.2.1 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - depends: - - ca-certificates - - libgcc-ng >=12 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - purls: [] - size: 2865379 - timestamp: 1710793235846 - kind: conda name: openssl version: 3.2.1 @@ -10654,8 +10631,6 @@ packages: - python >=3.8 license: MIT license_family: MIT - purls: - - pkg:pypi/platformdirs?source=conda-forge-mapping size: 20572 timestamp: 1715777739019 - kind: conda @@ -10671,6 +10646,8 @@ packages: - python >=3.8 license: MIT license_family: MIT + purls: + - pkg:pypi/platformdirs?source=conda-forge-mapping size: 20572 timestamp: 1715777739019 - kind: conda @@ -10967,26 +10944,6 @@ packages: - pkg:pypi/psutil?source=conda-forge-mapping size: 527926 timestamp: 1719275196844 -- kind: conda - name: psutil - version: 6.0.0 - build: py312h4389bb4_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py312h4389bb4_0.conda - sha256: c9ed9457fa4c4900b7f2fc5e28493bdd3885acb823ed48c01dae59f043a65ad8 - md5: 86fd428b42be7495c93d0ff837adfc9e - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/psutil?source=conda-forge-mapping - size: 509298 - timestamp: 1719275243368 - kind: conda name: psutil version: 6.0.0 @@ -11020,45 +10977,8 @@ packages: - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - purls: - - pkg:pypi/psutil?source=conda-forge-mapping size: 501703 timestamp: 1719274787455 -- kind: conda - name: psutil - version: 6.0.0 - build: py312h7e5086c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py312h7e5086c_0.conda - sha256: d677457b2ce2e6ef6c2845c653e5bc39be9a59a900d95a5a7771b490f754cb5f - md5: e45a140733a4805d80e282c1ede40d0b - depends: - - __osx >=11.0 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 501703 - timestamp: 1719274787455 -- kind: conda - name: psutil - version: 6.0.0 - build: py312h9a8786e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda - sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d - md5: 1aeffa86c55972ca4e88ac843eccedf2 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/psutil?source=conda-forge-mapping - size: 493452 - timestamp: 1719274737481 - kind: conda name: psutil version: 6.0.0 @@ -11075,24 +10995,6 @@ packages: license_family: BSD size: 493452 timestamp: 1719274737481 -- kind: conda - name: psutil - version: 6.0.0 - build: py312hbd25219_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda - sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b - md5: db086d71e9be086313110a670b6d549f - depends: - - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/psutil?source=conda-forge-mapping - size: 499307 - timestamp: 1719274858092 - kind: conda name: psutil version: 6.0.0 @@ -12323,37 +12225,6 @@ packages: purls: [] size: 31991381 timestamp: 1713208036041 -- kind: conda - name: python - version: 3.12.4 - build: h194c7f8_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda - sha256: 97a78631e6c928bf7ad78d52f7f070fcf3bd37619fa48dc4394c21cf3058cdee - md5: d73490214f536cccb5819e9873048c92 - depends: - - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.6.2,<3.0a0 - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - libnsl >=2.0.1,<2.1.0a0 - - libsqlite >=3.46.0,<4.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcrypt >=4.4.36 - - libzlib >=1.3.1,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.3.1,<4.0a0 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - purls: [] - size: 32073625 - timestamp: 1718621771849 - kind: conda name: python version: 3.12.4 @@ -12408,62 +12279,8 @@ packages: constrains: - python_abi 3.12.* *_cp312 license: Python-2.0 - purls: [] size: 12183332 timestamp: 1718619490228 -- kind: conda - name: python - version: 3.12.4 - build: h30c5eda_0_cpython - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.4-h30c5eda_0_cpython.conda - sha256: 107824b584eb5e43f71df8cb2741019f5c377c734f8309899aa2a6ed53b79a47 - md5: e3e44e0e72aed46dcb810fa3e96784be - depends: - - __osx >=11.0 - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.6.2,<3.0a0 - - libffi >=3.4,<4.0a0 - - libsqlite >=3.46.0,<4.0a0 - - libzlib >=1.3.1,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.3.1,<4.0a0 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - size: 12183332 - timestamp: 1718619490228 -- kind: conda - name: python - version: 3.12.4 - build: h37a9e06_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda - sha256: 677958ee90eff229755d4e0ed40af6d835c9131e863b1539b34bbf07d7a775f3 - md5: 94e2b77992f580ac6b7a4fc9b53018b3 - depends: - - __osx >=10.13 - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.6.2,<3.0a0 - - libffi >=3.4,<4.0a0 - - libsqlite >=3.46.0,<4.0a0 - - libzlib >=1.3.1,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.3.1,<4.0a0 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - purls: [] - size: 13848015 - timestamp: 1718619909707 - kind: conda name: python version: 3.12.4 @@ -12490,33 +12307,6 @@ packages: license: Python-2.0 size: 13848015 timestamp: 1718619909707 -- kind: conda - name: python - version: 3.12.4 - build: h889d299_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.4-h889d299_0_cpython.conda - sha256: 1db32594bfd8db2a49af66c14aaf479520f98df7a86e9d6e6a9ae484d369f4da - md5: 4527737432f0fade2fc1e5852c672133 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.6.2,<3.0a0 - - libffi >=3.4,<4.0a0 - - libsqlite >=3.46.0,<4.0a0 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - purls: [] - size: 16173770 - timestamp: 1718619012084 - kind: conda name: python version: 3.12.4 @@ -13232,74 +13022,6 @@ packages: - pkg:pypi/pyyaml?source=conda-forge-mapping size: 167932 timestamp: 1695374097139 -- kind: conda - name: rattler-build - version: 0.15.0 - build: h2b8f702_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.15.0-h2b8f702_0.conda - sha256: 4fd077a49b920ba15fc9446471fb1edddcf9c638eb77f2a504fe25f2424aa7a2 - md5: 5f1437b3e04e7b9b140d87364d3f892d - depends: - - libcxx >=16 - constrains: - - __osx >=11.0 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 7583997 - timestamp: 1713391566597 -- kind: conda - name: rattler-build - version: 0.15.0 - build: h614bb76_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.15.0-h614bb76_0.conda - sha256: 6f0fdf6e4cbb8416df982e4814e112c0e26a8eb9e6184a640e5ff155a9063796 - md5: 7e5875d2427c0c38a399648036583647 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.2.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 9921940 - timestamp: 1713390727210 -- kind: conda - name: rattler-build - version: 0.15.0 - build: h7ea99a0_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.15.0-h7ea99a0_0.conda - sha256: a477de68c9774db427b85acf9cc0de6154ae79f17c26ef219b3e9bbc62170cc4 - md5: ca24907908a0382010234c1a117ec67a - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 7194383 - timestamp: 1713392068197 -- kind: conda - name: rattler-build - version: 0.15.0 - build: hd81679c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.15.0-hd81679c_0.conda - sha256: 0b0160466b300d35bfdb653c7ce1afafcf2a985d5ffac606148da7fd1084f44f - md5: d05f80bd69affc1da6a60f415ac51342 - depends: - - libcxx >=16 - constrains: - - __osx >=10.12 - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 7882297 - timestamp: 1713391855237 - kind: conda name: rattler-build version: 0.18.1 @@ -14479,80 +14201,6 @@ packages: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping size: 96333 timestamp: 1707315306489 -- kind: conda - name: ruff - version: 0.4.10 - build: py312h3402d49_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.4.10-py312h3402d49_0.conda - sha256: 066d4cefce2d5d35d758e6d477e47fda83a1b06d88fa71f953065043d64b488d - md5: 5b70888ab8e84ab3206ab5290075523a - depends: - - __osx >=11.0 - - libcxx >=16 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - constrains: - - __osx >=11.0 - license: MIT - license_family: MIT - size: 5878241 - timestamp: 1718950617291 -- kind: conda - name: ruff - version: 0.4.10 - build: py312h5715c7c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.4.10-py312h5715c7c_0.conda - sha256: d7f056febfb41a141f51e0ae7ea8ba28bc486a86556f378598280b97c5761d2d - md5: 3d07021d1d84de1caf6dbc02e5aea12a - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 6375100 - timestamp: 1718950300298 -- kind: conda - name: ruff - version: 0.4.10 - build: py312h7a6832a_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.4.10-py312h7a6832a_0.conda - sha256: fa69621a30c533349cc110bd1d2956189d92c11c15bc1a6520ed0a82b4f8f900 - md5: 858969a5841ede4dbeb9f929962cd606 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 6273796 - timestamp: 1718951278593 -- kind: conda - name: ruff - version: 0.4.10 - build: py312h8b25c6c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.4.10-py312h8b25c6c_0.conda - sha256: f99db993c3119add41e1aac66916eaea291f20382a393b2562d2d5f8ebdf9cc5 - md5: 2310531360a50014516f8a35cc3054b8 - depends: - - __osx >=10.13 - - libcxx >=16 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - __osx >=10.12 - license: MIT - license_family: MIT - size: 6173973 - timestamp: 1718950736324 - kind: conda name: ruff version: 0.5.2 @@ -14741,8 +14389,6 @@ packages: - __osx >=11.0 license: MIT license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping size: 5833254 timestamp: 1720987358487 - kind: conda @@ -14761,8 +14407,6 @@ packages: - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping size: 6244880 timestamp: 1720988034862 - kind: conda @@ -14782,8 +14426,6 @@ packages: - __osx >=10.13 license: MIT license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping size: 6131175 timestamp: 1720987160363 - kind: conda @@ -14804,8 +14446,6 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping size: 7153666 timestamp: 1720986945468 - kind: conda @@ -15379,7 +15019,6 @@ packages: - vc14 license: BSD-3-Clause license_family: BSD - purls: [] size: 17391 timestamp: 1717709040616 - kind: conda @@ -15397,6 +15036,7 @@ packages: - vc14 license: BSD-3-Clause license_family: BSD + purls: [] size: 17391 timestamp: 1717709040616 - kind: conda @@ -15450,7 +15090,6 @@ packages: - vs2015_runtime 14.40.33810.* *_20 license: LicenseRef-ProprietaryMicrosoft license_family: Proprietary - purls: [] size: 751934 timestamp: 1717709031266 - kind: conda @@ -15468,6 +15107,7 @@ packages: - vs2015_runtime 14.40.33810.* *_20 license: LicenseRef-ProprietaryMicrosoft license_family: Proprietary + purls: [] size: 751934 timestamp: 1717709031266 - kind: conda @@ -15517,7 +15157,6 @@ packages: - vc14_runtime >=14.40.33810 license: BSD-3-Clause license_family: BSD - purls: [] size: 17395 timestamp: 1717709043353 - kind: conda @@ -15533,6 +15172,7 @@ packages: - vc14_runtime >=14.40.33810 license: BSD-3-Clause license_family: BSD + purls: [] size: 17395 timestamp: 1717709043353 - kind: conda diff --git a/pixi.toml b/pixi.toml index 4fb6b5f..a079c75 100644 --- a/pixi.toml +++ b/pixi.toml @@ -11,22 +11,24 @@ build_sdist = "pixi run python -m build --sdist" [dependencies] python = ">=3.10" -build = "*" -rattler-build = "*" -conda-build = "*" -"ruamel.yaml" = "*" +build = ">=0.7.0,<0.8" +rattler-build = ">=0.18.1,<0.19" +conda-build = ">=24.3.0,<25.0" +"ruamel.yaml" = ">=0.18.6,<0.19" conda = ">=4.2" pygithub = ">=2,<3" -tomli = "*" +tomli = ">=2.0.1,<3" typing-extensions = ">=4.12.2,<4.13" [pypi-dependencies] -rattler-build-conda-compat = { path = ".", editable = true} +rattler-build-conda-compat = { path = ".", editable = true } [feature.tests.dependencies] -pytest = "*" -syrupy = "*" -ruff = "*" +pytest = ">=8.2.2,<9" +syrupy = ">=4.6.1,<5" + +[feature.ruff.dependencies] +ruff = ">=0.5.0,<0.6" [feature.tests.tasks] tests = "pytest tests" @@ -35,7 +37,6 @@ snapshot_update = "pytest --snapshot-update tests" [feature.lint.dependencies] pre-commit = ">=3.7.1,<4" pre-commit-hooks = ">=4.6.0,<5" -ruff = ">=0.4.8,<0.5" typos = ">=1.23.1,<2" mypy = ">=1.10.1,<2" types-pyyaml = ">=6.0.12.20240311,<6.0.13" @@ -55,7 +56,7 @@ python = "3.11.*" python = "3.10.*" [environments] -py312 = { features = ["py312", "tests"], solve-group = "py312" } -py311 = ["py311", "tests"] -py310 = ["py310", "tests"] -lint = { features = ["lint"], no-default-feature = true, solve-group = "default" } +py312 = { features = ["py312", "tests"] } +py311 = ["py311", "tests", "ruff"] +py310 = ["py310", "tests", "ruff"] +lint = { features = ["lint", "ruff"], no-default-feature = true } From f1c0ebf32e86f3729d5d5ccc8911082228447b04 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 11:21:14 +0200 Subject: [PATCH 25/31] fix: remove ruff from test environments --- pixi.lock | 615 +----------------------------------------------------- pixi.toml | 10 +- 2 files changed, 5 insertions(+), 620 deletions(-) diff --git a/pixi.lock b/pixi.lock index 92f0180..8441be3 100644 --- a/pixi.lock +++ b/pixi.lock @@ -778,7 +778,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py310h42e942d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py310h2372a71_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py310h2372a71_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py310hea9781c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -904,7 +903,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py310h12a1ced_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py310hb372a2b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py310hb372a2b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py310h6f176b8_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 @@ -1032,7 +1030,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py310h947b723_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py310hd125d64_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py310hd125d64_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py310h3dab08e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 @@ -1148,7 +1145,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py310hc226416_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py310h8d17308_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py310h8d17308_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py310h7f1804c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -1291,7 +1287,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py311hb3a8bbb_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py311h459d7ec_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py311h459d7ec_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py311hce3a109_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -1418,7 +1413,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py311h295b1db_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py311he705e18_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py311h9a97b26_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 @@ -1547,7 +1541,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py311h98c6a39_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py311h05b510d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py311h05b510d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py311hd374d79_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 @@ -1664,7 +1657,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py311h533ab2d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py311ha68e1ae_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py311ha637bb9_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -2601,23 +2593,6 @@ packages: purls: [] size: 127885 timestamp: 1699280178474 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h2466b09_7 - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b - md5: 276e7ffe9ffe39688abc665ef0f45596 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 - license_family: BSD - size: 54927 - timestamp: 1720974860185 - kind: conda name: bzip2 version: 1.0.8 @@ -2636,22 +2611,6 @@ packages: purls: [] size: 54927 timestamp: 1720974860185 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h4bc722e_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda - sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d - md5: 62ee74e96c5ebb0af99386de58cf9553 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - size: 252783 - timestamp: 1720974456583 - kind: conda name: bzip2 version: 1.0.8 @@ -2683,21 +2642,6 @@ packages: purls: [] size: 122325 timestamp: 1699280294368 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h99b78c6_7 - build_number: 7 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda - sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 - md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab - depends: - - __osx >=11.0 - license: bzip2-1.0.6 - license_family: BSD - size: 122909 - timestamp: 1720974522888 - kind: conda name: bzip2 version: 1.0.8 @@ -2748,21 +2692,6 @@ packages: purls: [] size: 254228 timestamp: 1699279927352 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hfdf4475_7 - build_number: 7 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 - md5: 7ed4301d437b59045be7e051a0308211 - depends: - - __osx >=10.13 - license: bzip2-1.0.6 - license_family: BSD - size: 134188 - timestamp: 1720974491916 - kind: conda name: bzip2 version: 1.0.8 @@ -2914,17 +2843,6 @@ packages: purls: [] size: 155725 timestamp: 1706844034242 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: h56e8100_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda - sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e - md5: 9caa97c9504072cd060cf0a3142cc0ed - license: ISC - size: 154943 - timestamp: 1720077592592 - kind: conda name: ca-certificates version: 2024.7.4 @@ -2937,17 +2855,6 @@ packages: purls: [] size: 154943 timestamp: 1720077592592 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: h8857fd0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda - sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 - md5: 7df874a4b05b2d2b82826190170eaa0f - license: ISC - size: 154473 - timestamp: 1720077510541 - kind: conda name: ca-certificates version: 2024.7.4 @@ -2960,17 +2867,6 @@ packages: purls: [] size: 154473 timestamp: 1720077510541 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda - sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 - md5: 23ab7665c5f63cfb9f1f6195256daac6 - license: ISC - size: 154853 - timestamp: 1720077432978 - kind: conda name: ca-certificates version: 2024.7.4 @@ -2983,17 +2879,6 @@ packages: purls: [] size: 154853 timestamp: 1720077432978 -- kind: conda - name: ca-certificates - version: 2024.7.4 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda - sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b - md5: 21f9a33e5fe996189e470c19c5354dbe - license: ISC - size: 154517 - timestamp: 1720077468981 - kind: conda name: ca-certificates version: 2024.7.4 @@ -5554,20 +5439,6 @@ packages: - pkg:pypi/filelock size: 15707 timestamp: 1712686250786 -- kind: conda - name: filelock - version: 3.15.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda - sha256: f78d9c0be189a77cb0c67d02f33005f71b89037a85531996583fb79ff3fe1a0a - md5: 0e7e4388e9d5283e22b35a9443bdbcc9 - depends: - - python >=3.7 - license: Unlicense - size: 17592 - timestamp: 1719088395353 - kind: conda name: filelock version: 3.15.4 @@ -6782,21 +6653,6 @@ packages: purls: [] size: 704696 timestamp: 1674833944779 -- kind: conda - name: ld_impl_linux-64 - version: '2.40' - build: hf3520f5_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda - sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 - md5: b80f2f396ca2c28b8c14c437a4ed1e74 - constrains: - - binutils_impl_linux-64 2.40 - license: GPL-3.0-only - license_family: GPL - size: 707602 - timestamp: 1718625640445 - kind: conda name: ld_impl_linux-64 version: '2.40' @@ -7199,20 +7055,6 @@ packages: purls: [] size: 1142172 timestamp: 1686896907750 -- kind: conda - name: libcxx - version: 18.1.8 - build: h167917d_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda - sha256: a598062f2d1522fc3727c16620fbc2bc913c1069342671428a92fcf4eb02ec12 - md5: c891c2eeabd7d67fbc38e012cc6045d6 - depends: - - __osx >=11.0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1219441 - timestamp: 1720589623297 - kind: conda name: libcxx version: 18.1.8 @@ -7228,20 +7070,6 @@ packages: purls: [] size: 1219441 timestamp: 1720589623297 -- kind: conda - name: libcxx - version: 18.1.8 - build: hef8daea_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda - sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 - md5: 4101cde4241c92aeac310d65e6791579 - depends: - - __osx >=10.13 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1396919 - timestamp: 1720589431855 - kind: conda name: libcxx version: 18.1.8 @@ -7492,23 +7320,6 @@ packages: purls: [] size: 770506 timestamp: 1706819192021 -- kind: conda - name: libgcc-ng - version: 14.1.0 - build: h77fa898_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda - sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 - md5: ca0fad6a41ddaef54a153b78eccb5037 - depends: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex >=4.5 - constrains: - - libgomp 14.1.0 h77fa898_0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 842109 - timestamp: 1719538896937 - kind: conda name: libgcc-ng version: 14.1.0 @@ -7543,20 +7354,6 @@ packages: purls: [] size: 419751 timestamp: 1706819107383 -- kind: conda - name: libgomp - version: 14.1.0 - build: h77fa898_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda - sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 - md5: ae061a5ed5f05818acdf9adab72c146d - depends: - - _libgcc_mutex 0.1 conda_forge - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 456925 - timestamp: 1719538796073 - kind: conda name: libgomp version: 14.1.0 @@ -8486,20 +8283,6 @@ packages: purls: [] size: 870518 timestamp: 1713367888406 -- kind: conda - name: libsqlite - version: 3.46.0 - build: h1b8f9f3_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda - sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 - md5: 5dadfbc1a567fe6e475df4ce3148be09 - depends: - - __osx >=10.13 - - libzlib >=1.2.13,<2.0a0 - license: Unlicense - size: 908643 - timestamp: 1718050720117 - kind: conda name: libsqlite version: 3.46.0 @@ -8515,21 +8298,6 @@ packages: purls: [] size: 908643 timestamp: 1718050720117 -- kind: conda - name: libsqlite - version: 3.46.0 - build: h2466b09_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda - sha256: 662bd7e0d63c5b8c31cca19b91649e798319b93568a2ba8d1375efb91eeb251b - md5: 951b0a3a463932e17414cd9f047fa03d - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Unlicense - size: 876677 - timestamp: 1718051113874 - kind: conda name: libsqlite version: 3.46.0 @@ -8546,20 +8314,6 @@ packages: purls: [] size: 876677 timestamp: 1718051113874 -- kind: conda - name: libsqlite - version: 3.46.0 - build: hde9e2c9_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda - sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 - md5: 18aa975d2094c34aef978060ae7da7d8 - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0a0 - license: Unlicense - size: 865346 - timestamp: 1718050628718 - kind: conda name: libsqlite version: 3.46.0 @@ -8575,20 +8329,6 @@ packages: purls: [] size: 865346 timestamp: 1718050628718 -- kind: conda - name: libsqlite - version: 3.46.0 - build: hfb93653_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda - sha256: 73048f9cb8647d3d3bfe6021c0b7d663e12cffbe9b4f31bd081e713b0a9ad8f9 - md5: 12300188028c9bc02da965128b91b517 - depends: - - __osx >=11.0 - - libzlib >=1.2.13,<2.0a0 - license: Unlicense - size: 830198 - timestamp: 1718050644825 - kind: conda name: libsqlite version: 3.46.0 @@ -8698,21 +8438,7 @@ packages: - libgcc-ng 14.1.0 h77fa898_0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 3881307 - timestamp: 1719538923443 -- kind: conda - name: libstdcxx-ng - version: 14.1.0 - build: hc0a3c3a_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda - sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 - md5: 1cb187a157136398ddbaae90713e2498 - depends: - - libgcc-ng 14.1.0 h77fa898_0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - purls: [] + purls: [] size: 3881307 timestamp: 1719538923443 - kind: conda @@ -8974,25 +8700,6 @@ packages: purls: [] size: 61588 timestamp: 1686575217516 -- kind: conda - name: libzlib - version: 1.3.1 - build: h2466b09_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda - sha256: b13846a54a15243e15f96fec06b526d8155adc6a1ac2b6ed47a88f6a71a94b68 - md5: d4483ca8afc57ddf1f6dded53b36c17f - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 56186 - timestamp: 1716874730539 - kind: conda name: libzlib version: 1.3.1 @@ -9013,23 +8720,6 @@ packages: purls: [] size: 56186 timestamp: 1716874730539 -- kind: conda - name: libzlib - version: 1.3.1 - build: h4ab18f5_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda - sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d - md5: 57d7dc60e9325e3de37ff8dffd18e814 - depends: - - libgcc-ng >=12 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 61574 - timestamp: 1716874187109 - kind: conda name: libzlib version: 1.3.1 @@ -9048,23 +8738,6 @@ packages: purls: [] size: 61574 timestamp: 1716874187109 -- kind: conda - name: libzlib - version: 1.3.1 - build: h87427d6_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda - sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d - md5: b7575b5aa92108dcc9aaab0f05f2dbce - depends: - - __osx >=10.13 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 57372 - timestamp: 1716874211519 - kind: conda name: libzlib version: 1.3.1 @@ -9083,23 +8756,6 @@ packages: purls: [] size: 57372 timestamp: 1716874211519 -- kind: conda - name: libzlib - version: 1.3.1 - build: hfb2fe0b_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda - sha256: c34365dd37b0eab27b9693af32a1f7f284955517c2cc91f1b88a7ef4738ff03e - md5: 636077128927cf79fd933276dc3aed47 - depends: - - __osx >=11.0 - constrains: - - zlib 1.3.1 *_1 - license: Zlib - license_family: Other - size: 46921 - timestamp: 1716874262512 - kind: conda name: libzlib version: 1.3.1 @@ -10139,17 +9795,6 @@ packages: purls: [] size: 823010 timestamp: 1710866856626 -- kind: conda - name: ncurses - version: '6.5' - build: h5846eda_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda - sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 - md5: 02a888433d165c99bf09784a7b14d900 - license: X11 AND BSD-3-Clause - size: 823601 - timestamp: 1715195267791 - kind: conda name: ncurses version: '6.5' @@ -10162,19 +9807,6 @@ packages: purls: [] size: 823601 timestamp: 1715195267791 -- kind: conda - name: ncurses - version: '6.5' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda - sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 - md5: fcea371545eda051b6deafb24889fc69 - depends: - - libgcc-ng >=12 - license: X11 AND BSD-3-Clause - size: 887465 - timestamp: 1715194722503 - kind: conda name: ncurses version: '6.5' @@ -10189,17 +9821,6 @@ packages: purls: [] size: 887465 timestamp: 1715194722503 -- kind: conda - name: ncurses - version: '6.5' - build: hb89a1cb_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda - sha256: 87d7cf716d9d930dab682cb57b3b8d3a61940b47d6703f3529a155c938a6990a - md5: b13ad5724ac9ae98b6b4fd87e4500ba4 - license: X11 AND BSD-3-Clause - size: 795131 - timestamp: 1715194898402 - kind: conda name: ncurses version: '6.5' @@ -10618,21 +10239,6 @@ packages: - pkg:pypi/platformdirs size: 20210 timestamp: 1706713564353 -- kind: conda - name: platformdirs - version: 4.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - sha256: adc59384cf0b2fc6dc7362840151e8cb076349197a38f7230278252698a88442 - md5: 6f6cf28bf8e021933869bae3f84b8fc9 - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 20572 - timestamp: 1715777739019 - kind: conda name: platformdirs version: 4.2.2 @@ -14201,176 +13807,6 @@ packages: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping size: 96333 timestamp: 1707315306489 -- kind: conda - name: ruff - version: 0.5.2 - build: py310h3dab08e_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py310h3dab08e_0.conda - sha256: 0eb1847209a8a88e8fd6b3fe61553627cab602f6c7ac1722fcfc1dd118976e31 - md5: 58efb19e20ca420058e8e1ab1461f68e - depends: - - __osx >=11.0 - - libcxx >=16 - - python >=3.10,<3.11.0a0 - - python >=3.10,<3.11.0a0 *_cpython - - python_abi 3.10.* *_cp310 - constrains: - - __osx >=11.0 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 5827194 - timestamp: 1720987393348 -- kind: conda - name: ruff - version: 0.5.2 - build: py310h6f176b8_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py310h6f176b8_0.conda - sha256: cde749fc923d355f674fff2713203a754f9bf336d974ed1bb67896925cb6359a - md5: 3edb11ae8ef09eef63e4bbc74fdefac0 - depends: - - __osx >=10.13 - - libcxx >=16 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - constrains: - - __osx >=10.13 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 6126652 - timestamp: 1720987201383 -- kind: conda - name: ruff - version: 0.5.2 - build: py310h7f1804c_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py310h7f1804c_0.conda - sha256: 48b10abe4d390ee0c4304e0dc51cde5f12609cbc12a7e7a7d9d3a8dd43f996f0 - md5: ece1337b076886007fa2addba459bd00 - depends: - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 6245366 - timestamp: 1720988239707 -- kind: conda - name: ruff - version: 0.5.2 - build: py310hea9781c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py310hea9781c_0.conda - sha256: 3fb9cda7e30ba055e47c13845147cfc7b9e3eccc9315b12ca3c792aaef647ad7 - md5: aaf77f57e6231bcfaed0f666751f77f4 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - constrains: - - __glibc >=2.17 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 7156162 - timestamp: 1720986939023 -- kind: conda - name: ruff - version: 0.5.2 - build: py311h9a97b26_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.5.2-py311h9a97b26_0.conda - sha256: 1f56ee2cd6f17062edab1f0f973cba256e87d374484539c524764da42398a04f - md5: ed343ddc05b50663c2f978b332dcc457 - depends: - - __osx >=10.13 - - libcxx >=16 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - constrains: - - __osx >=10.13 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 6140113 - timestamp: 1720987189281 -- kind: conda - name: ruff - version: 0.5.2 - build: py311ha637bb9_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.5.2-py311ha637bb9_0.conda - sha256: 00fb81b80ef362957fceec59605036b0daee1766b0299c7dde7feb4e27125896 - md5: 40f38eca1da9edb6f0592d8c452367a8 - depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 6249762 - timestamp: 1720987828118 -- kind: conda - name: ruff - version: 0.5.2 - build: py311hce3a109_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.5.2-py311hce3a109_0.conda - sha256: 57b5f4e1573392dc44957f1e027a85797f185ef332a92b25eb18cdde4ce19f11 - md5: 750bfee62849b2e65735107aa5acdfa4 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - constrains: - - __glibc >=2.17 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 7154470 - timestamp: 1720986952497 -- kind: conda - name: ruff - version: 0.5.2 - build: py311hd374d79_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.5.2-py311hd374d79_0.conda - sha256: e3f595c57528cbd1bc9c69b46ebcabc6fbfdf514583b837f301481edbbe68ea0 - md5: bced605a88675788f0c6437c8759c7ae - depends: - - __osx >=11.0 - - libcxx >=16 - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 - constrains: - - __osx >=11.0 - license: MIT - license_family: MIT - purls: - - pkg:pypi/ruff?source=conda-forge-mapping - size: 5827787 - timestamp: 1720987101957 - kind: conda name: ruff version: 0.5.2 @@ -15004,23 +14440,6 @@ packages: - pkg:pypi/urllib3?source=conda-forge-mapping size: 95048 timestamp: 1719391384778 -- kind: conda - name: vc - version: '14.3' - build: h8a93ad2_20 - build_number: 20 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda - sha256: 23ac5feb15a9adf3ab2b8c4dcd63650f8b7ae860c5ceb073e49cf71d203eddef - md5: 8558f367e1d7700554f7cdb823c46faf - depends: - - vc14_runtime >=14.40.33810 - track_features: - - vc14 - license: BSD-3-Clause - license_family: BSD - size: 17391 - timestamp: 1717709040616 - kind: conda name: vc version: '14.3' @@ -15075,23 +14494,6 @@ packages: purls: [] size: 749868 timestamp: 1702511239004 -- kind: conda - name: vc14_runtime - version: 14.40.33810 - build: ha82c5b3_20 - build_number: 20 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda - sha256: af3cfa347e3d7c1277e9b964b0849a9a9f095bff61836cb3c3a89862fbc32e17 - md5: e39cc4c34c53654ec939558993d9dc5b - depends: - - ucrt >=10.0.20348.0 - constrains: - - vs2015_runtime 14.40.33810.* *_20 - license: LicenseRef-ProprietaryMicrosoft - license_family: Proprietary - size: 751934 - timestamp: 1717709031266 - kind: conda name: vc14_runtime version: 14.40.33810 @@ -15144,21 +14546,6 @@ packages: purls: [] size: 16988 timestamp: 1702511261442 -- kind: conda - name: vs2015_runtime - version: 14.40.33810 - build: h3bf8584_20 - build_number: 20 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda - sha256: 0c2803f7a788c51f28235a7228dc2ab3f107b4b16ab0845a3e595c8c51e50a7a - md5: c21f1b4a3a30bbc3ef35a50957578e0e - depends: - - vc14_runtime >=14.40.33810 - license: BSD-3-Clause - license_family: BSD - size: 17395 - timestamp: 1717709043353 - kind: conda name: vs2015_runtime version: 14.40.33810 diff --git a/pixi.toml b/pixi.toml index a079c75..77efff9 100644 --- a/pixi.toml +++ b/pixi.toml @@ -27,9 +27,6 @@ rattler-build-conda-compat = { path = ".", editable = true } pytest = ">=8.2.2,<9" syrupy = ">=4.6.1,<5" -[feature.ruff.dependencies] -ruff = ">=0.5.0,<0.6" - [feature.tests.tasks] tests = "pytest tests" snapshot_update = "pytest --snapshot-update tests" @@ -40,6 +37,7 @@ pre-commit-hooks = ">=4.6.0,<5" typos = ">=1.23.1,<2" mypy = ">=1.10.1,<2" types-pyyaml = ">=6.0.12.20240311,<6.0.13" +ruff = ">=0.5.0,<0.6" [feature.lint.tasks] pre-commit-install = "pre-commit-install" @@ -57,6 +55,6 @@ python = "3.10.*" [environments] py312 = { features = ["py312", "tests"] } -py311 = ["py311", "tests", "ruff"] -py310 = ["py310", "tests", "ruff"] -lint = { features = ["lint", "ruff"], no-default-feature = true } +py311 = ["py311", "tests"] +py310 = ["py310", "tests"] +lint = { features = ["lint"], no-default-feature = true } From aeadceb0dd6ab620ffbae13018eb1aec9a31eb04 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 11:31:24 +0200 Subject: [PATCH 26/31] feat: made rattler-build more lenient --- pixi.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixi.toml b/pixi.toml index 77efff9..a7c0fa4 100644 --- a/pixi.toml +++ b/pixi.toml @@ -12,7 +12,7 @@ build_sdist = "pixi run python -m build --sdist" [dependencies] python = ">=3.10" build = ">=0.7.0,<0.8" -rattler-build = ">=0.18.1,<0.19" +rattler-build = ">=0.18.1,<1" conda-build = ">=24.3.0,<25.0" "ruamel.yaml" = ">=0.18.6,<0.19" conda = ">=4.2" From 4e9b7c309756958c529f08ef5abf77128890a217 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 13:59:44 +0200 Subject: [PATCH 27/31] chore: bump 0.2.1 --- pixi.lock | 4 ++-- pixi.toml | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pixi.lock b/pixi.lock index 8441be3..4f3fe32 100644 --- a/pixi.lock +++ b/pixi.lock @@ -12700,9 +12700,9 @@ packages: timestamp: 1719424948999 - kind: pypi name: rattler-build-conda-compat - version: 0.2.0 + version: 0.2.1 path: . - sha256: 33f05df172d9437c9a196e3784869ae40f3c2f4a0162fbf8aa88e16cc44c3b80 + sha256: d89e3fca0aa28f37794d528923461124e905e3e1d95f3901d3611df064e527b3 requires_dist: - typing-extensions>=4.12,<5 requires_python: '>=3.10' diff --git a/pixi.toml b/pixi.toml index a7c0fa4..59d2b9d 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "rattler-build-conda-compat" -version = "0.2.0" +version = "0.2.1" description = "A package for exposing rattler-build API for conda-smithy" authors = ["nichmor "] channels = ["conda-forge"] diff --git a/pyproject.toml b/pyproject.toml index 9d3cf9a..d089961 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rattler-build-conda-compat" description = "A package for exposing rattler-build API for conda-smithy" -version = "0.2.0" +version = "0.2.1" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } From 01aa98674a41e8d45ffc7cd107e4c77cbcea578f Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 19 Jul 2024 15:23:13 +0200 Subject: [PATCH 28/31] update to allow py38 --- .github/workflows/tests.yml | 2 + pixi.lock | 8957 +++++++++++++---- pixi.toml | 10 +- pyproject.toml | 6 +- .../conditional_list.py | 4 +- .../recipe_sources.py | 4 +- src/rattler_build_conda_compat/render.py | 56 +- 7 files changed, 7105 insertions(+), 1934 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2d0cb3e..706c127 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,6 +17,8 @@ jobs: - py312 - py311 - py310 + - py39 + - py38 steps: - uses: actions/checkout@v4 - uses: prefix-dev/setup-pixi@v0.5.1 diff --git a/pixi.lock b/pixi.lock index 4f3fe32..e3cc38e 100644 --- a/pixi.lock +++ b/pixi.lock @@ -2194,1368 +2194,3333 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h7606c53_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda - pypi: . + py38: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py38h17151c0_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py38h6d47a40_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py38h578d9bd_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py38h578d9bd_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py38h578d9bd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py38h1407eca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py38hfb59056_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py38h578d9bd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py38h5cd715c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py38h01eb140_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py38h578d9bd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py38hfb59056_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py38h854fd01_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py38h01eb140_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py38h01eb140_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.8.19-hd12c33a_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py38h578d9bd_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.8-4_cp38.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py38h01eb140_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4.post0-h59595ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ripgrep-14.1.0-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py38h4005ec7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py38h01eb140_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py38h01eb140_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py38h01eb140_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py38h62bed22_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda + - pypi: . + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py38h940360d_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py38h082e395_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py38h50d1736_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py38h50d1736_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py38h50d1736_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py38h09e535d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py38hc718529_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py38h50d1736_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-h9ce406d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py38hd8e0602_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py38hae2e43d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py38h50d1736_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py38hc718529_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py38hc7224bb_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py38hcafd530_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py38hcafd530_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.8.19-h5ba8234_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py38h50d1736_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.8-4_cp38.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py38hcafd530_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.4.post0-h93d8f39_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ripgrep-14.1.0-h11a7dfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py38h2c15f49_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py38hae2e43d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py38hae2e43d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py38hae2e43d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py38hdb7df32_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda + - pypi: . + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py38he333c0f_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py38h73f40f7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py38h10201cd_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py38h10201cd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py38h10201cd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py38h4d1d993_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py38h3237794_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py38h10201cd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.4-h83d404f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-h5090b49_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py38h32fc51e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-h01dff8b_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py38h336bac9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py38h10201cd_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py38h3237794_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py38h2e4a203_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py38hb192615_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py38hb192615_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.8.19-h2469fbe_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py38h10201cd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.8-4_cp38.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py38hb192615_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.4.post0-h965bd2d_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ripgrep-14.1.0-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py38h186058e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py38h336bac9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py38h336bac9_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py38h336bac9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py38h43bb1b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda + - pypi: . + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py38hd3f51b4_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py38h91455d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py38haa244fe_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py38haa244fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py38haa244fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py38hb304008_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py38h4cb3324_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py38haa244fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py38h9d63bcc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-msys2-runtime-3.4.9.1-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py38h91455d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py38h2698bfa_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py38h4cb3324_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py38h2698bfa_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py38h91455d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py38hbc1c497_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.8.19-h4de0772_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py38haa244fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.8-4_cp38.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py38h91455d4_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ripgrep-11.0.2-1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py38h2e0ef18_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py38h91455d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py38h91455d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py38h91455d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py38hf92978b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda + - pypi: . + py39: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py39h3d6467e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py39h7a31438_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py39hf3d152e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py39hf3d152e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py39hf3d152e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py39h8169da8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py39hd3abc70_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py39hf3d152e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.14.1-hac33072_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.5.8-had39da4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py39h10defb6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py39hd1e30aa_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py39hf3d152e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/patch-2.7.6-h7f98852_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py39hd3abc70_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py39h84cc369_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py39hd1e30aa_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py39hd1e30aa_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.19-h0755675_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py39hf3d152e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-4_cp39.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py39hd1e30aa_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rattler-build-0.18.1-h72610f6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4.post0-h59595ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ripgrep-14.1.0-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py39h5cde264_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py39hd1e30aa_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py39hd1e30aa_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py39hd1e30aa_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py39h623c9ba_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda + - pypi: . + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py39h840bb9f_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py39h18ef598_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py39h6e9494a_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py39h6e9494a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py39h6e9494a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py39h721c90e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py39hded5825_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py39h6e9494a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-711-h4e51db5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-711-had5d0d3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.14.1-ha0df490_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-h9ce406d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.5.8-ha449628_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py39hb0188b1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py39ha09f3b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py39h6e9494a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/patch-2.7.6-hbcf498f_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py39hded5825_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py39h5a42fc7_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py39hdc70f33_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py39hdc70f33_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.19-h7a9c478_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py39h6e9494a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-4_cp39.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py39hdc70f33_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rattler-build-0.18.1-h4e38c46_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.4.post0-h93d8f39_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ripgrep-14.1.0-h11a7dfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py39hf59063a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py39ha09f3b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py39ha09f3b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py39ha09f3b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py39h32d468b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda + - pypi: . + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py39hb198ff7_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py39he153c15_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py39h2804cbe_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py39h2804cbe_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py39h2804cbe_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py39h7597e9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py39hfea33bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py39h2804cbe_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-711-h4c6efb1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-711-h5e7191b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.4-h83d404f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-18.1.8-h167917d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.14.1-h3f3aa29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-h5090b49_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.5.8-h90c426b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py39ha004b9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.0-hfb93653_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-h01dff8b_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-hfb2fe0b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py39h17cfd9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py39h2804cbe_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.1-hfb2fe0b_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/patch-2.7.6-h27ca646_1002.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py39hfea33bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py39he706d61_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py39h0f82c59_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py39h0f82c59_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.19-hd7ebdb9_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py39h2804cbe_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-4_cp39.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py39h0f82c59_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rattler-build-0.18.1-hc069d6b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.4.post0-h965bd2d_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ripgrep-14.1.0-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py39h0019b8a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py39h17cfd9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py39h17cfd9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py39h17cfd9d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.22.0-py39h0b77d07_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda + - pypi: . + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py39h99910a6_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py39ha55989b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py39hcbf5309_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py39hcbf5309_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py39hcbf5309_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.3.0-pyh7900ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py39hae46aff_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py39ha55e580_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py39hcbf5309_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblief-0.14.1-he0c23c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.5.8-h3f09ed1_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py39h2690a07_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.0-h2466b09_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20230914-0_x86_64.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-msys2-runtime-3.4.9.1-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2-patch-2.7.6.2-hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py39ha55989b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py39ha51f57c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.1-h2466b09_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.11.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py39ha55e580_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py39ha51f57c_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py39ha55989b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygithub-2.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py39h09fa780_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.9.19-h4de0772_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py39hcbf5309_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.9-4_cp39.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py39ha55989b_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rattler-build-0.18.1-ha08ef0e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ripgrep-11.0.2-1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py39h92a245a_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py39ha55989b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py39ha55989b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-71.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/syrupy-4.6.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h8a93ad2_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py39ha55989b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.19.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py39h9bf74da_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda + - pypi: . packages: - kind: conda - name: _libgcc_mutex - version: '0.1' - build: conda_forge - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - md5: d7c89558ba9fa0495403155b64376d81 - license: None + name: _libgcc_mutex + version: '0.1' + build: conda_forge + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + purls: [] + size: 2562 + timestamp: 1578324546067 +- kind: conda + name: _openmp_mutex + version: '4.5' + build: 2_gnu + build_number: 16 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 23621 + timestamp: 1650670423406 +- kind: conda + name: archspec + version: 0.2.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda + sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7 + md5: 192278292e20704f663b9c766909d67b + depends: + - python >=3.6 + license: MIT OR Apache-2.0 + purls: + - pkg:pypi/archspec?source=conda-forge-mapping + size: 48780 + timestamp: 1708969700251 +- kind: conda + name: attrs + version: 23.2.0 + build: pyh71513ae_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea + md5: 5e4c0743c70186509d1412e03c2d8dfa + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/attrs?source=conda-forge-mapping + size: 54582 + timestamp: 1704011393776 +- kind: conda + name: beautifulsoup4 + version: 4.12.3 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda + sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 + md5: 332493000404d8411859539a5a630865 + depends: + - python >=3.6 + - soupsieve >=1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/beautifulsoup4?source=conda-forge-mapping + size: 118200 + timestamp: 1705564819537 +- kind: conda + name: boltons + version: 24.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda + sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc + md5: 61de176bd62041f9cd5bd4fcd09eb0ff + depends: + - python ==2.7.*|>=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/boltons?source=conda-forge-mapping + size: 297896 + timestamp: 1711936529147 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310h00ffb61_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h00ffb61_1.conda + sha256: 8de77cf62a653dd6ffe19927b92c421f5fa73c078d7799181f5211a1bac2883b + md5: 42bfbc1d41cbe2696a3c9d8b0342324f + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 321672 + timestamp: 1695990897641 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310h1253130_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310h1253130_1.conda + sha256: dab21e18c0275bfd93a09b751096998485677ed17c2e2d08298bc5b43c10bee1 + md5: 26fab7f65a80fff9f402ec3b7860b88a + depends: + - libcxx >=15.0.7 + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 344275 + timestamp: 1695990848681 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310h9e9d8ca_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h9e9d8ca_1.conda + sha256: 57d66ca3e072b889c94cfaf56eb7e1794d3b1b3179bd475a4edef50a03359354 + md5: 2362e323293e7699cf1e621d502f86d6 + depends: + - libcxx >=15.0.7 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 367037 + timestamp: 1695990378635 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py310hc6cd4ac_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda + sha256: e22268d81905338570786921b3def88e55f9ed6d0ccdd17d9fbae31a02fbef69 + md5: 1f95722c94f00b69af69a066c7433714 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 349397 + timestamp: 1695990295884 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311h12c1d0e_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda + sha256: 5390e1e5e8e159d4893ecbfd2c08ca75ef51bdce1a4a44ff4ee9e2d596004aac + md5: 42fbf4e947c17ea605e6a4d7f526669a + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 322086 + timestamp: 1695990976742 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311ha891d26_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda + sha256: 2d78c79ccf2c17236c52ef217a4c34b762eb7908a6903d94439f787aac1c8f4b + md5: 5e802b015e33447d1283d599d21f052b + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 343332 + timestamp: 1695991223439 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311hb755f60_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda + sha256: 559093679e9fdb6061b7b80ca0f9a31fe6ffc213f1dae65bc5c82e2cd1a94107 + md5: cce9e7c3f1c307f2a5fb08a2922d6164 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 351340 + timestamp: 1695990160360 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py311hdf8f085_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda + sha256: 0f5e0a7de58006f349220365e32db521a1fe494c37ee455e5ecf05b8fe567dcc + md5: 546fdccabb90492fbaf2da4ffb78f352 + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 366864 + timestamp: 1695990449997 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h30efb56_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda + sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f + md5: 45801a89533d3336a365284d93298e36 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 350604 + timestamp: 1695990206327 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h53d5487_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda + sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 + md5: d01a6667b99f0e8ad4097af66c938e62 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 322514 + timestamp: 1695991054894 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312h9f69965_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda + sha256: 3418b1738243abba99e931c017b952771eeaa1f353c07f7d45b55e83bb74fcb3 + md5: 1bc01b9ffdf42beb1a9fe4e9222e0567 + depends: + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 343435 + timestamp: 1695990731924 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py312heafc425_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda + sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 + md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a + depends: + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 366883 + timestamp: 1695990710194 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py38h17151c0_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py38h17151c0_1.conda + sha256: f932ae77f10885dd991b0e1f56f6effea9f19b169e8606dab0bdafd0e44db3c9 + md5: 7a5a699c8992fc51ef25e980f4502c2a + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 350830 + timestamp: 1695990250755 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py38h940360d_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py38h940360d_1.conda + sha256: 0a088bff62ddd2e505bdc80cc16da009c134b9ccfa6352b0cfe9d4eeed27d8c2 + md5: ad8d4ae4e8351a2fc0fe92f13bd266d8 + depends: + - libcxx >=15.0.7 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 366343 + timestamp: 1695990788245 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py38hd3f51b4_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py38hd3f51b4_1.conda + sha256: a292d6b3118ef284cc03a99a6efe5e08ca3a6d0e37eff78eb8d87cfca3830d7b + md5: 72708ea626a2530148ea49eb743576f4 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 321650 + timestamp: 1695990817828 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py38he333c0f_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py38he333c0f_1.conda + sha256: 3fd1e0a4b7ea1b20f69bbc2d74c798f3eebd775ccbcdee170f68b1871f8bbb74 + md5: 29160c74d5977b1c5ecd654b00d576f0 + depends: + - libcxx >=15.0.7 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 343036 + timestamp: 1695990970956 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py39h3d6467e_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py39h3d6467e_1.conda + sha256: e22afb19527a93da24c1108c3e91532811f9c3df64a9473989faf332c98af082 + md5: c48418c8b35f1d59ae9ae1174812b40a + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + constrains: + - libbrotlicommon 1.1.0 hd590300_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 350065 + timestamp: 1695990113673 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py39h840bb9f_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py39h840bb9f_1.conda + sha256: e19de8f5d9e1fe650b49eff6b0111eebd3b98368b5ae82733b90ec0abea5062a + md5: bf1edb07835e15685718843f7e71bab1 + depends: + - libcxx >=15.0.7 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + constrains: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 367262 + timestamp: 1695990623703 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py39h99910a6_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py39h99910a6_1.conda + sha256: 076f6ac7dc00cfca25e11fd42bfd3cc3395307d9a3aa3958a13d14bc8ea610ec + md5: f24ba3942ece1e5d3dcde934f0532998 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 321654 + timestamp: 1695990742536 +- kind: conda + name: brotli-python + version: 1.1.0 + build: py39hb198ff7_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py39hb198ff7_1.conda + sha256: 014639c1f57be1dadf7b5c17e53df562e7e6bab71d3435fdd5bd56213dece9df + md5: ddf01dd9a743bd3ec9cf829d18bb8002 + depends: + - libcxx >=15.0.7 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + purls: + - pkg:pypi/brotli?source=conda-forge-mapping + size: 344364 + timestamp: 1695991093404 +- kind: conda + name: build + version: 0.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb + md5: add7f31586d03678695b32b78a1337a1 + depends: + - importlib-metadata + - packaging + - pep517 >=0.9.1 + - python >=3.6 + - tomli + license: MIT + license_family: MIT + purls: + - pkg:pypi/build?source=conda-forge-mapping + size: 17759 + timestamp: 1631843776429 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h10d778d_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 6097a6ca9ada32699b5fc4312dd6ef18 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 127885 + timestamp: 1699280178474 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h2466b09_7 + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b + md5: 276e7ffe9ffe39688abc665ef0f45596 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 54927 + timestamp: 1720974860185 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h4bc722e_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 252783 + timestamp: 1720974456583 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h93a5062_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda + sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f + md5: 1bbc659ca658bfd49a481b5ef7a0f40f + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 122325 + timestamp: 1699280294368 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h99b78c6_7 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 + md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 122909 + timestamp: 1720974522888 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hcfcfb64_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda + sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 + md5: 26eb8ca6ea332b675e11704cce84a3be + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 124580 + timestamp: 1699280668742 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hd590300_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 69b8b6202a07720f448be700e300ccf4 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 254228 + timestamp: 1699279927352 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hfdf4475_7 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 + md5: 7ed4301d437b59045be7e051a0308211 + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 134188 + timestamp: 1720974491916 +- kind: conda + name: c-ares + version: 1.28.1 + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: d5eb7992227254c0e9a0ce71151f0079 + license: MIT + license_family: MIT + purls: [] + size: 152607 + timestamp: 1711819681694 +- kind: conda + name: c-ares + version: 1.28.1 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.28.1-h93a5062_0.conda + sha256: 2fc553d7a75e912efbdd6b82cd7916cc9cb2773e6cd873b77e02d631dd7be698 + md5: 04f776a6139f7eafc2f38668570eb7db + license: MIT + license_family: MIT + purls: [] + size: 150488 + timestamp: 1711819630164 +- kind: conda + name: c-ares + version: 1.28.1 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: dcde58ff9a1f30b0037a2315d1846d1f + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 168875 + timestamp: 1711819445938 +- kind: conda + name: c-ares + version: 1.32.2 + build: h4bc722e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 + md5: 8024af1ee7078e37fa3101c0a0296af2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 179740 + timestamp: 1721065841233 +- kind: conda + name: c-ares + version: 1.32.2 + build: h51dda26_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 + md5: be4a9b58fcf1374aeb79e873c1166e19 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: [] + size: 160929 + timestamp: 1721066014296 +- kind: conda + name: c-ares + version: 1.32.2 + build: h99b78c6_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda + sha256: c9cb861e4cc5458df7e9277dd16623efc69491d1d74a85d826c121e2d831415c + md5: b0bcd3b8a19fb530d6106467dc681bb4 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: [] + size: 157768 + timestamp: 1721065989990 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: h56e8100_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda + sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 + md5: 63da060240ab8087b60d1357051ea7d6 + license: ISC + purls: [] + size: 155886 + timestamp: 1706843918052 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: h8857fd0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: f2eacee8c33c43692f1ccfd33d0f50b1 + license: ISC + purls: [] + size: 155665 + timestamp: 1706843838227 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hbcca054_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 2f4327a1cbe7f022401b236e915a5fef + license: ISC + purls: [] + size: 155432 + timestamp: 1706843687645 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hf0a4a13_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda + sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 + md5: fb416a1795f18dcc5a038bc2dc54edf9 + license: ISC purls: [] - size: 2562 - timestamp: 1578324546067 + size: 155725 + timestamp: 1706844034242 - kind: conda - name: _openmp_mutex - version: '4.5' - build: 2_gnu - build_number: 16 + name: ca-certificates + version: 2024.7.4 + build: h56e8100_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda + sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e + md5: 9caa97c9504072cd060cf0a3142cc0ed + license: ISC + purls: [] + size: 154943 + timestamp: 1720077592592 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: h8857fd0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 + md5: 7df874a4b05b2d2b82826190170eaa0f + license: ISC + purls: [] + size: 154473 + timestamp: 1720077510541 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: hbcca054_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - md5: 73aaf86a425cc6e73fcf236a5a46396d + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 + md5: 23ab7665c5f63cfb9f1f6195256daac6 + license: ISC + purls: [] + size: 154853 + timestamp: 1720077432978 +- kind: conda + name: ca-certificates + version: 2024.7.4 + build: hf0a4a13_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda + sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b + md5: 21f9a33e5fe996189e470c19c5354dbe + license: ISC + purls: [] + size: 154517 + timestamp: 1720077468981 +- kind: conda + name: cctools + version: '986' + build: h4c9edd9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda + sha256: bfbfc99da17828d007286f40af86b44315769cfbcc4beba62a8ae64264bd1193 + md5: abcfabe468c14e506fceab2e85380b3b depends: - - _libgcc_mutex 0.1 conda_forge - - libgomp >=7.5.0 + - cctools_osx-arm64 986 hd11630f_0 + - ld64 711 h4c6efb1_0 + - libllvm18 >=18.1.1,<18.2.0a0 + license: APSL-2.0 + license_family: Other + purls: [] + size: 21460 + timestamp: 1710484691219 +- kind: conda + name: cctools + version: '986' + build: hd3558d4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda + sha256: 0879b6169986404d3e79e16676fe3de0cd962b522b7e8ef0fdad345400a28571 + md5: 64cd107846d3407b8d75899078ffb2ab + depends: + - cctools_osx-64 986 h58a35ae_0 + - ld64 711 h4e51db5_0 + - libllvm18 >=18.1.1,<18.2.0a0 + license: APSL-2.0 + license_family: Other + purls: [] + size: 21451 + timestamp: 1710484533466 +- kind: conda + name: cctools_osx-64 + version: '986' + build: h58a35ae_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda + sha256: a11f85e26b7189af87aa7e42b29a80f6bae73a92710cd5a40e278d6376a66ef5 + md5: 1139258589f2d752a578ed5b2680eb60 + depends: + - ld64_osx-64 >=711,<712.0a0 + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - sigtool constrains: - - openmp_impl 9999 - license: BSD-3-Clause - license_family: BSD + - ld64 711.* + - cctools 986.* + - clang 18.1.* + license: APSL-2.0 + license_family: Other purls: [] - size: 23621 - timestamp: 1650670423406 + size: 1104790 + timestamp: 1710484461097 - kind: conda - name: archspec - version: 0.2.3 + name: cctools_osx-arm64 + version: '986' + build: hd11630f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda + sha256: 4152323bbb78e2730fea9004333c9c51fb82a9ddd935f005280bf621849ec53d + md5: cce200c91b2d291c85e66098fe0d31c2 + depends: + - ld64_osx-arm64 >=711,<712.0a0 + - libcxx + - libllvm18 >=18.1.1,<18.2.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - sigtool + constrains: + - cctools 986.* + - clang 18.1.* + - ld64 711.* + license: APSL-2.0 + license_family: Other + purls: [] + size: 1123368 + timestamp: 1710484635601 +- kind: conda + name: certifi + version: 2024.2.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda - sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7 - md5: 192278292e20704f663b9c766909d67b + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda + sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54 + md5: 0876280e409658fc6f9e75d035960333 depends: - - python >=3.6 - license: MIT OR Apache-2.0 + - python >=3.7 + license: ISC purls: - - pkg:pypi/archspec?source=conda-forge-mapping - size: 48780 - timestamp: 1708969700251 + - pkg:pypi/certifi + size: 160559 + timestamp: 1707022289175 - kind: conda - name: attrs - version: 23.2.0 - build: pyh71513ae_0 + name: certifi + version: 2024.7.4 + build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea - md5: 5e4c0743c70186509d1412e03c2d8dfa + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda + sha256: dd3577bb5275062c388c46b075dcb795f47f8dac561da7dd35fe504b936934e5 + md5: 24e7fd6ca65997938fff9e5ab6f653e4 depends: - python >=3.7 - license: MIT - license_family: MIT + license: ISC purls: - - pkg:pypi/attrs?source=conda-forge-mapping - size: 54582 - timestamp: 1704011393776 + - pkg:pypi/certifi?source=conda-forge-mapping + size: 159308 + timestamp: 1720458053074 - kind: conda - name: beautifulsoup4 - version: 4.12.3 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 - md5: 332493000404d8411859539a5a630865 + name: cffi + version: 1.16.0 + build: py310h2fee648_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda + sha256: 007e7f69ab45553b7bf11f2c1b8d3f3a13fd42997266a0d57795f41c7d38df36 + md5: 45846a970e71ac98fd327da5d40a0a2c depends: - - python >=3.6 - - soupsieve >=1.2 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 license: MIT license_family: MIT purls: - - pkg:pypi/beautifulsoup4?source=conda-forge-mapping - size: 118200 - timestamp: 1705564819537 -- kind: conda - name: boltons - version: 24.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda - sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc - md5: 61de176bd62041f9cd5bd4fcd09eb0ff - depends: - - python ==2.7.*|>=3.7 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/boltons?source=conda-forge-mapping - size: 297896 - timestamp: 1711936529147 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 241339 + timestamp: 1696001848492 - kind: conda - name: brotli-python - version: 1.1.0 - build: py310h00ffb61_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h00ffb61_1.conda - sha256: 8de77cf62a653dd6ffe19927b92c421f5fa73c078d7799181f5211a1bac2883b - md5: 42bfbc1d41cbe2696a3c9d8b0342324f + name: cffi + version: 1.16.0 + build: py310h8d17308_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py310h8d17308_0.conda + sha256: 1aeebb88518ab48c927d7360648a2799def172d8fcb0d7e20cb7208a3570ef9e + md5: b4bcce1a7ea1164e6dcea6c4f00d962b depends: + - pycparser - python >=3.10,<3.11.0a0 - python_abi 3.10.* *_cp310 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - constrains: - - libbrotlicommon 1.1.0 hcfcfb64_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 321672 - timestamp: 1695990897641 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 237888 + timestamp: 1696002116250 - kind: conda - name: brotli-python - version: 1.1.0 - build: py310h1253130_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310h1253130_1.conda - sha256: dab21e18c0275bfd93a09b751096998485677ed17c2e2d08298bc5b43c10bee1 - md5: 26fab7f65a80fff9f402ec3b7860b88a + name: cffi + version: 1.16.0 + build: py310hdca579f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py310hdca579f_0.conda + sha256: 37802485964f1a3137ed6ab21ebc08fe9d35e7dc4da39f2b72a814644dd1ac15 + md5: b9e6213f0eb91f40c009ce69139c1869 depends: - - libcxx >=15.0.7 + - libffi >=3.4,<4.0a0 + - pycparser - python >=3.10,<3.11.0a0 - - python >=3.10,<3.11.0a0 *_cpython - python_abi 3.10.* *_cp310 - constrains: - - libbrotlicommon 1.1.0 hb547adb_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 344275 - timestamp: 1695990848681 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 229407 + timestamp: 1696002017767 - kind: conda - name: brotli-python - version: 1.1.0 - build: py310h9e9d8ca_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h9e9d8ca_1.conda - sha256: 57d66ca3e072b889c94cfaf56eb7e1794d3b1b3179bd475a4edef50a03359354 - md5: 2362e323293e7699cf1e621d502f86d6 + name: cffi + version: 1.16.0 + build: py310hdcd7c05_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py310hdcd7c05_0.conda + sha256: 4edab3f1f855554e10950efe064b75138943812af829a764f9b570d1a7189d15 + md5: 8855823d908004e4d3b4fd4218795ad2 depends: - - libcxx >=15.0.7 + - libffi >=3.4,<4.0a0 + - pycparser - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython - python_abi 3.10.* *_cp310 - constrains: - - libbrotlicommon 1.1.0 h0dc2134_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 367037 - timestamp: 1695990378635 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 232227 + timestamp: 1696002085787 - kind: conda - name: brotli-python - version: 1.1.0 - build: py310hc6cd4ac_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda - sha256: e22268d81905338570786921b3def88e55f9ed6d0ccdd17d9fbae31a02fbef69 - md5: 1f95722c94f00b69af69a066c7433714 + name: cffi + version: 1.16.0 + build: py311h4a08483_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py311h4a08483_0.conda + sha256: 9430416328fe2a28e206e703de771817064c8613a79a6a21fe7107f6a783104c + md5: cbdde0484a47b40e6ce2a4e5aaeb48d7 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - constrains: - - libbrotlicommon 1.1.0 hd590300_1 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 349397 - timestamp: 1695990295884 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 292511 + timestamp: 1696002194472 - kind: conda - name: brotli-python - version: 1.1.0 - build: py311h12c1d0e_1 - build_number: 1 + name: cffi + version: 1.16.0 + build: py311ha68e1ae_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda - sha256: 5390e1e5e8e159d4893ecbfd2c08ca75ef51bdce1a4a44ff4ee9e2d596004aac - md5: 42fbf4e947c17ea605e6a4d7f526669a + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py311ha68e1ae_0.conda + sha256: eb7463fe3785dd9ac0b3b1e5fea3b721d20eb082e194cab0af8d9ff28c28934f + md5: d109d6e767c4890ea32880b8bfa4a3b6 depends: + - pycparser - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - constrains: - - libbrotlicommon 1.1.0 hcfcfb64_1 - license: MIT - license_family: MIT - purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 322086 - timestamp: 1695990976742 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py311ha891d26_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda - sha256: 2d78c79ccf2c17236c52ef217a4c34b762eb7908a6903d94439f787aac1c8f4b - md5: 5e802b015e33447d1283d599d21f052b - depends: - - libcxx >=15.0.7 - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 - constrains: - - libbrotlicommon 1.1.0 hb547adb_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 343332 - timestamp: 1695991223439 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 297043 + timestamp: 1696002186279 - kind: conda - name: brotli-python - version: 1.1.0 - build: py311hb755f60_1 - build_number: 1 + name: cffi + version: 1.16.0 + build: py311hb3a22ac_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda - sha256: 559093679e9fdb6061b7b80ca0f9a31fe6ffc213f1dae65bc5c82e2cd1a94107 - md5: cce9e7c3f1c307f2a5fb08a2922d6164 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda + sha256: b71c94528ca0c35133da4b7ef69b51a0b55eeee570376057f3d2ad60c3ab1444 + md5: b3469563ac5e808b0cd92810d0697043 depends: + - libffi >=3.4,<4.0a0 - libgcc-ng >=12 - - libstdcxx-ng >=12 + - pycparser - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - constrains: - - libbrotlicommon 1.1.0 hd590300_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 351340 - timestamp: 1695990160360 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 300207 + timestamp: 1696001873452 - kind: conda - name: brotli-python - version: 1.1.0 - build: py311hdf8f085_1 - build_number: 1 + name: cffi + version: 1.16.0 + build: py311hc0b63fd_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda - sha256: 0f5e0a7de58006f349220365e32db521a1fe494c37ee455e5ecf05b8fe567dcc - md5: 546fdccabb90492fbaf2da4ffb78f352 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py311hc0b63fd_0.conda + sha256: 1f13a5fa7f310fdbd27f5eddceb9e62cfb10012c58a58c923dd6f51fa979748a + md5: 15d07b82223cac96af629e5e747ba27a depends: - - libcxx >=15.0.7 + - libffi >=3.4,<4.0a0 + - pycparser - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - constrains: - - libbrotlicommon 1.1.0 h0dc2134_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 366864 - timestamp: 1695990449997 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 289932 + timestamp: 1696002096156 - kind: conda - name: brotli-python - version: 1.1.0 - build: py312h30efb56_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda - sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f - md5: 45801a89533d3336a365284d93298e36 + name: cffi + version: 1.16.0 + build: py312h38bf5a0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda + sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e + md5: a45759c013ab20b9017ef9539d234dd7 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libffi >=3.4,<4.0a0 + - pycparser - python >=3.12.0rc3,<3.13.0a0 - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hd590300_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 350604 - timestamp: 1695990206327 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 282370 + timestamp: 1696002004433 - kind: conda - name: brotli-python - version: 1.1.0 - build: py312h53d5487_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda - sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 - md5: d01a6667b99f0e8ad4097af66c938e62 + name: cffi + version: 1.16.0 + build: py312h8e38eb3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda + sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 + md5: 960ecbd65860d3b1de5e30373e1bffb1 depends: + - libffi >=3.4,<4.0a0 + - pycparser - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - libbrotlicommon 1.1.0 hcfcfb64_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 322514 - timestamp: 1695991054894 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 284245 + timestamp: 1696002181644 - kind: conda - name: brotli-python - version: 1.1.0 - build: py312h9f69965_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h9f69965_1.conda - sha256: 3418b1738243abba99e931c017b952771eeaa1f353c07f7d45b55e83bb74fcb3 - md5: 1bc01b9ffdf42beb1a9fe4e9222e0567 + name: cffi + version: 1.16.0 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda + sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 + md5: 5a51096925d52332c62bfd8904899055 depends: - - libcxx >=15.0.7 + - pycparser - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hb547adb_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 343435 - timestamp: 1695990731924 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 287805 + timestamp: 1696002408940 - kind: conda - name: brotli-python - version: 1.1.0 - build: py312heafc425_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda - sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 - md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a + name: cffi + version: 1.16.0 + build: py312hf06ca03_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda + sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 + md5: 56b0ca764ce23cc54f3f7e2a7b970f6d depends: - - libcxx >=15.0.7 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser - python >=3.12.0rc3,<3.13.0a0 - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 h0dc2134_1 license: MIT license_family: MIT purls: - - pkg:pypi/brotli?source=conda-forge-mapping - size: 366883 - timestamp: 1695990710194 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 294523 + timestamp: 1696001868949 - kind: conda - name: build - version: 0.7.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 - sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb - md5: add7f31586d03678695b32b78a1337a1 + name: cffi + version: 1.16.0 + build: py38h082e395_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py38h082e395_0.conda + sha256: c79e5074c663670f75258f6fce8ebd0e65042bd22ecbb4979294c57ff4fa8fc5 + md5: 046fe2a8edb11f1b8a7d3bd8e2fd1de7 depends: - - importlib-metadata - - packaging - - pep517 >=0.9.1 - - python >=3.6 - - tomli + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 license: MIT license_family: MIT purls: - - pkg:pypi/build?source=conda-forge-mapping - size: 17759 - timestamp: 1631843776429 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h10d778d_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 127885 - timestamp: 1699280178474 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h2466b09_7 - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b - md5: 276e7ffe9ffe39688abc665ef0f45596 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 54927 - timestamp: 1720974860185 + - pkg:pypi/cffi?source=conda-forge-mapping + size: 228367 + timestamp: 1696002058694 - kind: conda - name: bzip2 - version: 1.0.8 - build: h4bc722e_7 - build_number: 7 + name: cffi + version: 1.16.0 + build: py38h6d47a40_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda - sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d - md5: 62ee74e96c5ebb0af99386de58cf9553 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py38h6d47a40_0.conda + sha256: ec0a62d4836d3ec2321d07cffa5aeef37c6818c6cce6383dc6be7205d09551b3 + md5: fc010dfb8ce6540d289436fbba499ee7 depends: - - __glibc >=2.17,<3.0.a0 + - libffi >=3.4,<4.0a0 - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 252783 - timestamp: 1720974456583 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h93a5062_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f - md5: 1bbc659ca658bfd49a481b5ef7a0f40f - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 122325 - timestamp: 1699280294368 + - pycparser + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 239127 + timestamp: 1696001978654 - kind: conda - name: bzip2 - version: 1.0.8 - build: h99b78c6_7 - build_number: 7 + name: cffi + version: 1.16.0 + build: py38h73f40f7_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda - sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 - md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py38h73f40f7_0.conda + sha256: 375e0be4068f4b00facfa569aa26c92ed87858f45be875f2c4bf90f33733f4de + md5: 02911ce6163d7a3e8fe9d9398fb9986d depends: - - __osx >=11.0 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 122909 - timestamp: 1720974522888 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 230759 + timestamp: 1696002169830 - kind: conda - name: bzip2 - version: 1.0.8 - build: hcfcfb64_5 - build_number: 5 + name: cffi + version: 1.16.0 + build: py38h91455d4_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 - md5: 26eb8ca6ea332b675e11704cce84a3be + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py38h91455d4_0.conda + sha256: 0704377274cfe0b3a5c308facecdeaaf2207303ee847842a4bbd3f70b7331ddc + md5: e9b2ac14b9c3d3eaeb2f69745e021e49 depends: + - pycparser + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 124580 - timestamp: 1699280668742 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hd590300_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 - md5: 69b8b6202a07720f448be700e300ccf4 - depends: - - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 254228 - timestamp: 1699279927352 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hfdf4475_7 - build_number: 7 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 - md5: 7ed4301d437b59045be7e051a0308211 - depends: - - __osx >=10.13 - license: bzip2-1.0.6 - license_family: BSD - purls: [] - size: 134188 - timestamp: 1720974491916 -- kind: conda - name: c-ares - version: 1.28.1 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a - md5: d5eb7992227254c0e9a0ce71151f0079 - license: MIT - license_family: MIT - purls: [] - size: 152607 - timestamp: 1711819681694 -- kind: conda - name: c-ares - version: 1.28.1 - build: h93a5062_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.28.1-h93a5062_0.conda - sha256: 2fc553d7a75e912efbdd6b82cd7916cc9cb2773e6cd873b77e02d631dd7be698 - md5: 04f776a6139f7eafc2f38668570eb7db license: MIT license_family: MIT - purls: [] - size: 150488 - timestamp: 1711819630164 + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 234905 + timestamp: 1696002150251 - kind: conda - name: c-ares - version: 1.28.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a - md5: dcde58ff9a1f30b0037a2315d1846d1f + name: cffi + version: 1.16.0 + build: py39h18ef598_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py39h18ef598_0.conda + sha256: 26f365b87864cac155aa966a979d8cb17195032c05b61041d3d0dabd43ba0c0b + md5: c31ac48f93f773fd27e99f113cfffb98 depends: - - libgcc-ng >=12 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT - purls: [] - size: 168875 - timestamp: 1711819445938 + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 228801 + timestamp: 1696002021683 - kind: conda - name: c-ares - version: 1.32.2 - build: h4bc722e_0 + name: cffi + version: 1.16.0 + build: py39h7a31438_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda - sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 - md5: 8024af1ee7078e37fa3101c0a0296af2 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py39h7a31438_0.conda + sha256: 1536a2ca65caaf568bbdfe75aff8e12cb0e0507587b25af3b532a8bd22cb3ddb + md5: ac992767d7f8ed2cb27e71e78f0fb2d7 depends: - - __glibc >=2.17,<3.0.a0 + - libffi >=3.4,<4.0a0 - libgcc-ng >=12 + - pycparser + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT - purls: [] - size: 179740 - timestamp: 1721065841233 + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 239801 + timestamp: 1696001890928 - kind: conda - name: c-ares - version: 1.32.2 - build: h51dda26_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda - sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 - md5: be4a9b58fcf1374aeb79e873c1166e19 + name: cffi + version: 1.16.0 + build: py39ha55989b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py39ha55989b_0.conda + sha256: 1a1f399b29a5702110208fb85e215937b7d10347bd13bfc3601cabd964d83b25 + md5: 3641cc4492220301e0b0c65cf2985a80 depends: - - __osx >=10.13 + - pycparser + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - purls: [] - size: 160929 - timestamp: 1721066014296 + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 236120 + timestamp: 1696002149834 - kind: conda - name: c-ares - version: 1.32.2 - build: h99b78c6_0 + name: cffi + version: 1.16.0 + build: py39he153c15_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.32.2-h99b78c6_0.conda - sha256: c9cb861e4cc5458df7e9277dd16623efc69491d1d74a85d826c121e2d831415c - md5: b0bcd3b8a19fb530d6106467dc681bb4 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py39he153c15_0.conda + sha256: 2766a3bec7747d14fe646b2a3ec4ba508495ea8b0a434213189d3e4d20e24e4b + md5: 2be3a21503b84cbd74dd1c11f36c4a3c depends: - - __osx >=11.0 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT - purls: [] - size: 157768 - timestamp: 1721065989990 + purls: + - pkg:pypi/cffi?source=conda-forge-mapping + size: 231790 + timestamp: 1696002104149 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: h56e8100_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 - md5: 63da060240ab8087b60d1357051ea7d6 - license: ISC - purls: [] - size: 155886 - timestamp: 1706843918052 + name: cfgv + version: 3.3.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 + sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c + md5: ebb5f5f7dc4f1a3780ef7ea7738db08c + depends: + - python >=3.6.1 + license: MIT + license_family: MIT + size: 10788 + timestamp: 1629909423398 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: h8857fd0_0 + name: chardet + version: 5.2.0 + build: py310h2ec42d9_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - license: ISC - purls: [] - size: 155665 - timestamp: 1706843838227 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb - md5: 2f4327a1cbe7f022401b236e915a5fef - license: ISC - purls: [] - size: 155432 - timestamp: 1706843687645 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda - sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 - md5: fb416a1795f18dcc5a038bc2dc54edf9 - license: ISC - purls: [] - size: 155725 - timestamp: 1706844034242 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py310h2ec42d9_1.conda + sha256: 91a708b88de532497469162b335a316aef47d56878bddf66df186928492690ff + md5: c1a74b747db074df089e644b92fecc40 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 245926 + timestamp: 1695468873634 - kind: conda - name: ca-certificates - version: 2024.7.4 - build: h56e8100_0 + name: chardet + version: 5.2.0 + build: py310h5588dad_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.7.4-h56e8100_0.conda - sha256: 7f37bb33c7954de1b4d19ad622859feb4f6c58f751c38b895524cad4e44af72e - md5: 9caa97c9504072cd060cf0a3142cc0ed - license: ISC - purls: [] - size: 154943 - timestamp: 1720077592592 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py310h5588dad_1.conda + sha256: 069e17a9a0a60456e22b7035ba93bb597867352fa336a7ff46096094b5e8910b + md5: c273eb835519f5b7859fabcd7483f6f7 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 261681 + timestamp: 1695469057660 - kind: conda - name: ca-certificates - version: 2024.7.4 - build: h8857fd0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda - sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 - md5: 7df874a4b05b2d2b82826190170eaa0f - license: ISC - purls: [] - size: 154473 - timestamp: 1720077510541 + name: chardet + version: 5.2.0 + build: py310hbe9552e_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py310hbe9552e_1.conda + sha256: f0088bc3307a93591d9069364bd1217d3c9feeab11de767a5727b94104457313 + md5: 0efa23da34347a5b4b777e06ccefe10a + depends: + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 245293 + timestamp: 1695469005172 - kind: conda - name: ca-certificates - version: 2024.7.4 - build: hbcca054_0 + name: chardet + version: 5.2.0 + build: py310hff52083_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda - sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 - md5: 23ab7665c5f63cfb9f1f6195256daac6 - license: ISC - purls: [] - size: 154853 - timestamp: 1720077432978 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py310hff52083_1.conda + sha256: ab38a9946bc2beb9fc03c810b61d9e93030afff3e17e82ad4f8a1e7749957125 + md5: a677136a83b823803d2f92045f885be2 + depends: + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 246635 + timestamp: 1695468739935 - kind: conda - name: ca-certificates - version: 2024.7.4 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.7.4-hf0a4a13_0.conda - sha256: 33a61116dae7f369b6ce92a7f2a1ff361ae737c675a493b11feb5570b89e0e3b - md5: 21f9a33e5fe996189e470c19c5354dbe - license: ISC - purls: [] - size: 154517 - timestamp: 1720077468981 + name: chardet + version: 5.2.0 + build: py311h1ea47a8_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py311h1ea47a8_1.conda + sha256: 1972d150055784f8b10a0277f75176aed3164483cb529b027bff45ae4f32925f + md5: 5c7813415d332343dfe550685954d1b5 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 284249 + timestamp: 1695469001100 - kind: conda - name: cctools - version: '986' - build: h4c9edd9_0 + name: chardet + version: 5.2.0 + build: py311h267d04e_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-986-h4c9edd9_0.conda - sha256: bfbfc99da17828d007286f40af86b44315769cfbcc4beba62a8ae64264bd1193 - md5: abcfabe468c14e506fceab2e85380b3b + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py311h267d04e_1.conda + sha256: 69541a0c834baa0b404cb55f8389bb53f8e9d6962055d68285635d6fbc04334c + md5: 2aa7eb0b906818f900e2075fc244976f + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 269754 + timestamp: 1695469210623 +- kind: conda + name: chardet + version: 5.2.0 + build: py311h38be061_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py311h38be061_1.conda + sha256: 80b547150fc6d125fe034bcc3e820222faa0136463b32b82d7cbe965cc5dec77 + md5: b8cfb13de4dbe349a41800644391de6a depends: - - cctools_osx-arm64 986 hd11630f_0 - - ld64 711 h4c6efb1_0 - - libllvm18 >=18.1.1,<18.2.0a0 - license: APSL-2.0 - license_family: Other - purls: [] - size: 21460 - timestamp: 1710484691219 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 264886 + timestamp: 1695468797136 - kind: conda - name: cctools - version: '986' - build: hd3558d4_0 + name: chardet + version: 5.2.0 + build: py311h6eed73b_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cctools-986-hd3558d4_0.conda - sha256: 0879b6169986404d3e79e16676fe3de0cd962b522b7e8ef0fdad345400a28571 - md5: 64cd107846d3407b8d75899078ffb2ab + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py311h6eed73b_1.conda + sha256: 5826e13627594bafa2f0b4074d9233b0de74227835d249641f216423b3dc8dfc + md5: dd58f7f16513cea1fea710651e4df728 depends: - - cctools_osx-64 986 h58a35ae_0 - - ld64 711 h4e51db5_0 - - libllvm18 >=18.1.1,<18.2.0a0 - license: APSL-2.0 - license_family: Other - purls: [] - size: 21451 - timestamp: 1710484533466 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 267330 + timestamp: 1695468986364 - kind: conda - name: cctools_osx-64 - version: '986' - build: h58a35ae_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-h58a35ae_0.conda - sha256: a11f85e26b7189af87aa7e42b29a80f6bae73a92710cd5a40e278d6376a66ef5 - md5: 1139258589f2d752a578ed5b2680eb60 + name: chardet + version: 5.2.0 + build: py312h2e8e312_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda + sha256: 105e8f3c7a4510d8b8e3f164970c898e2b7ea02417b99369c7f58a0bb95af34d + md5: fcc4fea02fa461bc3ad2a5d6de0c43a8 depends: - - ld64_osx-64 >=711,<712.0a0 - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - sigtool - constrains: - - ld64 711.* - - cctools 986.* - - clang 18.1.* - license: APSL-2.0 - license_family: Other - purls: [] - size: 1104790 - timestamp: 1710484461097 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 277773 + timestamp: 1695468989681 - kind: conda - name: cctools_osx-arm64 - version: '986' - build: hd11630f_0 + name: chardet + version: 5.2.0 + build: py312h7900ff3_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda + sha256: 584804790b465c8e28b3c3fcea8e774cb659fe479afd8adc0d39406e8c220194 + md5: af3980cc4690716a5510c8a08cb06238 + depends: + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 260197 + timestamp: 1695468803539 +- kind: conda + name: chardet + version: 5.2.0 + build: py312h81bd7bf_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-986-hd11630f_0.conda - sha256: 4152323bbb78e2730fea9004333c9c51fb82a9ddd935f005280bf621849ec53d - md5: cce200c91b2d291c85e66098fe0d31c2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda + sha256: 2451501ec933017ff77c18436884baa90b289420c43ad4bdb4fe60d55e5dcdfd + md5: ea728c39b7453cb5f7177bc44ee22c73 depends: - - ld64_osx-arm64 >=711,<712.0a0 - - libcxx - - libllvm18 >=18.1.1,<18.2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - sigtool - constrains: - - cctools 986.* - - clang 18.1.* - - ld64 711.* - license: APSL-2.0 - license_family: Other - purls: [] - size: 1123368 - timestamp: 1710484635601 + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL + purls: + - pkg:pypi/chardet?source=conda-forge-mapping + size: 263585 + timestamp: 1695469015195 - kind: conda - name: certifi - version: 2024.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54 - md5: 0876280e409658fc6f9e75d035960333 + name: chardet + version: 5.2.0 + build: py312hb401068_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda + sha256: ba2ebeb6d05a3cdd94dbd7a52dabc0686192e4337774c4f7c32da7ef0e04dd10 + md5: 488080e6ee9bc087762669d1f6d2dc8a depends: - - python >=3.7 - license: ISC + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/certifi - size: 160559 - timestamp: 1707022289175 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 259854 + timestamp: 1695468947554 - kind: conda - name: certifi - version: 2024.7.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda - sha256: dd3577bb5275062c388c46b075dcb795f47f8dac561da7dd35fe504b936934e5 - md5: 24e7fd6ca65997938fff9e5ab6f653e4 + name: chardet + version: 5.2.0 + build: py38h10201cd_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py38h10201cd_1.conda + sha256: 1ebaf45cece1ff42bb56c738a856c82c3fb477767d31e68f0607b5e5713c0ce1 + md5: 7c054edfc9c2a98857ebbaa6bf34b1e9 depends: - - python >=3.7 - license: ISC + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/certifi?source=conda-forge-mapping - size: 159308 - timestamp: 1720458053074 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 225160 + timestamp: 1695469038879 - kind: conda - name: cffi - version: 1.16.0 - build: py310h2fee648_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda - sha256: 007e7f69ab45553b7bf11f2c1b8d3f3a13fd42997266a0d57795f41c7d38df36 - md5: 45846a970e71ac98fd327da5d40a0a2c + name: chardet + version: 5.2.0 + build: py38h50d1736_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py38h50d1736_1.conda + sha256: 27c06a5b4880f24d91ff0d243f289f4d314e5aa03398e40ca2783d6e092e570b + md5: 95422fe9cf109d33ed0c39a53fd37a27 depends: - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - pycparser - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - license: MIT - license_family: MIT + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 241339 - timestamp: 1696001848492 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 225650 + timestamp: 1695468881633 - kind: conda - name: cffi - version: 1.16.0 - build: py310h8d17308_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py310h8d17308_0.conda - sha256: 1aeebb88518ab48c927d7360648a2799def172d8fcb0d7e20cb7208a3570ef9e - md5: b4bcce1a7ea1164e6dcea6c4f00d962b + name: chardet + version: 5.2.0 + build: py38h578d9bd_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py38h578d9bd_1.conda + sha256: dbe4c27bae1e209107dc8c3aa66c4b60f7fbc10f0e430e4d5b2a6af0bad2d826 + md5: 9c35b12220d348448b19e2df0649a2e8 depends: - - pycparser - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 237888 - timestamp: 1696002116250 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 224509 + timestamp: 1695468761781 - kind: conda - name: cffi - version: 1.16.0 - build: py310hdca579f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py310hdca579f_0.conda - sha256: 37802485964f1a3137ed6ab21ebc08fe9d35e7dc4da39f2b72a814644dd1ac15 - md5: b9e6213f0eb91f40c009ce69139c1869 + name: chardet + version: 5.2.0 + build: py38haa244fe_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py38haa244fe_1.conda + sha256: d412b792aa29880c1e933a5fbd91ea83ea8523aec03d0475b6fb416868d8b3d6 + md5: db637c05c106965f43f724dd5fe9c54e depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 - license: MIT - license_family: MIT + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 229407 - timestamp: 1696002017767 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 241006 + timestamp: 1695469066053 - kind: conda - name: cffi - version: 1.16.0 - build: py310hdcd7c05_0 + name: chardet + version: 5.2.0 + build: py39h2804cbe_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py310hdcd7c05_0.conda - sha256: 4edab3f1f855554e10950efe064b75138943812af829a764f9b570d1a7189d15 - md5: 8855823d908004e4d3b4fd4218795ad2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py39h2804cbe_1.conda + sha256: 0fa01ea9a2b31897af4ca95f3d6f92edd208e474ebd8d89ddfa9d05fe72477be + md5: 0e695a9b3912071c144c3d794b744432 depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.10,<3.11.0a0 - - python >=3.10,<3.11.0a0 *_cpython - - python_abi 3.10.* *_cp310 - license: MIT - license_family: MIT + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 232227 - timestamp: 1696002085787 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 226664 + timestamp: 1695469080980 - kind: conda - name: cffi - version: 1.16.0 - build: py311h4a08483_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py311h4a08483_0.conda - sha256: 9430416328fe2a28e206e703de771817064c8613a79a6a21fe7107f6a783104c - md5: cbdde0484a47b40e6ce2a4e5aaeb48d7 + name: chardet + version: 5.2.0 + build: py39h6e9494a_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py39h6e9494a_1.conda + sha256: 3af30427ac7a2f32f12ebc948beb29f9990005249172ed9803186945dea7920f + md5: ad452e3e1b22c65052c17219c7a868e6 depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 - license: MIT - license_family: MIT + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 292511 - timestamp: 1696002194472 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 226295 + timestamp: 1695469092858 - kind: conda - name: cffi - version: 1.16.0 - build: py311ha68e1ae_0 + name: chardet + version: 5.2.0 + build: py39hcbf5309_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py311ha68e1ae_0.conda - sha256: eb7463fe3785dd9ac0b3b1e5fea3b721d20eb082e194cab0af8d9ff28c28934f - md5: d109d6e767c4890ea32880b8bfa4a3b6 + url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py39hcbf5309_1.conda + sha256: 4037e0c19fc3830b430078fc121fbeee86ea81bc81d84c3011496dda4aa12cd7 + md5: f6db590559081707fc7ed75e32674ab7 depends: - - pycparser - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 297043 - timestamp: 1696002186279 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 241606 + timestamp: 1695469062898 - kind: conda - name: cffi - version: 1.16.0 - build: py311hb3a22ac_0 + name: chardet + version: 5.2.0 + build: py39hf3d152e_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda - sha256: b71c94528ca0c35133da4b7ef69b51a0b55eeee570376057f3d2ad60c3ab1444 - md5: b3469563ac5e808b0cd92810d0697043 + url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py39hf3d152e_1.conda + sha256: 1733218d1da1ce2f1e9a0d28b6e9c62fe32c3b86c5bd7a0cdceb2f3a4b03cfa9 + md5: 514bcdeaf82679b99ac629cb6f2860f1 depends: - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - pycparser - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - license: MIT - license_family: MIT + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: LGPL-2.1-only + license_family: GPL purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 300207 - timestamp: 1696001873452 + - pkg:pypi/chardet?source=conda-forge-mapping + size: 223936 + timestamp: 1695468740053 - kind: conda - name: cffi - version: 1.16.0 - build: py311hc0b63fd_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py311hc0b63fd_0.conda - sha256: 1f13a5fa7f310fdbd27f5eddceb9e62cfb10012c58a58c923dd6f51fa979748a - md5: 15d07b82223cac96af629e5e747ba27a + name: charset-normalizer + version: 3.3.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda + sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 + md5: 7f4a9e3fcff3f6356ae99244a014da6a depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.7 license: MIT license_family: MIT purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 289932 - timestamp: 1696002096156 + - pkg:pypi/charset-normalizer?source=conda-forge-mapping + size: 46597 + timestamp: 1698833765762 - kind: conda - name: cffi - version: 1.16.0 - build: py312h38bf5a0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda - sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e - md5: a45759c013ab20b9017ef9539d234dd7 + name: click + version: 8.1.7 + build: unix_pyh707e725_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec + md5: f3ad426304898027fc619827ff428eca depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 + - __unix + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click?source=conda-forge-mapping + size: 84437 + timestamp: 1692311973840 +- kind: conda + name: click + version: 8.1.7 + build: win_pyh7428d3b_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 + md5: 3549ecbceb6cd77b91a105511b7d0786 + depends: + - __win + - colorama + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click?source=conda-forge-mapping + size: 85051 + timestamp: 1692312207348 +- kind: conda + name: colorama + version: 0.4.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: 3faab06a954c2a04039983f2c4a50d99 + depends: + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/colorama?source=conda-forge-mapping + size: 25170 + timestamp: 1666700778190 +- kind: conda + name: conda + version: 24.3.0 + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.3.0-py312h2e8e312_0.conda + sha256: 9bc70a7291e559762d4049711510772d2e4fda03f142afdaeebedaaa28a0f47e + md5: c7e9ec64cd01c83a8b4418ab1699aeb8 + depends: + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 282370 - timestamp: 1696002004433 + - pkg:pypi/conda + size: 1198612 + timestamp: 1711446530411 - kind: conda - name: cffi - version: 1.16.0 - build: py312h8e38eb3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda - sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 - md5: 960ecbd65860d3b1de5e30373e1bffb1 + name: conda + version: 24.3.0 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.3.0-py312h7900ff3_0.conda + sha256: 64eee1c0f97bed16908ab6c4f3cd6c0bebb67fda5bba580888e513a1ef22f3f9 + md5: 3b7d3f731e02380fb68b654b037ae727 depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT + - 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 + constrains: + - conda-build >=24.3 + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 284245 - timestamp: 1696002181644 + - pkg:pypi/conda + size: 1195527 + timestamp: 1711445992988 - kind: conda - name: cffi - version: 1.16.0 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda - sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 - md5: 5a51096925d52332c62bfd8904899055 + name: conda + version: 24.3.0 + build: py312h81bd7bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.3.0-py312h81bd7bf_0.conda + sha256: d8fb7f84ea5d946c5acf50d9687a1d9f112116ef6a06c0bb645320fd4e7db6e7 + md5: 537dbde4ec642c05ea421a89ae16366a depends: - - pycparser - - python >=3.12.0rc3,<3.13.0a0 + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 287805 - timestamp: 1696002408940 + - pkg:pypi/conda + size: 1197572 + timestamp: 1711446174975 - kind: conda - name: cffi - version: 1.16.0 - build: py312hf06ca03_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda - sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 - md5: 56b0ca764ce23cc54f3f7e2a7b970f6d + name: conda + version: 24.3.0 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.3.0-py312hb401068_0.conda + sha256: 0c9a15ec877a9374deef2fd020fe644869a98aa5fec75b852a99d20a0198c624 + md5: 549c60ea2ec52e45a48b12349d982115 depends: - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 + - 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 + - jsonpatch >=1.32 + - menuinst >=2 + - packaging >=23.0 + - platformdirs >=3.10.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/cffi?source=conda-forge-mapping - size: 294523 - timestamp: 1696001868949 -- kind: conda - name: cfgv - version: 3.3.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 - sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - md5: ebb5f5f7dc4f1a3780ef7ea7738db08c - depends: - - python >=3.6.1 - license: MIT - license_family: MIT - size: 10788 - timestamp: 1629909423398 + - pkg:pypi/conda + size: 1196619 + timestamp: 1711446125221 - kind: conda - name: chardet - version: 5.2.0 - build: py310h2ec42d9_1 - build_number: 1 + name: conda + version: 24.5.0 + build: py310h2ec42d9_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py310h2ec42d9_1.conda - sha256: 91a708b88de532497469162b335a316aef47d56878bddf66df186928492690ff - md5: c1a74b747db074df089e644b92fecc40 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py310h2ec42d9_0.conda + sha256: e89eedb77c3497859099da976f0dd55402b6e0ad5c70d7f948854b95c823193b + md5: 6baab58c25f0f2a7c169a8845055d7ff depends: + - 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 - python_abi 3.10.* *_cp310 - license: LGPL-2.1-only - license_family: GPL + - 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 + constrains: + - conda-build >=24.3 + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 245926 - timestamp: 1695468873634 + - pkg:pypi/conda?source=conda-forge-mapping + size: 962712 + timestamp: 1715632195160 - kind: conda - name: chardet - version: 5.2.0 - build: py310h5588dad_1 - build_number: 1 + name: conda + version: 24.5.0 + build: py310h5588dad_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py310h5588dad_1.conda - sha256: 069e17a9a0a60456e22b7035ba93bb597867352fa336a7ff46096094b5e8910b - md5: c273eb835519f5b7859fabcd7483f6f7 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py310h5588dad_0.conda + sha256: 6cb5b9299054cdcb4b1cc918ae1a95d9d2d2ca5b03290d8780df48edd6ab6138 + md5: 8ead0666296fce486409973c1b88b9f7 depends: + - 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 - python_abi 3.10.* *_cp310 - license: LGPL-2.1-only - license_family: GPL + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 261681 - timestamp: 1695469057660 + - pkg:pypi/conda?source=conda-forge-mapping + size: 964009 + timestamp: 1715632477327 - kind: conda - name: chardet - version: 5.2.0 - build: py310hbe9552e_1 - build_number: 1 + name: conda + version: 24.5.0 + build: py310hbe9552e_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py310hbe9552e_1.conda - sha256: f0088bc3307a93591d9069364bd1217d3c9feeab11de767a5727b94104457313 - md5: 0efa23da34347a5b4b777e06ccefe10a + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py310hbe9552e_0.conda + sha256: cad372428468745735aa8a84d1be087eb6cb2f1446ee2c9f8269449e0eaeb303 + md5: e3ad564582eb2cc1965dffa45e73e4b5 depends: + - 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 - python >=3.10,<3.11.0a0 *_cpython - python_abi 3.10.* *_cp310 - license: LGPL-2.1-only - license_family: GPL + - 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 + constrains: + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 245293 - timestamp: 1695469005172 + - pkg:pypi/conda?source=conda-forge-mapping + size: 964178 + timestamp: 1715632173559 - kind: conda - name: chardet - version: 5.2.0 - build: py310hff52083_1 - build_number: 1 + name: conda + version: 24.5.0 + build: py310hff52083_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py310hff52083_1.conda - sha256: ab38a9946bc2beb9fc03c810b61d9e93030afff3e17e82ad4f8a1e7749957125 - md5: a677136a83b823803d2f92045f885be2 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py310hff52083_0.conda + sha256: b0afa92a62d55221e85d6bb50f863bead42a98dbd17c62a59ff4fb259da12171 + md5: 56952b606f4d08952be78eff94874be8 depends: + - 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 - python_abi 3.10.* *_cp310 - license: LGPL-2.1-only - license_family: GPL + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 246635 - timestamp: 1695468739935 + - pkg:pypi/conda?source=conda-forge-mapping + size: 961219 + timestamp: 1715632034279 - kind: conda - name: chardet - version: 5.2.0 - build: py311h1ea47a8_1 - build_number: 1 + name: conda + version: 24.5.0 + build: py311h1ea47a8_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py311h1ea47a8_1.conda - sha256: 1972d150055784f8b10a0277f75176aed3164483cb529b027bff45ae4f32925f - md5: 5c7813415d332343dfe550685954d1b5 - depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 284249 - timestamp: 1695469001100 -- kind: conda - name: chardet - version: 5.2.0 - build: py311h267d04e_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py311h267d04e_1.conda - sha256: 69541a0c834baa0b404cb55f8389bb53f8e9d6962055d68285635d6fbc04334c - md5: 2aa7eb0b906818f900e2075fc244976f - depends: - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 269754 - timestamp: 1695469210623 -- kind: conda - name: chardet - version: 5.2.0 - build: py311h38be061_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py311h38be061_1.conda - sha256: 80b547150fc6d125fe034bcc3e820222faa0136463b32b82d7cbe965cc5dec77 - md5: b8cfb13de4dbe349a41800644391de6a - depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 264886 - timestamp: 1695468797136 -- kind: conda - name: chardet - version: 5.2.0 - build: py311h6eed73b_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py311h6eed73b_1.conda - sha256: 5826e13627594bafa2f0b4074d9233b0de74227835d249641f216423b3dc8dfc - md5: dd58f7f16513cea1fea710651e4df728 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py311h1ea47a8_0.conda + sha256: a4dd2b472c87c481047692001b905b41b99722aaabae58ae9b402cdaa5231b14 + md5: 41b87d65919231345852d9ca9b445322 depends: + - 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.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 267330 - timestamp: 1695468986364 -- kind: conda - name: chardet - version: 5.2.0 - build: py312h2e8e312_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py312h2e8e312_1.conda - sha256: 105e8f3c7a4510d8b8e3f164970c898e2b7ea02417b99369c7f58a0bb95af34d - md5: fcc4fea02fa461bc3ad2a5d6de0c43a8 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 277773 - timestamp: 1695468989681 -- kind: conda - name: chardet - version: 5.2.0 - build: py312h7900ff3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py312h7900ff3_1.conda - sha256: 584804790b465c8e28b3c3fcea8e774cb659fe479afd8adc0d39406e8c220194 - md5: af3980cc4690716a5510c8a08cb06238 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 260197 - timestamp: 1695468803539 -- kind: conda - name: chardet - version: 5.2.0 - build: py312h81bd7bf_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py312h81bd7bf_1.conda - sha256: 2451501ec933017ff77c18436884baa90b289420c43ad4bdb4fe60d55e5dcdfd - md5: ea728c39b7453cb5f7177bc44ee22c73 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 263585 - timestamp: 1695469015195 -- kind: conda - name: chardet - version: 5.2.0 - build: py312hb401068_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py312hb401068_1.conda - sha256: ba2ebeb6d05a3cdd94dbd7a52dabc0686192e4337774c4f7c32da7ef0e04dd10 - md5: 488080e6ee9bc087762669d1f6d2dc8a - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: LGPL-2.1-only - license_family: GPL - purls: - - pkg:pypi/chardet?source=conda-forge-mapping - size: 259854 - timestamp: 1695468947554 -- kind: conda - name: charset-normalizer - version: 3.3.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 - md5: 7f4a9e3fcff3f6356ae99244a014da6a - depends: - - python >=3.7 - license: MIT - license_family: MIT + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + - conda-build >=24.3 + license: BSD-3-Clause + license_family: BSD purls: - - pkg:pypi/charset-normalizer?source=conda-forge-mapping - size: 46597 - timestamp: 1698833765762 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1252525 + timestamp: 1715632579685 - kind: conda - name: click - version: 8.1.7 - build: unix_pyh707e725_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec - md5: f3ad426304898027fc619827ff428eca + name: conda + version: 24.5.0 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py311h267d04e_0.conda + sha256: 6b2dae699444d58aaf6ace2a4414b82b2c87c6a0c7db4e4761c3e4336b2008eb + md5: 4bc0033520bc8fe4ad85bd8e03c76da6 depends: - - __unix - - python >=3.8 + - 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.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + - conda-build >=24.3 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/click?source=conda-forge-mapping - size: 84437 - timestamp: 1692311973840 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1253439 + timestamp: 1715632225406 - kind: conda - name: click - version: 8.1.7 - build: win_pyh7428d3b_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 - md5: 3549ecbceb6cd77b91a105511b7d0786 + name: conda + version: 24.5.0 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py311h38be061_0.conda + sha256: c9f46253e502e74ed3933cf72081d74aa10c98e781132325617307d05b3030b3 + md5: 8408fb2adcce818ff95758d1826dad2b depends: - - __win - - colorama - - python >=3.8 + - 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.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-build >=24.3 + - conda-content-trust >=0.1.1 + - conda-env >=2.6 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/click?source=conda-forge-mapping - size: 85051 - timestamp: 1692312207348 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1247034 + timestamp: 1715632061486 - kind: conda - name: colorama - version: 0.4.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - md5: 3faab06a954c2a04039983f2c4a50d99 + name: conda + version: 24.5.0 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py311h6eed73b_0.conda + sha256: e05096548a77220aada303e523b1d66a8831ed3eb0b77b60730cbd73cbae722c + md5: 3dda44c16d02ca2382edd31aad178475 depends: - - python >=3.7 + - 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.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - 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 + constrains: + - conda-content-trust >=0.1.1 + - conda-build >=24.3 + - conda-env >=2.6 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/colorama?source=conda-forge-mapping - size: 25170 - timestamp: 1666700778190 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1253380 + timestamp: 1715632330296 - kind: conda name: conda - version: 24.3.0 + version: 24.5.0 build: py312h2e8e312_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-24.3.0-py312h2e8e312_0.conda - sha256: 9bc70a7291e559762d4049711510772d2e4fda03f142afdaeebedaaa28a0f47e - md5: c7e9ec64cd01c83a8b4418ab1699aeb8 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py312h2e8e312_0.conda + sha256: e951e3ac0af41d3ddc0c7f8c484fea53012abd004f2c2a047ea6c5bde43f0ce1 + md5: 9258e36baf7c2a1d28133619e2168d8d depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3563,6 +5528,7 @@ packages: - 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 @@ -3579,22 +5545,22 @@ packages: - zstandard >=0.19.0 constrains: - conda-content-trust >=0.1.1 - - conda-build >=24.3 - conda-env >=2.6 + - conda-build >=24.3 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda - size: 1198612 - timestamp: 1711446530411 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1221670 + timestamp: 1715632571390 - kind: conda name: conda - version: 24.3.0 + version: 24.5.0 build: py312h7900ff3_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.3.0-py312h7900ff3_0.conda - sha256: 64eee1c0f97bed16908ab6c4f3cd6c0bebb67fda5bba580888e513a1ef22f3f9 - md5: 3b7d3f731e02380fb68b654b037ae727 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py312h7900ff3_0.conda + sha256: 913254d93807667543aca625da828909529ba7b3c1a8c700b201ae1723df7996 + md5: bda145e97ad4eb12bf5b7aed7d3d5d45 depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3602,6 +5568,7 @@ packages: - 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 @@ -3617,23 +5584,23 @@ packages: - truststore >=0.8.0 - zstandard >=0.19.0 constrains: - - conda-build >=24.3 - conda-env >=2.6 + - conda-build >=24.3 - conda-content-trust >=0.1.1 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda - size: 1195527 - timestamp: 1711445992988 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1218237 + timestamp: 1715632066355 - kind: conda name: conda - version: 24.3.0 + version: 24.5.0 build: py312h81bd7bf_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.3.0-py312h81bd7bf_0.conda - sha256: d8fb7f84ea5d946c5acf50d9687a1d9f112116ef6a06c0bb645320fd4e7db6e7 - md5: 537dbde4ec642c05ea421a89ae16366a + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py312h81bd7bf_0.conda + sha256: 5edfa3d5fd81c692be0f31421cc6e9e5cd9d7146635612f61f4f3321a33595b5 + md5: f408bfea2eaf2ec3238422fe13bab78d depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3641,6 +5608,7 @@ packages: - 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 @@ -3657,23 +5625,23 @@ packages: - truststore >=0.8.0 - zstandard >=0.19.0 constrains: + - conda-env >=2.6 - conda-content-trust >=0.1.1 - conda-build >=24.3 - - conda-env >=2.6 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda - size: 1197572 - timestamp: 1711446174975 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1218583 + timestamp: 1715632234659 - kind: conda name: conda - version: 24.3.0 + version: 24.5.0 build: py312hb401068_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.3.0-py312hb401068_0.conda - sha256: 0c9a15ec877a9374deef2fd020fe644869a98aa5fec75b852a99d20a0198c624 - md5: 549c60ea2ec52e45a48b12349d982115 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py312hb401068_0.conda + sha256: 7ce4f091260639e76d6417bf5461bed2ef96de15db19ab7b2f2f4d6e829029aa + md5: 7b2fe4530602e681a1fb9ae9c4de5cea depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3681,6 +5649,7 @@ packages: - 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 @@ -3696,23 +5665,23 @@ packages: - truststore >=0.8.0 - zstandard >=0.19.0 constrains: - - conda-content-trust >=0.1.1 - - conda-env >=2.6 - conda-build >=24.3 + - conda-env >=2.6 + - conda-content-trust >=0.1.1 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda - size: 1196619 - timestamp: 1711446125221 + - pkg:pypi/conda?source=conda-forge-mapping + size: 1220021 + timestamp: 1715632192869 - kind: conda name: conda version: 24.5.0 - build: py310h2ec42d9_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py310h2ec42d9_0.conda - sha256: e89eedb77c3497859099da976f0dd55402b6e0ad5c70d7f948854b95c823193b - md5: 6baab58c25f0f2a7c169a8845055d7ff + build: py38h10201cd_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py38h10201cd_0.conda + sha256: 4771a010138f44e8edc8329c3fec103be21a84d99a3e1e9963164d9223837a7b + md5: 1b9eed9b97d9ae214cd2aa1c2be8a3ca depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3727,32 +5696,32 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 - 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 constrains: - - conda-build >=24.3 - conda-content-trust >=0.1.1 - conda-env >=2.6 + - conda-build >=24.3 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 962712 - timestamp: 1715632195160 + size: 951903 + timestamp: 1715632193220 - kind: conda name: conda version: 24.5.0 - build: py310h5588dad_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py310h5588dad_0.conda - sha256: 6cb5b9299054cdcb4b1cc918ae1a95d9d2d2ca5b03290d8780df48edd6ab6138 - md5: 8ead0666296fce486409973c1b88b9f7 + build: py38h50d1736_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py38h50d1736_0.conda + sha256: 0d32ccbfd647ab82dbba1fd2f0e95526cf42d133b44f31f016ad02543138837b + md5: a599a1fbc7f2960da41257ea4b4f8300 depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3767,32 +5736,31 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - 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 constrains: - - conda-content-trust >=0.1.1 - conda-build >=24.3 - conda-env >=2.6 + - conda-content-trust >=0.1.1 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 964009 - timestamp: 1715632477327 + size: 951891 + timestamp: 1715632119309 - kind: conda name: conda version: 24.5.0 - build: py310hbe9552e_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py310hbe9552e_0.conda - sha256: cad372428468745735aa8a84d1be087eb6cb2f1446ee2c9f8269449e0eaeb303 - md5: e3ad564582eb2cc1965dffa45e73e4b5 + build: py38h578d9bd_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py38h578d9bd_0.conda + sha256: 4b5c430dec6d3d9f411c80c0aadddb9b1f874f6bac9a7dda15df9fd6df4ffc66 + md5: 650c326e644762e6054f8b841ac37706 depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3807,14 +5775,12 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.10,<3.11.0a0 - - python >=3.10,<3.11.0a0 *_cpython - - python_abi 3.10.* *_cp310 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - 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 constrains: - conda-env >=2.6 @@ -3823,17 +5789,17 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda?source=conda-forge-mapping - size: 964178 - timestamp: 1715632173559 + - pkg:pypi/conda?source=conda-forge-mapping + size: 950067 + timestamp: 1715632080249 - kind: conda name: conda version: 24.5.0 - build: py310hff52083_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py310hff52083_0.conda - sha256: b0afa92a62d55221e85d6bb50f863bead42a98dbd17c62a59ff4fb259da12171 - md5: 56952b606f4d08952be78eff94874be8 + build: py38haa244fe_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py38haa244fe_0.conda + sha256: fe131b633b474cfbeea74b2d24ecb6ec742a12f6f87c71597cee7273ffdab42d + md5: 5bdd3092d7b169964d381a13516e8da3 depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3848,32 +5814,31 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - 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 constrains: + - conda-build >=24.3 - conda-content-trust >=0.1.1 - conda-env >=2.6 - - conda-build >=24.3 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 961219 - timestamp: 1715632034279 + size: 953625 + timestamp: 1715632477280 - kind: conda name: conda version: 24.5.0 - build: py311h1ea47a8_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py311h1ea47a8_0.conda - sha256: a4dd2b472c87c481047692001b905b41b99722aaabae58ae9b402cdaa5231b14 - md5: 41b87d65919231345852d9ca9b445322 + build: py39h2804cbe_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py39h2804cbe_0.conda + sha256: dc3d4d2a0db855e5b1ca2550da52bb18dbf92e54c8f66ef00ac60381613a6e7d + md5: a709dd1b0f6a5428144ea150d59e9314 depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3888,32 +5853,32 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 - 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 constrains: - - conda-content-trust >=0.1.1 - - conda-env >=2.6 - conda-build >=24.3 + - conda-env >=2.6 + - conda-content-trust >=0.1.1 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 1252525 - timestamp: 1715632579685 + size: 952545 + timestamp: 1715632308065 - kind: conda name: conda version: 24.5.0 - build: py311h267d04e_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py311h267d04e_0.conda - sha256: 6b2dae699444d58aaf6ace2a4414b82b2c87c6a0c7db4e4761c3e4336b2008eb - md5: 4bc0033520bc8fe4ad85bd8e03c76da6 + build: py39h6e9494a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py39h6e9494a_0.conda + sha256: 686aee1544cafaf7965ada5a02cb476d1339ea58bbdca671f3e5cbaa8bf7a309 + md5: 592b7dba1f68277b51d1d479988fbbc3 depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3928,33 +5893,31 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - 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 constrains: - - conda-env >=2.6 - conda-content-trust >=0.1.1 - conda-build >=24.3 + - conda-env >=2.6 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 1253439 - timestamp: 1715632225406 + size: 952576 + timestamp: 1715632058486 - kind: conda name: conda version: 24.5.0 - build: py311h38be061_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py311h38be061_0.conda - sha256: c9f46253e502e74ed3933cf72081d74aa10c98e781132325617307d05b3030b3 - md5: 8408fb2adcce818ff95758d1826dad2b + build: py39hcbf5309_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py39hcbf5309_0.conda + sha256: 98ff78e62005350f249d9363bede248b736fc5ee4ca6ebfa6f790eeed3b646d9 + md5: 979c6c914f2e2f645c755c9c08ecb96f depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -3969,32 +5932,31 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - 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 constrains: + - conda-env >=2.6 - conda-build >=24.3 - conda-content-trust >=0.1.1 - - conda-env >=2.6 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 1247034 - timestamp: 1715632061486 + size: 954399 + timestamp: 1715632577599 - kind: conda name: conda version: 24.5.0 - build: py311h6eed73b_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py311h6eed73b_0.conda - sha256: e05096548a77220aada303e523b1d66a8831ed3eb0b77b60730cbd73cbae722c - md5: 3dda44c16d02ca2382edd31aad178475 + build: py39hf3d152e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py39hf3d152e_0.conda + sha256: 06ded49b0a2823adcbc9eba1a71b9e3fe895427a5b125331f0c72bb8e31fb6ea + md5: b7c5ddab3bfe7d57266f8abd384fa43f depends: - archspec >=0.2.3 - boltons >=23.0.0 @@ -4009,201 +5971,371 @@ packages: - platformdirs >=3.10.0 - pluggy >=1.0.0 - pycosat >=0.6.3 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - 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 constrains: - - conda-content-trust >=0.1.1 - conda-build >=24.3 - conda-env >=2.6 + - conda-content-trust >=0.1.1 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/conda?source=conda-forge-mapping - size: 1253380 - timestamp: 1715632330296 + size: 949270 + timestamp: 1715632068659 - kind: conda - name: conda - version: 24.5.0 - build: py312h2e8e312_0 + name: conda-build + version: 24.3.0 + build: py312h2e8e312_1 + build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-24.5.0-py312h2e8e312_0.conda - sha256: e951e3ac0af41d3ddc0c7f8c484fea53012abd004f2c2a047ea6c5bde43f0ce1 - md5: 9258e36baf7c2a1d28133619e2168d8d + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.3.0-py312h2e8e312_1.conda + sha256: b80a891776eb2ae8e5e6dffdbbd3ad1ce8aefce14494ab887954d57c143db8d8 + md5: afb6d1913fc831174a95c5b45434f8d5 depends: - - 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 + - beautifulsoup4 + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - m2-patch >=2.6 + - menuinst >=2 + - packaging + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 752036 + timestamp: 1711609193364 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312h7900ff3_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.3.0-py312h7900ff3_1.conda + sha256: fd1418aded3d3242d2f4e5f6ee11702658c69528443d66b4a00bbd093aeeff11 + md5: bfc15ed17aaea7bf1150dba5787c16d6 + depends: + - beautifulsoup4 + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 752571 + timestamp: 1711608769290 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312h81bd7bf_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.3.0-py312h81bd7bf_1.conda + sha256: dc86c2edbd0f55b40ae81d5350b7ba11685675587d3a3ecae9472b682e5fdbfe + md5: 75828728b3438c9c3826c2f98fbb361f + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 751442 + timestamp: 1711608951046 +- kind: conda + name: conda-build + version: 24.3.0 + build: py312hb401068_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.3.0-py312hb401068_1.conda + sha256: c67916e4d0c1f4e45a7bdcf19d4195f82ece52a61797b478f0a1db8abf618c3b + md5: 32351ccbf6f35735a0c89980b2b29c13 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.5.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock + - jinja2 + - jsonschema >=4.19 + - menuinst >=2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.12,<3.13.0a0 + - python-libarchive-c + - python_abi 3.12.* *_cp312 + - pytz + - pyyaml + - requests + - ripgrep + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/conda-build + size: 753262 + timestamp: 1711608860452 +- kind: conda + name: conda-build + version: 24.5.1 + build: py310h2ec42d9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py310h2ec42d9_0.conda + sha256: 9e33cfbd802a0192fb9e0f0b185d1852e7318e2cf29be7d27181808419f8d021 + md5: d907f46a0699d3001bbb8d7f0e948ee6 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock - frozendict >=2.4.2 - - jsonpatch >=1.32 + - jinja2 + - jsonschema >=4.19 - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - 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 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm constrains: - - conda-content-trust >=0.1.1 - - conda-env >=2.6 - - conda-build >=24.3 + - conda-verify >=3.1.0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda?source=conda-forge-mapping - size: 1221670 - timestamp: 1715632571390 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 584798 + timestamp: 1716998460670 - kind: conda - name: conda - version: 24.5.0 - build: py312h7900ff3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.5.0-py312h7900ff3_0.conda - sha256: 913254d93807667543aca625da828909529ba7b3c1a8c700b201ae1723df7996 - md5: bda145e97ad4eb12bf5b7aed7d3d5d45 + name: conda-build + version: 24.5.1 + build: py310h5588dad_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py310h5588dad_0.conda + sha256: cf738334b0d1858451f0688cd7701207146ba8fcb160da968e1cbfef5a11be8a + md5: 18dd7cddadf37c8fa9e398cc5487de83 depends: - - 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 + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock - frozendict >=2.4.2 - - jsonpatch >=1.32 + - jinja2 + - jsonschema >=4.19 + - m2-patch >=2.6 - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - 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 + - packaging + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm constrains: - - conda-env >=2.6 - - conda-build >=24.3 - - conda-content-trust >=0.1.1 + - conda-verify >=3.1.0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda?source=conda-forge-mapping - size: 1218237 - timestamp: 1715632066355 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 586609 + timestamp: 1716998712254 - kind: conda - name: conda - version: 24.5.0 - build: py312h81bd7bf_0 + name: conda-build + version: 24.5.1 + build: py310hbe9552e_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.5.0-py312h81bd7bf_0.conda - sha256: 5edfa3d5fd81c692be0f31421cc6e9e5cd9d7146635612f61f4f3321a33595b5 - md5: f408bfea2eaf2ec3238422fe13bab78d + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py310hbe9552e_0.conda + sha256: 05b07153fbb0eba4aa8af16fc32263883b83bb0ea10a32896950a7e04aed3c49 + md5: 9aa1ba38e7ff66f3aa66246526da6def depends: - - 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 + - beautifulsoup4 + - cctools + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock - frozendict >=2.4.2 - - jsonpatch >=1.32 + - jinja2 + - jsonschema >=4.19 - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - 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 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python >=3.10,<3.11.0a0 *_cpython + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm constrains: - - conda-env >=2.6 - - conda-content-trust >=0.1.1 - - conda-build >=24.3 + - conda-verify >=3.1.0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda?source=conda-forge-mapping - size: 1218583 - timestamp: 1715632234659 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 583812 + timestamp: 1716998460842 - kind: conda - name: conda - version: 24.5.0 - build: py312hb401068_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.5.0-py312hb401068_0.conda - sha256: 7ce4f091260639e76d6417bf5461bed2ef96de15db19ab7b2f2f4d6e829029aa - md5: 7b2fe4530602e681a1fb9ae9c4de5cea + name: conda-build + version: 24.5.1 + build: py310hff52083_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py310hff52083_0.conda + sha256: 28d2d8022c2a67b7aeaf19b9109bab1dc3239b9e2d17fca5125d955968a13631 + md5: 846dfdc56aba49bb69b42a6d67c119e5 depends: - - 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 + - beautifulsoup4 + - chardet + - conda >=23.7.0 + - conda-index >=0.4.0 + - conda-package-handling >=1.3 + - filelock - frozendict >=2.4.2 - - jsonpatch >=1.32 + - jinja2 + - jsonschema >=4.19 - menuinst >=2 - - packaging >=23.0 - - platformdirs >=3.10.0 - - pluggy >=1.0.0 - - pycosat >=0.6.3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - 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 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief + - python >=3.10,<3.11.0a0 + - python-libarchive-c + - python_abi 3.10.* *_cp310 + - pytz + - pyyaml + - requests + - ripgrep + - tomli + - tqdm constrains: - - conda-build >=24.3 - - conda-env >=2.6 - - conda-content-trust >=0.1.1 + - conda-verify >=3.1.0 license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda?source=conda-forge-mapping - size: 1220021 - timestamp: 1715632192869 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 586161 + timestamp: 1716998266304 - kind: conda name: conda-build - version: 24.3.0 - build: py312h2e8e312_1 - build_number: 1 + version: 24.5.1 + build: py311h1ea47a8_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.3.0-py312h2e8e312_1.conda - sha256: b80a891776eb2ae8e5e6dffdbbd3ad1ce8aefce14494ab887954d57c143db8d8 - md5: afb6d1913fc831174a95c5b45434f8d5 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py311h1ea47a8_0.conda + sha256: dea7625d9a8447674fe989a7453f5767f9a39daa6d97bac0449ab3199640c1f6 + md5: bd191bc609e29b52a3c343453f774fcb depends: - beautifulsoup4 - chardet - - conda >=23.5.0 + - conda >=23.7.0 - conda-index >=0.4.0 - conda-package-handling >=1.3 - filelock + - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - m2-patch >=2.6 @@ -4212,9 +6344,9 @@ packages: - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 + - python >=3.11,<3.12.0a0 - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.11.* *_cp311 - pytz - pyyaml - requests @@ -4225,37 +6357,38 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-build - size: 752036 - timestamp: 1711609193364 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 788000 + timestamp: 1716998782774 - kind: conda name: conda-build - version: 24.3.0 - build: py312h7900ff3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.3.0-py312h7900ff3_1.conda - sha256: fd1418aded3d3242d2f4e5f6ee11702658c69528443d66b4a00bbd093aeeff11 - md5: bfc15ed17aaea7bf1150dba5787c16d6 + version: 24.5.1 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py311h267d04e_0.conda + sha256: 4c308c675de080d650d5cb95de97b937e6232db8541de97b23e4bfadbb830aa6 + md5: 3ead88952bd88835ab0a51922c629afb depends: - beautifulsoup4 + - cctools - chardet - - conda >=23.5.0 + - conda >=23.7.0 - conda-index >=0.4.0 - conda-package-handling >=1.3 - filelock + - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - menuinst >=2 - packaging - patch >=2.6 - - patchelf - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.11.* *_cp311 - pytz - pyyaml - requests @@ -4266,38 +6399,37 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-build - size: 752571 - timestamp: 1711608769290 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 786361 + timestamp: 1716998378724 - kind: conda name: conda-build - version: 24.3.0 - build: py312h81bd7bf_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.3.0-py312h81bd7bf_1.conda - sha256: dc86c2edbd0f55b40ae81d5350b7ba11685675587d3a3ecae9472b682e5fdbfe - md5: 75828728b3438c9c3826c2f98fbb361f + version: 24.5.1 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py311h38be061_0.conda + sha256: a8ec9f9daa18d171df1f5cfac60fcad78219a27f11eb1e6d9d87d504da6fea54 + md5: 2934a4e4d7f4c6de558f071208144e31 depends: - beautifulsoup4 - - cctools - chardet - - conda >=23.5.0 + - conda >=23.7.0 - conda-index >=0.4.0 - conda-package-handling >=1.3 - filelock + - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - menuinst >=2 - packaging - patch >=2.6 + - patchelf - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython + - python >=3.11,<3.12.0a0 - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.11.* *_cp311 - pytz - pyyaml - requests @@ -4308,26 +6440,26 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-build - size: 751442 - timestamp: 1711608951046 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 785538 + timestamp: 1716998254972 - kind: conda name: conda-build - version: 24.3.0 - build: py312hb401068_1 - build_number: 1 + version: 24.5.1 + build: py311h6eed73b_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.3.0-py312hb401068_1.conda - sha256: c67916e4d0c1f4e45a7bdcf19d4195f82ece52a61797b478f0a1db8abf618c3b - md5: 32351ccbf6f35735a0c89980b2b29c13 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py311h6eed73b_0.conda + sha256: 4afa2bf5823687ce3801c06f4594a9d4cdf3fcb060b8a2f394bfde5f21c9c583 + md5: f79705cbd8e906cc1406d73e41998f46 depends: - beautifulsoup4 - cctools - chardet - - conda >=23.5.0 + - conda >=23.7.0 - conda-index >=0.4.0 - conda-package-handling >=1.3 - filelock + - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - menuinst >=2 @@ -4336,9 +6468,9 @@ packages: - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 + - python >=3.11,<3.12.0a0 - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.11.* *_cp311 - pytz - pyyaml - requests @@ -4349,20 +6481,19 @@ packages: license: BSD-3-Clause license_family: BSD purls: - - pkg:pypi/conda-build - size: 753262 - timestamp: 1711608860452 + - pkg:pypi/conda-build?source=conda-forge-mapping + size: 784548 + timestamp: 1716998370813 - kind: conda name: conda-build version: 24.5.1 - build: py310h2ec42d9_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py310h2ec42d9_0.conda - sha256: 9e33cfbd802a0192fb9e0f0b185d1852e7318e2cf29be7d27181808419f8d021 - md5: d907f46a0699d3001bbb8d7f0e948ee6 + build: py312h2e8e312_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py312h2e8e312_0.conda + sha256: 83f1394960d15e3bd1f086c4e3cee206bc0930d00538e04fac8f71df6592c4f1 + md5: 0637b43e6130a46e57ca95dfbd9d9238 depends: - beautifulsoup4 - - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4371,20 +6502,19 @@ packages: - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 + - m2-patch >=2.6 - menuinst >=2 - packaging - - patch >=2.6 - pkginfo - psutil - py-lief - - python >=3.10,<3.11.0a0 + - python >=3.12,<3.13.0a0 - python-libarchive-c - - python_abi 3.10.* *_cp310 + - python_abi 3.12.* *_cp312 - pytz - pyyaml - requests - ripgrep - - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4392,16 +6522,16 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 584798 - timestamp: 1716998460670 + size: 763825 + timestamp: 1716999060784 - kind: conda name: conda-build version: 24.5.1 - build: py310h5588dad_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py310h5588dad_0.conda - sha256: cf738334b0d1858451f0688cd7701207146ba8fcb160da968e1cbfef5a11be8a - md5: 18dd7cddadf37c8fa9e398cc5487de83 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py312h7900ff3_0.conda + sha256: 158f6dc538927b8d75872ded3b22b7aee4273b750f99830418360ffb1221304e + md5: 0dfa4873fb3b80995ecdff241e12919b depends: - beautifulsoup4 - chardet @@ -4412,20 +6542,20 @@ packages: - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - - m2-patch >=2.6 - menuinst >=2 - packaging + - patch >=2.6 + - patchelf - pkginfo - psutil - py-lief - - python >=3.10,<3.11.0a0 + - python >=3.12,<3.13.0a0 - python-libarchive-c - - python_abi 3.10.* *_cp310 + - python_abi 3.12.* *_cp312 - pytz - pyyaml - requests - ripgrep - - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4433,16 +6563,16 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 586609 - timestamp: 1716998712254 + size: 762358 + timestamp: 1716998279604 - kind: conda name: conda-build version: 24.5.1 - build: py310hbe9552e_0 + build: py312h81bd7bf_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py310hbe9552e_0.conda - sha256: 05b07153fbb0eba4aa8af16fc32263883b83bb0ea10a32896950a7e04aed3c49 - md5: 9aa1ba38e7ff66f3aa66246526da6def + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py312h81bd7bf_0.conda + sha256: 723a4917eaf6b3e8ea99fcc454074abfe39599016ad49dc5ef9be8f0ff5008d1 + md5: 54e53ea300abc7fefb4c0869ee0ea646 depends: - beautifulsoup4 - cctools @@ -4460,15 +6590,14 @@ packages: - pkginfo - psutil - py-lief - - python >=3.10,<3.11.0a0 - - python >=3.10,<3.11.0a0 *_cpython + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python-libarchive-c - - python_abi 3.10.* *_cp310 + - python_abi 3.12.* *_cp312 - pytz - pyyaml - requests - ripgrep - - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4476,18 +6605,19 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 583812 - timestamp: 1716998460842 + size: 761410 + timestamp: 1716998477433 - kind: conda name: conda-build version: 24.5.1 - build: py310hff52083_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py310hff52083_0.conda - sha256: 28d2d8022c2a67b7aeaf19b9109bab1dc3239b9e2d17fca5125d955968a13631 - md5: 846dfdc56aba49bb69b42a6d67c119e5 + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py312hb401068_0.conda + sha256: 22bc14073467452e58f86dda1f09735e673a419f7e9449ceae7a7822b18a7073 + md5: 03a269f3d5d02fda51a3c40f40db4c75 depends: - beautifulsoup4 + - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4499,18 +6629,16 @@ packages: - menuinst >=2 - packaging - patch >=2.6 - - patchelf - pkginfo - psutil - py-lief - - python >=3.10,<3.11.0a0 + - python >=3.12,<3.13.0a0 - python-libarchive-c - - python_abi 3.10.* *_cp310 + - python_abi 3.12.* *_cp312 - pytz - pyyaml - requests - ripgrep - - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4518,18 +6646,19 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 586161 - timestamp: 1716998266304 + size: 763728 + timestamp: 1716998286413 - kind: conda name: conda-build version: 24.5.1 - build: py311h1ea47a8_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py311h1ea47a8_0.conda - sha256: dea7625d9a8447674fe989a7453f5767f9a39daa6d97bac0449ab3199640c1f6 - md5: bd191bc609e29b52a3c343453f774fcb + build: py38h10201cd_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py38h10201cd_0.conda + sha256: c9246976d133fc4db71e5dc20a60280677a6f6c351f8cbc5e71fc6e153ab8c0f + md5: 4b0b0fe6788c94f133c40c83edd62f65 depends: - beautifulsoup4 + - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4538,19 +6667,21 @@ packages: - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - - m2-patch >=2.6 - menuinst >=2 - packaging + - patch >=2.6 - pkginfo - psutil - py-lief - - python >=3.11,<3.12.0a0 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython - python-libarchive-c - - python_abi 3.11.* *_cp311 + - python_abi 3.8.* *_cp38 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4558,16 +6689,16 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 788000 - timestamp: 1716998782774 + size: 578980 + timestamp: 1716998447382 - kind: conda name: conda-build version: 24.5.1 - build: py311h267d04e_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py311h267d04e_0.conda - sha256: 4c308c675de080d650d5cb95de97b937e6232db8541de97b23e4bfadbb830aa6 - md5: 3ead88952bd88835ab0a51922c629afb + build: py38h50d1736_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py38h50d1736_0.conda + sha256: 8e1a03ba9c4f4c6ddc4a5e9de97d3856a537b4a4b3680a235ee679de05464a31 + md5: 2bf163bcd9f899f1ee6649e19f8bb681 depends: - beautifulsoup4 - cctools @@ -4585,14 +6716,14 @@ packages: - pkginfo - psutil - py-lief - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython + - python >=3.8,<3.9.0a0 - python-libarchive-c - - python_abi 3.11.* *_cp311 + - python_abi 3.8.* *_cp38 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4600,16 +6731,16 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 786361 - timestamp: 1716998378724 + size: 579338 + timestamp: 1716998326863 - kind: conda name: conda-build version: 24.5.1 - build: py311h38be061_0 + build: py38h578d9bd_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py311h38be061_0.conda - sha256: a8ec9f9daa18d171df1f5cfac60fcad78219a27f11eb1e6d9d87d504da6fea54 - md5: 2934a4e4d7f4c6de558f071208144e31 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py38h578d9bd_0.conda + sha256: 624dd02d4a71449aaac3139a4a0f988b7d83698d03efed08a471b887cdd689bf + md5: 4aa1690e945fa712569ee2d15e633d8b depends: - beautifulsoup4 - chardet @@ -4627,13 +6758,14 @@ packages: - pkginfo - psutil - py-lief - - python >=3.11,<3.12.0a0 + - python >=3.8,<3.9.0a0 - python-libarchive-c - - python_abi 3.11.* *_cp311 + - python_abi 3.8.* *_cp38 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4641,19 +6773,18 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 785538 - timestamp: 1716998254972 + size: 577530 + timestamp: 1716998270208 - kind: conda name: conda-build version: 24.5.1 - build: py311h6eed73b_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py311h6eed73b_0.conda - sha256: 4afa2bf5823687ce3801c06f4594a9d4cdf3fcb060b8a2f394bfde5f21c9c583 - md5: f79705cbd8e906cc1406d73e41998f46 + build: py38haa244fe_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py38haa244fe_0.conda + sha256: b8768ab0b323c5ca7a15d28b1a2056728c55861093bb02f150e19ae024e26a90 + md5: 6d6b62c86ffdcdec3d943db936d7adf5 depends: - beautifulsoup4 - - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4662,19 +6793,20 @@ packages: - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 + - m2-patch >=2.6 - menuinst >=2 - packaging - - patch >=2.6 - pkginfo - psutil - py-lief - - python >=3.11,<3.12.0a0 + - python >=3.8,<3.9.0a0 - python-libarchive-c - - python_abi 3.11.* *_cp311 + - python_abi 3.8.* *_cp38 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4682,18 +6814,19 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 784548 - timestamp: 1716998370813 + size: 580244 + timestamp: 1716998922889 - kind: conda name: conda-build version: 24.5.1 - build: py312h2e8e312_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py312h2e8e312_0.conda - sha256: 83f1394960d15e3bd1f086c4e3cee206bc0930d00538e04fac8f71df6592c4f1 - md5: 0637b43e6130a46e57ca95dfbd9d9238 + build: py39h2804cbe_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py39h2804cbe_0.conda + sha256: c0c05460a38b156cadf352d38eb962b90e19a163bbbc18498574aec7c91a6ed1 + md5: abafbe8748fdca1a1520537165acf9f5 depends: - beautifulsoup4 + - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4702,19 +6835,21 @@ packages: - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 - - m2-patch >=2.6 - menuinst >=2 - packaging + - patch >=2.6 - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.9.* *_cp39 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4722,18 +6857,19 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 763825 - timestamp: 1716999060784 + size: 580690 + timestamp: 1716998396478 - kind: conda name: conda-build version: 24.5.1 - build: py312h7900ff3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py312h7900ff3_0.conda - sha256: 158f6dc538927b8d75872ded3b22b7aee4273b750f99830418360ffb1221304e - md5: 0dfa4873fb3b80995ecdff241e12919b + build: py39h6e9494a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py39h6e9494a_0.conda + sha256: dd06bbb9bf6e4f351c4b9802f3597b89b38113a90a2652d9adc605c3a6793518 + md5: 0451ef80627e9732720c1eae4492e1be depends: - beautifulsoup4 + - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4745,17 +6881,17 @@ packages: - menuinst >=2 - packaging - patch >=2.6 - - patchelf - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 + - python >=3.9,<3.10.0a0 - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.9.* *_cp39 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4763,19 +6899,18 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 762358 - timestamp: 1716998279604 -- kind: conda - name: conda-build - version: 24.5.1 - build: py312h81bd7bf_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-24.5.1-py312h81bd7bf_0.conda - sha256: 723a4917eaf6b3e8ea99fcc454074abfe39599016ad49dc5ef9be8f0ff5008d1 - md5: 54e53ea300abc7fefb4c0869ee0ea646 + size: 579767 + timestamp: 1716998283652 +- kind: conda + name: conda-build + version: 24.5.1 + build: py39hcbf5309_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-24.5.1-py39hcbf5309_0.conda + sha256: c70e2b008e0c43387295a810f7558c81933274f4017946a0d27702f33145df4d + md5: 9ae236d388e6a5bc94f20cfbca98160c depends: - beautifulsoup4 - - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4784,20 +6919,20 @@ packages: - frozendict >=2.4.2 - jinja2 - jsonschema >=4.19 + - m2-patch >=2.6 - menuinst >=2 - packaging - - patch >=2.6 - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython + - python >=3.9,<3.10.0a0 - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.9.* *_cp39 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4805,19 +6940,18 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 761410 - timestamp: 1716998477433 + size: 580866 + timestamp: 1716998893610 - kind: conda name: conda-build version: 24.5.1 - build: py312hb401068_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-24.5.1-py312hb401068_0.conda - sha256: 22bc14073467452e58f86dda1f09735e673a419f7e9449ceae7a7822b18a7073 - md5: 03a269f3d5d02fda51a3c40f40db4c75 + build: py39hf3d152e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-24.5.1-py39hf3d152e_0.conda + sha256: 39789f48f443d31b2e8ca55cc0f0c6bb87608c4842b553650db949af36552859 + md5: 719b53fecaef2a16368622df88a21127 depends: - beautifulsoup4 - - cctools - chardet - conda >=23.7.0 - conda-index >=0.4.0 @@ -4829,16 +6963,18 @@ packages: - menuinst >=2 - packaging - patch >=2.6 + - patchelf - pkginfo - psutil - py-lief - - python >=3.12,<3.13.0a0 + - python >=3.9,<3.10.0a0 - python-libarchive-c - - python_abi 3.12.* *_cp312 + - python_abi 3.9.* *_cp39 - pytz - pyyaml - requests - ripgrep + - tomli - tqdm constrains: - conda-verify >=3.1.0 @@ -4846,8 +6982,8 @@ packages: license_family: BSD purls: - pkg:pypi/conda-build?source=conda-forge-mapping - size: 763728 - timestamp: 1716998286413 + size: 576489 + timestamp: 1716998248182 - kind: conda name: conda-index version: 0.4.0 @@ -5357,6 +7493,180 @@ packages: - pkg:pypi/cryptography?source=conda-forge-mapping size: 1981326 timestamp: 1717559617177 +- kind: conda + name: cryptography + version: 42.0.8 + build: py38h09e535d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py38h09e535d_0.conda + sha256: 6772dff53e24dd7274b5c8f425c56c6bcb75db621032734606b6e7e9ff282843 + md5: d4da00cbd16a45ece25498bf0363561b + depends: + - __osx >=10.13 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - __osx >=10.12 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1244243 + timestamp: 1717559804481 +- kind: conda + name: cryptography + version: 42.0.8 + build: py38h1407eca_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py38h1407eca_0.conda + sha256: a7cf9e60fff773ca964aae9bbaffdc95ad86457323c589234de5c0ec2c13f873 + md5: 9de4d914e94111e2c6d4e77914a37c79 + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.3.1,<4.0a0 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1941185 + timestamp: 1717559641561 +- kind: conda + name: cryptography + version: 42.0.8 + build: py38h4d1d993_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py38h4d1d993_0.conda + sha256: 90a5875e42ba31b3df208a92b23423c5170b539f0dc569084f4216f4e2efa4ff + md5: 8573edcfe286540e86d9d26b77c14747 + depends: + - __osx >=11.0 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1239338 + timestamp: 1717559829030 +- kind: conda + name: cryptography + version: 42.0.8 + build: py38hb304008_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py38hb304008_0.conda + sha256: bd373e0d0f96b077a3a76f4ac0e5a12411490c74b408e7d8028c3b70f4b33130 + md5: 627e283888f0cf8589e0f9ec5c7e131c + depends: + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1110438 + timestamp: 1717560289517 +- kind: conda + name: cryptography + version: 42.0.8 + build: py39h721c90e_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.8-py39h721c90e_0.conda + sha256: a999aea5db7fb72dfd76ab539a820246f9d72e788a293c3b287ed4797fe5ffa1 + md5: 8f554ff096ee70e60c243ea4c15507ec + depends: + - __osx >=10.13 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + constrains: + - __osx >=10.12 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1245766 + timestamp: 1717559899463 +- kind: conda + name: cryptography + version: 42.0.8 + build: py39h7597e9d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.8-py39h7597e9d_0.conda + sha256: a5b9b294a0ad439a50fa219160439e50f44706c490802d7de7ab55df56b54137 + md5: ad11e4ebb594ca68a12e8192ad09fc56 + depends: + - __osx >=11.0 + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1238834 + timestamp: 1717559829268 +- kind: conda + name: cryptography + version: 42.0.8 + build: py39h8169da8_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.8-py39h8169da8_0.conda + sha256: e65b50bd20513ba3c6ca651411520a23e5c1337fbfa8cb63d7d434581f8a50a4 + md5: 6a935ebe14a65942544775f36ddb0bd5 + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.3.1,<4.0a0 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1944481 + timestamp: 1717559694841 +- kind: conda + name: cryptography + version: 42.0.8 + build: py39hae46aff_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.8-py39hae46aff_0.conda + sha256: f10efb7a3dd562f68499dac647bf7cd0662e3fd4493bf64475562afca1ef9c6c + md5: 81a465bb9946778c6d22d119b84aa826 + depends: + - cffi >=1.12 + - openssl >=3.3.1,<4.0a0 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + purls: + - pkg:pypi/cryptography?source=conda-forge-mapping + size: 1108895 + timestamp: 1717560640714 - kind: conda name: deprecated version: 1.2.14 @@ -5657,28 +7967,178 @@ packages: sha256: f007ad8b1fdfd66a678a279d38d3c76fcf562d90f829219636b5ef08ee23849a md5: 7af090045ead110a2a57beef6908572e depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31298 + timestamp: 1715093144571 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312h4389bb4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py312h4389bb4_0.conda + sha256: 7c8ab0334f8ae1b7e612cdf5de8831cd6fbbdaeb8d0bff3e5c63a959ee6af33f + md5: 12c19e260a2deb952c3321371623abd3 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 30622 + timestamp: 1715093097869 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312h7e5086c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py312h7e5086c_0.conda + sha256: 59a24e2c4af865022dbc80ae5508a5ff2d62c9859923eec8d7d5fa4f73a1dd69 + md5: f37df12758d31904693c9087e4841ac9 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 30702 + timestamp: 1715092944764 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312h9a8786e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py312h9a8786e_0.conda + sha256: dff551db65137898c1434c4949532a91b997de6a1e77f255216da2c404b04f2f + md5: ff14ec1103a0817d45e7cf012742ce60 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 30644 + timestamp: 1715092863166 +- kind: conda + name: frozendict + version: 2.4.4 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py312hbd25219_0.conda + sha256: 735d87670e8f2344d08fa9da819f7be6793fcd4b31b0e868fd4cf0a907d2a5e4 + md5: bd7e1462b89760bb59c5d7e636f6d9d2 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 31061 + timestamp: 1715092971006 +- kind: conda + name: frozendict + version: 2.4.4 + build: py38h3237794_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py38h3237794_0.conda + sha256: f71f6f62ba95c41edd3fde441efa62138d3723dd7b284ebec1e50aa9b306aa66 + md5: 679f77a7a4528d530aac87abf1ce6064 + depends: + - __osx >=11.0 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 45438 + timestamp: 1715093023447 +- kind: conda + name: frozendict + version: 2.4.4 + build: py38h4cb3324_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py38h4cb3324_0.conda + sha256: 3566d0637ccf706e600045d2925fc9933c8a8f1cc29a43898ba9fc54fb6b1128 + md5: 9a161dde87ba70124144d3740c3c6e78 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 46880 + timestamp: 1715093568143 +- kind: conda + name: frozendict + version: 2.4.4 + build: py38hc718529_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py38hc718529_0.conda + sha256: 3aec18fbacfd4cc680d24e9ce66c1a9da77f0997758f4996bb3df0ebf9b6dbe5 + md5: 9f5a75cae1e93d604604392afbc22421 + depends: + - __osx >=10.13 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: LGPL-3.0-only + license_family: LGPL + purls: + - pkg:pypi/frozendict?source=conda-forge-mapping + size: 45081 + timestamp: 1715092998925 +- kind: conda + name: frozendict + version: 2.4.4 + build: py38hfb59056_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py38hfb59056_0.conda + sha256: 968d129ee594ee841ec92e50c2afefc2418958b82927f13dc39a4bd963a40c83 + md5: 31d713ed9ff4b71ad2a7b443c4683ccd + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 license: LGPL-3.0-only license_family: LGPL purls: - pkg:pypi/frozendict?source=conda-forge-mapping - size: 31298 - timestamp: 1715093144571 + size: 48898 + timestamp: 1715092865694 - kind: conda name: frozendict version: 2.4.4 - build: py312h4389bb4_0 + build: py39ha55e580_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py312h4389bb4_0.conda - sha256: 7c8ab0334f8ae1b7e612cdf5de8831cd6fbbdaeb8d0bff3e5c63a959ee6af33f - md5: 12c19e260a2deb952c3321371623abd3 + url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.4-py39ha55e580_0.conda + sha256: 543e6713de9f79f6ee5a2330fbe29c552ac7343612ffbf36d5845141301208a5 + md5: d0b888c5b3b0d7d845de6988dfb1617e depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 @@ -5686,63 +8146,63 @@ packages: license_family: LGPL purls: - pkg:pypi/frozendict?source=conda-forge-mapping - size: 30622 - timestamp: 1715093097869 + size: 46839 + timestamp: 1715093417166 - kind: conda name: frozendict version: 2.4.4 - build: py312h7e5086c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py312h7e5086c_0.conda - sha256: 59a24e2c4af865022dbc80ae5508a5ff2d62c9859923eec8d7d5fa4f73a1dd69 - md5: f37df12758d31904693c9087e4841ac9 + build: py39hd3abc70_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py39hd3abc70_0.conda + sha256: 05ff6834158db6499b038098e82b7e6fc73289c14444ce6ab1d738b892bcb60d + md5: 381570baedf838bfbf81e20fc53966bc depends: - - __osx >=11.0 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: LGPL-3.0-only license_family: LGPL purls: - pkg:pypi/frozendict?source=conda-forge-mapping - size: 30702 - timestamp: 1715092944764 + size: 49393 + timestamp: 1715092915140 - kind: conda name: frozendict version: 2.4.4 - build: py312h9a8786e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.4-py312h9a8786e_0.conda - sha256: dff551db65137898c1434c4949532a91b997de6a1e77f255216da2c404b04f2f - md5: ff14ec1103a0817d45e7cf012742ce60 + build: py39hded5825_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py39hded5825_0.conda + sha256: 8bb99aa87dd7e9112c41edb2a1b505282d8a7c592b8f5211c601b2a627bf89c5 + md5: 63267d17b2ee0bf1634f0c503f3338cb depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - __osx >=10.13 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: LGPL-3.0-only license_family: LGPL purls: - pkg:pypi/frozendict?source=conda-forge-mapping - size: 30644 - timestamp: 1715092863166 + size: 45489 + timestamp: 1715092885659 - kind: conda name: frozendict version: 2.4.4 - build: py312hbd25219_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.4-py312hbd25219_0.conda - sha256: 735d87670e8f2344d08fa9da819f7be6793fcd4b31b0e868fd4cf0a907d2a5e4 - md5: bd7e1462b89760bb59c5d7e636f6d9d2 + build: py39hfea33bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.4-py39hfea33bf_0.conda + sha256: 69b0c8bd68cae23f24631c10f5f0e910fa70422d0a9a88ce92bff566faf21e1c + md5: 731cd8ad0500eb44b6cf5d456f77dff4 depends: - - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - __osx >=11.0 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 license: LGPL-3.0-only license_family: LGPL purls: - pkg:pypi/frozendict?source=conda-forge-mapping - size: 31061 - timestamp: 1715092971006 + size: 45454 + timestamp: 1715093044722 - kind: conda name: h2 version: 4.1.0 @@ -6325,6 +8785,144 @@ packages: - pkg:pypi/jsonpointer?source=conda-forge-mapping size: 17704 timestamp: 1718283533709 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py38h10201cd_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py38h10201cd_0.conda + sha256: 53efde5fdd02debf3dd2a6cb168f00f0860b2b1a63e3e7aed2d1602b530f72c7 + md5: 0d49467654ebf56e1b0634211338489c + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 16409 + timestamp: 1718283580898 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py38h50d1736_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py38h50d1736_0.conda + sha256: c6735f29bd293e4fb5bac93c9f32ddb624a5d08395126f9a5043c001a34d3687 + md5: 8429abfb14ccf0f973007dadbe929718 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 16057 + timestamp: 1718283510611 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py38h578d9bd_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py38h578d9bd_0.conda + sha256: 9baad51bb9b480e4aeaf339fdf2b81bfa760644976016abc4b32631646ddbcb8 + md5: 35f7346da8d31ccef2c97db678b2c390 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 15824 + timestamp: 1718283459770 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py38haa244fe_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py38haa244fe_0.conda + sha256: b85ef836cabc3e117e5619360ce9fc6c3e43e0c9001267804e5648e8161f1176 + md5: ce0e5c52020f888c05a9a27370daa175 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 41047 + timestamp: 1718283925887 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py39h2804cbe_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py39h2804cbe_0.conda + sha256: ee2d89399760fd3a43b3c0e70fe9c70b5a9b7cdfed09a1c91950d6e76fca26d6 + md5: 287302d3a5ab360629683ab48a4f7819 + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 16359 + timestamp: 1718283611126 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py39h6e9494a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py39h6e9494a_0.conda + sha256: e59a78592dc0b2ff8953caa07e7c63a2e2110ce1355c4b1342fb3dc0b6b27541 + md5: eac5f3ae01e943e1ae3435f058c65497 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 15953 + timestamp: 1718283530924 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py39hcbf5309_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py39hcbf5309_0.conda + sha256: 54e63cb2a09d1d8c7b2d1e837af68318a870acab4bd50c9a7f0db18a5817a7c3 + md5: f4dd89255b38142aa8b6681253a3f46f + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 40882 + timestamp: 1718283938867 +- kind: conda + name: jsonpointer + version: 3.0.0 + build: py39hf3d152e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py39hf3d152e_0.conda + sha256: 27d2489604163bca74cb47b6c29c4e27670a085d0ea2f4995123c02171b9ac54 + md5: 00ff509ce4edc43e9f9181c7f6996ac2 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/jsonpointer?source=conda-forge-mapping + size: 15804 + timestamp: 1718283522417 - kind: conda name: jsonschema version: 4.21.1 @@ -7947,20 +10545,212 @@ packages: md5: ab74748421323fd59d9fda55e45b979e depends: - fmt >=10.2.1,<11.0a0 - - libgcc-ng >=12 - - libmamba 1.5.8 had39da4_0 - - libstdcxx-ng >=12 + - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 306497 + timestamp: 1711395345839 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py38h32fc51e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py38h32fc51e_0.conda + sha256: d803d146e57a1d45b8228860264c21d66dc152f14212735900380d793e4f92fd + md5: 4188c23e8ac510e7fae416e40bf8b8e3 + depends: + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 h90c426b_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 253202 + timestamp: 1711396232107 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py38h5cd715c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py38h5cd715c_0.conda + sha256: 87630513e6e56b399fea809c6bb3f5335ed36c5a30f60e814e76afdfeab033b9 + md5: e4eac285f6a2b26a976e342c149645cd + depends: + - fmt >=10.2.1,<11.0a0 + - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 310065 + timestamp: 1711395186535 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py38h9d63bcc_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py38h9d63bcc_0.conda + sha256: d8e3d7a9a69ce66e870bebf91eb395b608fb5397adf84723bce29e8fc18e3d13 + md5: 370bd112834fc60ffbbb81c5281b7a23 + depends: + - fmt >=10.2.1,<11.0a0 + - libmamba 1.5.8 h3f09ed1_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 713860 + timestamp: 1711396335678 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py38hd8e0602_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py38hd8e0602_0.conda + sha256: d3f7477b8776429d4dde4840dcaf590a6b0880ae13ae1c5d82b193781e4bb06f + md5: 06fc224be51b2f44360543f3ce2f336f + depends: + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 ha449628_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 266274 + timestamp: 1711395691651 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py39h10defb6_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.5.8-py39h10defb6_0.conda + sha256: aba1bfb78640217158ece4e61fbfa4bc1f2ac9e1f39fa8ef886895497311c588 + md5: 87da190271f88c03298697bc17d21f13 + depends: + - fmt >=10.2.1,<11.0a0 + - libgcc-ng >=12 + - libmamba 1.5.8 had39da4_0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 310379 + timestamp: 1711395265050 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py39h2690a07_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.5.8-py39h2690a07_0.conda + sha256: d550879f04ea2bfac73e5e0a4b80f3704fa68807b9555c445a36111a3ff977c5 + md5: a391c06fa2d00178c20b2d5eec2b4e34 + depends: + - fmt >=10.2.1,<11.0a0 + - libmamba 1.5.8 h3f09ed1_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 436416 + timestamp: 1711395994550 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py39ha004b9d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.5.8-py39ha004b9d_0.conda + sha256: 5a15475185dfcccadc469bfff53d5870e19502a1ec1d58caa2155d1ac1404c50 + md5: 36b7c5fc700993c89ceba9da428ac0af + depends: + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 h90c426b_0 + - openssl >=3.2.1,<4.0a0 + - pybind11-abi 4 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/libmambapy?source=conda-forge-mapping + size: 253522 + timestamp: 1711395929562 +- kind: conda + name: libmambapy + version: 1.5.8 + build: py39hb0188b1_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.5.8-py39hb0188b1_0.conda + sha256: af34d2fe3591556e91dc3df0d3345206999b708266652edb379faf1727397b8a + md5: 5fc46997881b07dfb8fe7d6f13827c8a + depends: + - fmt >=10.2.1,<11.0a0 + - libcxx >=16 + - libmamba 1.5.8 ha449628_0 - openssl >=3.2.1,<4.0a0 - pybind11-abi 4 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - yaml-cpp >=0.8.0,<0.9.0a0 license: BSD-3-Clause license_family: BSD purls: - pkg:pypi/libmambapy?source=conda-forge-mapping - size: 306497 - timestamp: 1711395345839 + size: 266144 + timestamp: 1711396283894 - kind: conda name: libnghttp2 version: 1.58.0 @@ -9346,6 +12136,168 @@ packages: - pkg:pypi/markupsafe?source=conda-forge-mapping size: 29060 timestamp: 1706900374745 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py38h01eb140_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py38h01eb140_0.conda + sha256: 384a193d11c89463533e6fc5d94a6c67c16c598b32747a8f86f9ad227f0aed17 + md5: aeeb09febb02542e020c3ba7084ead01 + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 24274 + timestamp: 1706900087252 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py38h336bac9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py38h336bac9_0.conda + sha256: f1b1b405c5246c499d66658e754e920529866826b247111cd481e15d0571f702 + md5: 76e1802508a91e5970f42f6558f5064e + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 23719 + timestamp: 1706900313162 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py38h91455d4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py38h91455d4_0.conda + sha256: a0753407d33dbeebf3ee3118cc4bd3559af81e3de497b15f01a52b2702314c73 + md5: 0b3eb104f5c37ba2e7ec675b6a8ea453 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26598 + timestamp: 1706900643364 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py38hae2e43d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py38hae2e43d_0.conda + sha256: ef6eaa455d99e40df64131d23f4b52bc3601f95a48f255cb9917f2d4eb760a36 + md5: 5107dae4aa6cbcb0cb73718cdd951c29 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 23167 + timestamp: 1706900242727 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py39h17cfd9d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py39h17cfd9d_0.conda + sha256: e18591162cb401bc651a69bd2545a679b69c54405d778d05778f43ba76c6a4dd + md5: 554a0bcb046e1bac7887a92f33b96acc + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 23827 + timestamp: 1706900341193 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py39ha09f3b3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py39ha09f3b3_0.conda + sha256: 2fbc1105e680dd34e44f59c67ad30b5e5fbbed65ce4dfb09dac0df811bc24f73 + md5: db347b50af50d030b73be1d1e457cac2 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 23107 + timestamp: 1706900243497 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py39ha55989b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py39ha55989b_0.conda + sha256: 6318073ed42b6186ef4ac0feba54b9da7aa1c7e59d848bb81ac2ac372730f095 + md5: f8b7e33c8bf98901925817b7f4436c7e + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 26856 + timestamp: 1706900665492 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py39hd1e30aa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py39hd1e30aa_0.conda + sha256: 855d305ceda4751cdd495923104dd34da5a6be45e4fd50a4e80361d9f95bcb38 + md5: 9a9a22eb1f83c44953319ee3b027769f + depends: + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/markupsafe?source=conda-forge-mapping + size: 24314 + timestamp: 1706900151453 - kind: conda name: menuinst version: 2.0.2 @@ -9618,6 +12570,142 @@ packages: - pkg:pypi/menuinst?source=conda-forge-mapping size: 163525 timestamp: 1718088475305 +- kind: conda + name: menuinst + version: 2.1.1 + build: py38h10201cd_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py38h10201cd_0.conda + sha256: f042637b776256866cc0163a62b9dec480b1f59408a8da9e9c0a4e106b2ca256 + md5: a34bf9011bb257866bde9c6eef7388e8 + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137428 + timestamp: 1718088475289 +- kind: conda + name: menuinst + version: 2.1.1 + build: py38h2698bfa_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py38h2698bfa_0.conda + sha256: 5809578f5a75e8ee42ed5abd94d888c9ca62d248ed81e2af9ad7ca8fb9b16657 + md5: b43a48f0d7db3f12d025e839ba08df28 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 104473 + timestamp: 1718089038177 +- kind: conda + name: menuinst + version: 2.1.1 + build: py38h50d1736_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py38h50d1736_0.conda + sha256: a45ecd4b9dbb6182706031b3614a40f6df6e922fd3ab5b02a90957ae0f6e2a26 + md5: 80664921523ecec8870b75989b373c68 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137396 + timestamp: 1718088438200 +- kind: conda + name: menuinst + version: 2.1.1 + build: py38h578d9bd_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py38h578d9bd_0.conda + sha256: 8c35689af0ec594ca27a8ab2533222db2edf0dd5722c58bab13191cdb130f26f + md5: a489f1f0e20a76ede4bad8f4e3b46c82 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137133 + timestamp: 1718088427448 +- kind: conda + name: menuinst + version: 2.1.1 + build: py39h2804cbe_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.1.1-py39h2804cbe_0.conda + sha256: fa9a194527304e240e6778e99c6fc574a9bffaf01c7c1ebb9f53d9559b151ce4 + md5: 723528a4fb7abe3b31a63b2507d91997 + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137623 + timestamp: 1718088557044 +- kind: conda + name: menuinst + version: 2.1.1 + build: py39h6e9494a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.1.1-py39h6e9494a_0.conda + sha256: 5902f2d1da4bc9b4649a6082a6f4ccd83e5d8811fa96bb23a662caca18cd91e5 + md5: 361f902c728ad00e8f63af186057a3f5 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137279 + timestamp: 1718088552122 +- kind: conda + name: menuinst + version: 2.1.1 + build: py39ha51f57c_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.1-py39ha51f57c_0.conda + sha256: 4825f9e76c9d9d1d5e93b6a2bc15222baef156c5ce0fb54397b3752b59d3e29c + md5: 88cf2adffa918e4f72a054607db444db + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 104575 + timestamp: 1718088734475 +- kind: conda + name: menuinst + version: 2.1.1 + build: py39hf3d152e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.1.1-py39hf3d152e_0.conda + sha256: 9d74650f6033a8fb9b0be967751694c0abd37bc447c113b18fef25d09f956bd1 + md5: 3094b31d3320565eb750285dab3435c0 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause AND MIT + purls: + - pkg:pypi/menuinst?source=conda-forge-mapping + size: 137423 + timestamp: 1718088372560 - kind: conda name: more-itertools version: 10.2.0 @@ -10583,40 +13671,190 @@ packages: - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 501703 - timestamp: 1719274787455 + size: 501703 + timestamp: 1719274787455 +- kind: conda + name: psutil + version: 6.0.0 + build: py312h9a8786e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda + sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d + md5: 1aeffa86c55972ca4e88ac843eccedf2 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 493452 + timestamp: 1719274737481 +- kind: conda + name: psutil + version: 6.0.0 + build: py312hbd25219_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda + sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b + md5: db086d71e9be086313110a670b6d549f + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 499307 + timestamp: 1719274858092 +- kind: conda + name: psutil + version: 6.0.0 + build: py38h3237794_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py38h3237794_0.conda + sha256: 76e30573405195dbcedff472f7706e09765b2d49112209e7f81dfb8436e73235 + md5: f14d02d525fd9f62172c717979e2d849 + depends: + - __osx >=11.0 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 374902 + timestamp: 1719274926745 +- kind: conda + name: psutil + version: 6.0.0 + build: py38h4cb3324_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py38h4cb3324_0.conda + sha256: b624f4be2d0e7b956835ea8822cb9502c861819e5402fe5d02f27d8b4289e392 + md5: 00cc8acaf6d7eec51d009a0662a0cc03 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 383894 + timestamp: 1719275206477 +- kind: conda + name: psutil + version: 6.0.0 + build: py38hc718529_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py38hc718529_0.conda + sha256: b6006e8d25ae4c8d43ca07f5ff15b2ca51bfceb92168b8f73e376d30078bb944 + md5: fc486245b64b4e03c5968915c277aabf + depends: + - __osx >=10.13 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 372234 + timestamp: 1719274817130 +- kind: conda + name: psutil + version: 6.0.0 + build: py38hfb59056_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py38hfb59056_0.conda + sha256: d6d5f1ac1dc3bbddb50c093f89a425edae695754ad1ab1bc78bf720be11315ea + md5: 14d8661ec0011b79081f8429c716f46f + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 366341 + timestamp: 1719274737975 +- kind: conda + name: psutil + version: 6.0.0 + build: py39ha55e580_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-6.0.0-py39ha55e580_0.conda + sha256: 843c2087092a80bf479f3b5b80021b759303525cf4fea0dabf7c2b538e989155 + md5: 41ed0d6d84590e40a0096ae3a458f5eb + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 384430 + timestamp: 1719275211074 - kind: conda name: psutil version: 6.0.0 - build: py312h9a8786e_0 + build: py39hd3abc70_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py312h9a8786e_0.conda - sha256: d629363515df957507411fd24db2a0635ac893e5d60b2ee2f656b53be9c70b1d - md5: 1aeffa86c55972ca4e88ac843eccedf2 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.0.0-py39hd3abc70_0.conda + sha256: e9ad591dbebfcf601a43a83419804ba4f4be7f9dfa17c6dbc46d34d780e2b417 + md5: 984987a2ef8c931691ad0d7fbb8ef3ca depends: - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: BSD-3-Clause license_family: BSD - size: 493452 - timestamp: 1719274737481 + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 365349 + timestamp: 1719274672326 - kind: conda name: psutil version: 6.0.0 - build: py312hbd25219_0 + build: py39hded5825_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py312hbd25219_0.conda - sha256: 06e949079497cf8e1c9e253b77be709ec0c11816656814e1ad857ac5cbbea65b - md5: db086d71e9be086313110a670b6d549f + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-6.0.0-py39hded5825_0.conda + sha256: b06ca89c89a1641e4f701ddd73663ee2ead8dd3801f127d4601f5edcdc7dedcc + md5: 0a0569b2f0fc8ba3681b6d7081ba20cb depends: - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: BSD-3-Clause license_family: BSD - size: 499307 - timestamp: 1719274858092 + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 373080 + timestamp: 1719274833478 +- kind: conda + name: psutil + version: 6.0.0 + build: py39hfea33bf_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.0.0-py39hfea33bf_0.conda + sha256: b47cb751dbfef443faef221ecbd0daaaba17a1a860fba7894df830b01663213a + md5: 470e9208708e46bbc87f26fa3cd65952 + depends: + - __osx >=11.0 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil?source=conda-forge-mapping + size: 374380 + timestamp: 1719274795304 - kind: conda name: py-lief version: 0.14.1 @@ -10878,6 +14116,180 @@ packages: - pkg:pypi/lief?source=conda-forge-mapping size: 758297 timestamp: 1711563364357 +- kind: conda + name: py-lief + version: 0.14.1 + build: py38h2698bfa_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py38h2698bfa_1.conda + sha256: 61d0b3d0110fa4325cd4e02b831f00d70d06bf2b2a4a362146a7de01d9c93953 + md5: 37ecc39b8b6d9891d5756c4d3bf69dbe + depends: + - liblief 0.14.1 he0c23c2_1 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc >=14.3,<15 + - vc14_runtime >=14.29.30139 + - vc14_runtime >=14.38.33130 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 561296 + timestamp: 1711565625840 +- kind: conda + name: py-lief + version: 0.14.1 + build: py38h2e4a203_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py38h2e4a203_1.conda + sha256: af8dd8681855cd008156ca3c707152e1f8b77a7e69047089fe50fad2598ce373 + md5: 1cb113938d2411ee55db0ecdf91ea266 + depends: + - __osx >=11.0 + - libcxx >=16 + - liblief 0.14.1 h3f3aa29_1 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 537375 + timestamp: 1711566499512 +- kind: conda + name: py-lief + version: 0.14.1 + build: py38h854fd01_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py38h854fd01_1.conda + sha256: 26c7e928af203d472220325cd4173c37ccec51180add164be9efe4af650d0d29 + md5: 1ec17c2c4efed0c8893a1e8bd6766472 + depends: + - libgcc-ng >=12 + - liblief 0.14.1 hac33072_1 + - libstdcxx-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 758815 + timestamp: 1711563802410 +- kind: conda + name: py-lief + version: 0.14.1 + build: py38hc7224bb_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py38hc7224bb_1.conda + sha256: de0cd352f7aa7a1b5b913bc5fc49a89f6694619b618a25ea69a8549bb25745ab + md5: eb61ad3467998d5c067c7426880ae109 + depends: + - __osx >=10.13 + - libcxx >=16 + - liblief 0.14.1 ha0df490_1 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 534321 + timestamp: 1711566866924 +- kind: conda + name: py-lief + version: 0.14.1 + build: py39h5a42fc7_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.14.1-py39h5a42fc7_1.conda + sha256: b98eb288ce8e70de4d07c3b51ac9e82febd15930191fd5bf1a36df5637c96848 + md5: 0248b9519f34c956903d5c78e19dd9e7 + depends: + - __osx >=10.13 + - libcxx >=16 + - liblief 0.14.1 ha0df490_1 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 535170 + timestamp: 1711565542461 +- kind: conda + name: py-lief + version: 0.14.1 + build: py39h84cc369_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.14.1-py39h84cc369_1.conda + sha256: 4a8370c71f58fd4bbdec3172f4f4df32f52fad41427619c1b802e32bd33ec55d + md5: a9e5df4df7ec9a65170723912c55fee4 + depends: + - libgcc-ng >=12 + - liblief 0.14.1 hac33072_1 + - libstdcxx-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 758921 + timestamp: 1711563583853 +- kind: conda + name: py-lief + version: 0.14.1 + build: py39ha51f57c_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.14.1-py39ha51f57c_1.conda + sha256: d893ccb485866c36a7b82816a06d260279415f4f94eedb7392097a65c7733065 + md5: 27066c544a708e116dbfe745dfb3b470 + depends: + - liblief 0.14.1 he0c23c2_1 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc >=14.3,<15 + - vc14_runtime >=14.29.30139 + - vc14_runtime >=14.38.33130 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 561714 + timestamp: 1711564023850 +- kind: conda + name: py-lief + version: 0.14.1 + build: py39he706d61_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.14.1-py39he706d61_1.conda + sha256: b34f354ba08a55e948b45c69b758d989539f5217cf0baf3f6f1b2493639c0edd + md5: 4850aa01050ce70ed4f4fe416fc9ea7e + depends: + - __osx >=11.0 + - libcxx >=16 + - liblief 0.14.1 h3f3aa29_1 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/lief?source=conda-forge-mapping + size: 538073 + timestamp: 1711565552645 - kind: conda name: pybind11-abi version: '4' @@ -11055,63 +14467,209 @@ packages: license_family: MIT purls: - pkg:pypi/pycosat?source=conda-forge-mapping - size: 86424 - timestamp: 1696356256622 + size: 86424 + timestamp: 1696356256622 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312h104f124_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h104f124_0.conda + sha256: b37afbc13d4216dde3a613ded3a1688adae3d74ab98ea55cc6914b39d2417d55 + md5: 106c2d37708757f4c23ff1f487bf5a3f + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 89221 + timestamp: 1696356180943 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h98912ed_0.conda + sha256: b973d39eb9fd9625fe97e2fbb4b6f758ea47aa288f5f8c7769e3f36a3acbb5da + md5: 8f1c372e7b843167be885dc8229931c1 + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 88549 + timestamp: 1696355931150 +- kind: conda + name: pycosat + version: 0.6.6 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312he70551f_0.conda + sha256: 680e91170b5b29c39a486995c55bb29fc84dea86a8cc3c2180e30c4d4556d3ec + md5: 619f8a019eaeffff3c9507fd2f5769c2 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 77670 + timestamp: 1696356641443 +- kind: conda + name: pycosat + version: 0.6.6 + build: py38h01eb140_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py38h01eb140_0.conda + sha256: a39b5fa80e762aedd4d8153e810be4ca1acab3fc0ba449fd5dd4bf0c6cc8b7a1 + md5: 62e285b1705fd8a2b94320be2bb36ff5 + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 84981 + timestamp: 1696355948222 +- kind: conda + name: pycosat + version: 0.6.6 + build: py38h91455d4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py38h91455d4_0.conda + sha256: ac8bed8dd9ee5bcd9026d9c2e247ac57748ad06cb41efe02aa0daf4027e7ec0f + md5: 83705436b04d4a8f58cd93bd6286dec7 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 74928 + timestamp: 1696356452575 +- kind: conda + name: pycosat + version: 0.6.6 + build: py38hb192615_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py38hb192615_0.conda + sha256: e5b6fe2c292648a7b39b7ca7bbdb952bf10a9afa9b38070f16d5f90a5a889497 + md5: acf155fffcef16fbc36320a802b11cec + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 82054 + timestamp: 1696356192325 +- kind: conda + name: pycosat + version: 0.6.6 + build: py38hcafd530_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py38hcafd530_0.conda + sha256: 615bfad97bc9df5d9c379c69b5de87eadc189587c3810498b03c8c4947f88bfe + md5: 9134dd0bc3514cbac3716f5deddb5832 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 85766 + timestamp: 1696356145242 +- kind: conda + name: pycosat + version: 0.6.6 + build: py39h0f82c59_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py39h0f82c59_0.conda + sha256: 1a3b96842d245e96d066895a514b949fa36503c510a9091df1409fedccd2a32f + md5: ca4587b544f98c43efca40b31d480394 + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pycosat?source=conda-forge-mapping + size: 82448 + timestamp: 1696356243677 - kind: conda name: pycosat version: 0.6.6 - build: py312h104f124_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h104f124_0.conda - sha256: b37afbc13d4216dde3a613ded3a1688adae3d74ab98ea55cc6914b39d2417d55 - md5: 106c2d37708757f4c23ff1f487bf5a3f + build: py39ha55989b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py39ha55989b_0.conda + sha256: 8689e7541a29b1fa398c7844124f80ab05ead76236f263ba1c6c1239f63db783 + md5: 5fce86beb9a4a6093e887f5631a38f18 depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT purls: - pkg:pypi/pycosat?source=conda-forge-mapping - size: 89221 - timestamp: 1696356180943 + size: 75102 + timestamp: 1696356513591 - kind: conda name: pycosat version: 0.6.6 - build: py312h98912ed_0 + build: py39hd1e30aa_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h98912ed_0.conda - sha256: b973d39eb9fd9625fe97e2fbb4b6f758ea47aa288f5f8c7769e3f36a3acbb5da - md5: 8f1c372e7b843167be885dc8229931c1 + url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py39hd1e30aa_0.conda + sha256: 7f000431dc121a4d77206942dcccf967e9e7dd34652df45f161f1d32162a510d + md5: 804fa1f70cdd1029bd9d156f1ab1dd54 depends: - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT purls: - pkg:pypi/pycosat?source=conda-forge-mapping - size: 88549 - timestamp: 1696355931150 + size: 85037 + timestamp: 1696355927221 - kind: conda name: pycosat version: 0.6.6 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312he70551f_0.conda - sha256: 680e91170b5b29c39a486995c55bb29fc84dea86a8cc3c2180e30c4d4556d3ec - md5: 619f8a019eaeffff3c9507fd2f5769c2 + build: py39hdc70f33_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py39hdc70f33_0.conda + sha256: 4ab587af79d8d26d97697d3f1fad9bc156c6d0825b363b70a141092978fd7df7 + md5: 1f27021e450faf62f183312714255d35 depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT purls: - pkg:pypi/pycosat?source=conda-forge-mapping - size: 77670 - timestamp: 1696356641443 + size: 84884 + timestamp: 1696356295107 - kind: conda name: pycparser version: '2.22' @@ -11221,103 +14779,324 @@ packages: - kind: conda name: pynacl version: 1.5.0 - build: py310h635b8f1_3 + build: py310h635b8f1_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py310h635b8f1_3.conda + sha256: 66fdf626f076e9c80425fddc49a0b3dd4fd5cc0a7eb06ac721c506fc918eecfa + md5: 4053b2bc00767190bcc7ced4f17eca8d + depends: + - cffi >=1.4.1 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1278753 + timestamp: 1695545360964 +- kind: conda + name: pynacl + version: 1.5.0 + build: py310h6729b98_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py310h6729b98_3.conda + sha256: 16f5759f2b240f98189f4de1ca51a87ba3c352de74418747ec94f46c6ea1e8b3 + md5: 9835aba2d857e8dc24315e4d411c6217 + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.10,<3.11.0a0 + - python_abi 3.10.* *_cp310 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1135703 + timestamp: 1695545167585 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311h2725bcf_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py311h2725bcf_3.conda + sha256: be82b01eff22a7347d30ddd7c65a6b5e12110b4ed6773d1b20688d39e3c65be3 + md5: f0ac41d1fc525643445fafb5943927bb + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1155846 + timestamp: 1695545339481 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311h459d7ec_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py311h459d7ec_3.conda + sha256: 8547795cd19394c953e5f5bd55bbcfd598b96c4bee7fbc48eaf977b42740a3a7 + md5: 41431936fe7624294df31197ae699c44 + depends: + - cffi >=1.4.1 + - libgcc-ng >=12 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1154575 + timestamp: 1695545029063 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311hd53affc_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py311hd53affc_3.conda + sha256: 5c226512cb702b0d19a760eb2ad7b38716592a782300cd27e880043987c741ac + md5: f281b8aabfefac05a58db6a623be8e5c + depends: + - cffi >=1.4.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1244245 + timestamp: 1695545315762 +- kind: conda + name: pynacl + version: 1.5.0 + build: py311heffc1b2_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py311heffc1b2_3.conda + sha256: c2f19b094b9a16dbf1f8dd135a394a36eccfbbce31d4ee91c21bf6bd40623ea5 + md5: f7d0400f93600ab4c7e84abe4503deae + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1150034 + timestamp: 1695545290049 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312h02f2b3b_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda + sha256: 733bba1d4b25f17a5e30f99dc4355b6cd9345cf0c9a1241c205323d8e0ec42af + md5: 5648ef2d224601e852af9b4e8eb30d3a + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.12.0rc3,<3.13.0a0 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1148303 + timestamp: 1695545270114 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312h104f124_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda + sha256: 9e7f8189c8cb3e0e4318b59ca42ff97f7803a732c69b1fb192e7c2af3f4234c3 + md5: eee6d82c708669043c7d581afd45a6db + depends: + - cffi >=1.4.1 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1165861 + timestamp: 1695545180164 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312h98912ed_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda + sha256: f9077093cbd75165abd2f538ad2924ec4cf3a5928604e9ff6ffcf2b224de2163 + md5: 66244781991f08a163ff80a91359dbf5 + depends: + - cffi >=1.4.1 + - libgcc-ng >=12 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - six + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1147941 + timestamp: 1695545046950 +- kind: conda + name: pynacl + version: 1.5.0 + build: py312hc560f31_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda + sha256: 7b525604cbf5af4858b970e92aa37fbe9bbc83739c099dc734210f48ceb24fe2 + md5: c0c5ade781f5914663ba090a86088af0 + depends: + - cffi >=1.4.1 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + purls: + - pkg:pypi/pynacl?source=conda-forge-mapping + size: 1247874 + timestamp: 1695545310942 +- kind: conda + name: pynacl + version: 1.5.0 + build: py38h01eb140_3 build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py310h635b8f1_3.conda - sha256: 66fdf626f076e9c80425fddc49a0b3dd4fd5cc0a7eb06ac721c506fc918eecfa - md5: 4053b2bc00767190bcc7ced4f17eca8d + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py38h01eb140_3.conda + sha256: d014e8dd518cb2d34d7dbf91be11f35393eedba488b0af53b7e8707f2af2af62 + md5: 3378edcc1c266409b1135b955e050c2a depends: - cffi >=1.4.1 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 + - libgcc-ng >=12 + - libsodium >=1.0.18,<1.0.19.0a0 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - six - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1278753 - timestamp: 1695545360964 + size: 1173098 + timestamp: 1695544998215 - kind: conda name: pynacl version: 1.5.0 - build: py310h6729b98_3 + build: py38hb192615_3 build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py310h6729b98_3.conda - sha256: 16f5759f2b240f98189f4de1ca51a87ba3c352de74418747ec94f46c6ea1e8b3 - md5: 9835aba2d857e8dc24315e4d411c6217 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py38hb192615_3.conda + sha256: 4c79b90456dd09bac5ca9ac415b041c3d2f75ccf8b03af92e5162162269b6960 + md5: ebc024271f67e2d45ebd23ebc51fafaa depends: - cffi >=1.4.1 - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.10,<3.11.0a0 - - python_abi 3.10.* *_cp310 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 - six license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1135703 - timestamp: 1695545167585 + size: 1140315 + timestamp: 1695545465845 - kind: conda name: pynacl version: 1.5.0 - build: py311h2725bcf_3 + build: py38hbc1c497_3 build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py311h2725bcf_3.conda - sha256: be82b01eff22a7347d30ddd7c65a6b5e12110b4ed6773d1b20688d39e3c65be3 - md5: f0ac41d1fc525643445fafb5943927bb + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py38hbc1c497_3.conda + sha256: bbdd49e0bb6ccde76686e1a8286a73e475be9858e2c1135e5be9cc3b0014dfc1 + md5: e3b119e945eca06f0803eab8c20446d1 depends: - cffi >=1.4.1 - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - six + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1155846 - timestamp: 1695545339481 + size: 1251201 + timestamp: 1695545434415 - kind: conda name: pynacl version: 1.5.0 - build: py311h459d7ec_3 + build: py38hcafd530_3 build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py311h459d7ec_3.conda - sha256: 8547795cd19394c953e5f5bd55bbcfd598b96c4bee7fbc48eaf977b42740a3a7 - md5: 41431936fe7624294df31197ae699c44 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py38hcafd530_3.conda + sha256: bc3e5c221dbc9a9b1558e6e0cd584eddb410478b2c4562f269ab5b015e3767bd + md5: a411257f621d25810090a2ab3e6a536d depends: - cffi >=1.4.1 - - libgcc-ng >=12 - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - six license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1154575 - timestamp: 1695545029063 + size: 1132088 + timestamp: 1695545243283 - kind: conda name: pynacl version: 1.5.0 - build: py311hd53affc_3 + build: py39h09fa780_3 build_number: 3 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py311hd53affc_3.conda - sha256: 5c226512cb702b0d19a760eb2ad7b38716592a782300cd27e880043987c741ac - md5: f281b8aabfefac05a58db6a623be8e5c + url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py39h09fa780_3.conda + sha256: 0db972044445e8af7d2430dcc7ae44fd698b819af09e57ce927686fc2c26c995 + md5: c13b9e6c401acbe9fb60ee1a487c1490 depends: - cffi >=1.4.1 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - six - ucrt >=10.0.20348.0 - vc >=14.2,<15 @@ -11326,182 +15105,343 @@ packages: license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1244245 - timestamp: 1695545315762 + size: 1272685 + timestamp: 1695545462350 - kind: conda name: pynacl version: 1.5.0 - build: py311heffc1b2_3 + build: py39h0f82c59_3 build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py311heffc1b2_3.conda - sha256: c2f19b094b9a16dbf1f8dd135a394a36eccfbbce31d4ee91c21bf6bd40623ea5 - md5: f7d0400f93600ab4c7e84abe4503deae + url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py39h0f82c59_3.conda + sha256: 5113a7fbf60125c02f7c624f92caee30962e967bb6e57b7cb6fd730ba4f04d2c + md5: 70bfc1adb7677ec2ab7b97789acd0ba6 depends: - cffi >=1.4.1 - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 - six license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1150034 - timestamp: 1695545290049 + size: 1136048 + timestamp: 1695545330600 - kind: conda name: pynacl version: 1.5.0 - build: py312h02f2b3b_3 + build: py39hd1e30aa_3 build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py312h02f2b3b_3.conda - sha256: 733bba1d4b25f17a5e30f99dc4355b6cd9345cf0c9a1241c205323d8e0ec42af - md5: 5648ef2d224601e852af9b4e8eb30d3a + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py39hd1e30aa_3.conda + sha256: 92ab9febd08bf59bd21ca851829b7af075b9b182aecc54e025fcbad620034897 + md5: b7595c0ba694ee1b6cca8d6e76d9f3f8 depends: - cffi >=1.4.1 + - libgcc-ng >=12 - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - six license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1148303 - timestamp: 1695545270114 + size: 1177867 + timestamp: 1695545050571 - kind: conda name: pynacl version: 1.5.0 - build: py312h104f124_3 + build: py39hdc70f33_3 build_number: 3 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py312h104f124_3.conda - sha256: 9e7f8189c8cb3e0e4318b59ca42ff97f7803a732c69b1fb192e7c2af3f4234c3 - md5: eee6d82c708669043c7d581afd45a6db + url: https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py39hdc70f33_3.conda + sha256: 6625a03a7cee82ed46fcfbeb91f1b00c01dfb2e4d9fc90be9a2d353ba4aa8b0d + md5: 2d6bf7df608e80d7ad571be07746afcb depends: - cffi >=1.4.1 - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 - six license: Apache-2.0 license_family: Apache purls: - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1165861 - timestamp: 1695545180164 + size: 1160171 + timestamp: 1695545177440 - kind: conda - name: pynacl - version: 1.5.0 - build: py312h98912ed_3 - build_number: 3 + name: pysocks + version: 1.7.1 + build: pyh0701188_6 + build_number: 6 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 + md5: 56cd9fe388baac0e90c7149cfac95b60 + depends: + - __win + - python >=3.8 + - win_inet_pton + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/pysocks?source=conda-forge-mapping + size: 19348 + timestamp: 1661605138291 +- kind: conda + name: pysocks + version: 1.7.1 + build: pyha2e5f31_6 + build_number: 6 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + md5: 2a7de29fb590ca14b5243c4c812c8025 + depends: + - __unix + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/pysocks?source=conda-forge-mapping + size: 18981 + timestamp: 1661604969727 +- kind: conda + name: pytest + version: 8.2.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda + sha256: 00b7a49b31cf705b59edbd96219d8a67d2b9f51a913aa059fadd921b016965cb + md5: 0f3f49c22c7ef3a1195fa61dad3c43be + depends: + - colorama + - exceptiongroup >=1.0.0rc8 + - iniconfig + - packaging + - pluggy <2.0,>=1.5 + - python >=3.8 + - tomli >=1 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pytest?source=conda-forge-mapping + size: 257061 + timestamp: 1717533913269 +- kind: conda + name: python + version: 3.8.19 + build: h2469fbe_0_cpython + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.8.19-h2469fbe_0_cpython.conda + sha256: 60d1efeb9863df29497865b17ffddc9e155769e9f27fa3d874c0c58879bb4c3f + md5: e6d175e880bd0510eb84662e2a139109 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.8.* *_cp38 + license: Python-2.0 + purls: [] + size: 11719163 + timestamp: 1710939584543 +- kind: conda + name: python + version: 3.8.19 + build: h4de0772_0_cpython + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-3.8.19-h4de0772_0_cpython.conda + sha256: 56f8d32ba1985c65aa9be8c59b790f83dd9bc951b34003c3d14ae7bc700a9eae + md5: 1fea550de7dcc8f898159b8f6920692e + depends: + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.1,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.8.* *_cp38 + license: Python-2.0 + purls: [] + size: 16090293 + timestamp: 1710939361361 +- kind: conda + name: python + version: 3.8.19 + build: h5ba8234_0_cpython + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.8.19-h5ba8234_0_cpython.conda + sha256: db223a5a303a2b25f38684b6594754a8adc95114262366725d3affd3209b2d97 + md5: 3f7e6b93ed3be38d1f4d76fac185dc89 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.8.* *_cp38 + license: Python-2.0 + purls: [] + size: 12325720 + timestamp: 1710939847267 +- kind: conda + name: python + version: 3.8.19 + build: hd12c33a_0_cpython subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py312h98912ed_3.conda - sha256: f9077093cbd75165abd2f538ad2924ec4cf3a5928604e9ff6ffcf2b224de2163 - md5: 66244781991f08a163ff80a91359dbf5 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.8.19-hd12c33a_0_cpython.conda + sha256: 71899083b05d7f489887b029387c0588e353b9c461f74ebf864c0620586108ba + md5: 53aabe8cf596487ec6f1ce319c93a741 depends: - - cffi >=1.4.1 + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libffi >=3.4,<4.0a0 - libgcc-ng >=12 - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - six - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1147941 - timestamp: 1695545046950 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.8.* *_cp38 + license: Python-2.0 + purls: [] + size: 22357104 + timestamp: 1710939954552 +- kind: conda + name: python + version: 3.9.19 + build: h0755675_0_cpython + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.19-h0755675_0_cpython.conda + sha256: b9253ca9ca5427e6da4b1d43353a110e0f2edfab9c951afb4bf01cbae2825b31 + md5: d9ee3647fbd9e8595b8df759b2bbefb8 + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.9.* *_cp39 + license: Python-2.0 + purls: [] + size: 23800555 + timestamp: 1710940120866 - kind: conda - name: pynacl - version: 1.5.0 - build: py312hc560f31_3 - build_number: 3 + name: python + version: 3.9.19 + build: h4de0772_0_cpython subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py312hc560f31_3.conda - sha256: 7b525604cbf5af4858b970e92aa37fbe9bbc83739c099dc734210f48ceb24fe2 - md5: c0c5ade781f5914663ba090a86088af0 - depends: - - cffi >=1.4.1 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - six - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - purls: - - pkg:pypi/pynacl?source=conda-forge-mapping - size: 1247874 - timestamp: 1695545310942 -- kind: conda - name: pysocks - version: 1.7.1 - build: pyh0701188_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 - sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 - md5: 56cd9fe388baac0e90c7149cfac95b60 + url: https://conda.anaconda.org/conda-forge/win-64/python-3.9.19-h4de0772_0_cpython.conda + sha256: 92d847bc9e79a60c1d139aa4ca0385d283b90aa2d7421bb3ffcb5dc0678fd72f + md5: b6999bc275e0e6beae7b1c8ea0be1e85 depends: - - __win - - python >=3.8 - - win_inet_pton - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/pysocks?source=conda-forge-mapping - size: 19348 - timestamp: 1661605138291 + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - openssl >=3.2.1,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.9.* *_cp39 + license: Python-2.0 + purls: [] + size: 16906240 + timestamp: 1710938565297 - kind: conda - name: pysocks - version: 1.7.1 - build: pyha2e5f31_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - md5: 2a7de29fb590ca14b5243c4c812c8025 + name: python + version: 3.9.19 + build: h7a9c478_0_cpython + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.19-h7a9c478_0_cpython.conda + sha256: 58b76be84683bc03112b3ed7e377e99af24844ebf7d7568f6466a2dae7a887fe + md5: 7d53d366acd9dbfb498c69326ccb520a depends: - - __unix - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - purls: - - pkg:pypi/pysocks?source=conda-forge-mapping - size: 18981 - timestamp: 1661604969727 + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.9.* *_cp39 + license: Python-2.0 + purls: [] + size: 12372436 + timestamp: 1710940037648 - kind: conda - name: pytest - version: 8.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.2.2-pyhd8ed1ab_0.conda - sha256: 00b7a49b31cf705b59edbd96219d8a67d2b9f51a913aa059fadd921b016965cb - md5: 0f3f49c22c7ef3a1195fa61dad3c43be + name: python + version: 3.9.19 + build: hd7ebdb9_0_cpython + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.19-hd7ebdb9_0_cpython.conda + sha256: 3b93f7a405f334043758dfa8aaca050429a954a37721a6462ebd20e94ef7c5a0 + md5: 45c4d173b12154f746be3b49b1190634 depends: - - colorama - - exceptiongroup >=1.0.0rc8 - - iniconfig - - packaging - - pluggy <2.0,>=1.5 - - python >=3.8 - - tomli >=1 + - bzip2 >=1.0.8,<2.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ncurses >=6.4.20240210,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 constrains: - - pytest-faulthandler >=2 - license: MIT - license_family: MIT - purls: - - pkg:pypi/pytest?source=conda-forge-mapping - size: 257061 - timestamp: 1717533913269 + - python_abi 3.9.* *_cp39 + license: Python-2.0 + purls: [] + size: 11847835 + timestamp: 1710939779164 - kind: conda name: python version: 3.10.14 @@ -12159,23 +16099,297 @@ packages: size: 70407 timestamp: 1709829093907 - kind: conda - name: python-libarchive-c - version: '5.1' - build: py312hb401068_0 + name: python-libarchive-c + version: '5.1' + build: py312hb401068_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda + sha256: 6c82bf2f807310120630dea4c642b836d7e85804bb5750ee07b8e446386288ed + md5: 8c8948f8210f5508068744c520652feb + depends: + - libarchive + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 69751 + timestamp: 1709828844280 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py38h10201cd_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py38h10201cd_0.conda + sha256: ef134dd7a443b1b7610689c681e7d25494a102c9db3ff2e82438fd6018af066c + md5: ab4af2b34a3360e706f0518ada01a0c3 + depends: + - libarchive + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 63395 + timestamp: 1709829011383 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py38h50d1736_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py38h50d1736_0.conda + sha256: 2589b70777606bfef04368c40fbb9a4de124f2fd5bb5d2f714215d0dddd045d5 + md5: d97ebb014ca622ebc781134e6328bf59 + depends: + - libarchive + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 62709 + timestamp: 1709829061399 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py38h578d9bd_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py38h578d9bd_0.conda + sha256: eb33ad5847813ecc00314ece76fc279446dbb6586d792f675f8a4980b23494fe + md5: a871f484d445d628e0c0dc5f86a518ee + depends: + - libarchive + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 62668 + timestamp: 1709828731858 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py38haa244fe_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py38haa244fe_0.conda + sha256: 7beae6a0002c0867b5c9abec2234ddaf4e1d13cb832367c8960c46b2cdcb5a18 + md5: e24df2304d29bca462f71fff0f7aa71c + depends: + - libarchive + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 41265 + timestamp: 1709828692249 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py39h2804cbe_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-libarchive-c-5.1-py39h2804cbe_0.conda + sha256: 13616f9e4a6d8c80e9cd3c5827070bc84e61ea62e77ed01b75397440efa7bbc0 + md5: 654ed7c76e466ab64bfad1ab0e73c5eb + depends: + - libarchive + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 63244 + timestamp: 1709829030194 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py39h6e9494a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py39h6e9494a_0.conda + sha256: 60dc7da0b4005eee15d105c60883b2845ce5f6457569ab6ddb9e806d66e1f2ec + md5: c56e727fff0aa9bee4f8565bc83cafcd + depends: + - libarchive + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 62867 + timestamp: 1709828936381 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py39hcbf5309_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-libarchive-c-5.1-py39hcbf5309_0.conda + sha256: 9add59b0a54741167cd0d2173b52f4a904ccd8ef18be15ebdaa0d80f86a86cc3 + md5: 20216dba709122dbba4a371030411e52 + depends: + - libarchive + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 41617 + timestamp: 1709828809720 +- kind: conda + name: python-libarchive-c + version: '5.1' + build: py39hf3d152e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-libarchive-c-5.1-py39hf3d152e_0.conda + sha256: 502768a460925f934cca4aa9a6bb5d619f15b93711de10a2fb356313e7bd9e61 + md5: f35c7d18acac2652f4206c852be61fb8 + depends: + - libarchive + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: CC0-1.0 + license_family: CC + purls: + - pkg:pypi/libarchive-c?source=conda-forge-mapping + size: 62871 + timestamp: 1709828701701 +- kind: conda + name: python_abi + version: '3.8' + build: 4_cp38 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.8-4_cp38.conda + sha256: 54276b9259f5c72d160c75c45c50c4e03695da56e6646518801f567fc5979030 + md5: ea6b353536f42246cd130c7fef1285cf + constrains: + - python 3.8.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6371 + timestamp: 1695147367061 +- kind: conda + name: python_abi + version: '3.8' + build: 4_cp38 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.8-4_cp38.conda + sha256: 0dab6ce7b8e48f2308aa9c37e8feceaa7c84ee335745c1803686fbbb59a19926 + md5: 74bec187a12aed00501eaafd35e694bf + constrains: + - python 3.8.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6479 + timestamp: 1695147767216 +- kind: conda + name: python_abi + version: '3.8' + build: 4_cp38 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.8-4_cp38.conda + sha256: 81a67cd91e7f07af481bae8cdea913bccab9a1b6155b2c81d21fbf31efe846a0 + md5: 69175aa707e394d51c35dda08bb339d9 + constrains: + - python 3.8.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6461 + timestamp: 1695147757654 +- kind: conda + name: python_abi + version: '3.8' + build: 4_cp38 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.8-4_cp38.conda + sha256: fa131149ca3b73aac06f839ee9525581517f50829eaa93fc0e8787b4797e4df0 + md5: b1059de1664cef9a785dda079a50f1ed + constrains: + - python 3.8.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6751 + timestamp: 1695147671006 +- kind: conda + name: python_abi + version: '3.9' + build: 4_cp39 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-4_cp39.conda + sha256: 7e0157e35929711e1a986c18a8bfb7a38a2209cfada16b541ebb0481f74376d6 + md5: bfe4b3259a8ac6cdf0037752904da6a7 + constrains: + - python 3.9.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6378 + timestamp: 1695147399237 +- kind: conda + name: python_abi + version: '3.9' + build: 4_cp39 + build_number: 4 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-libarchive-c-5.1-py312hb401068_0.conda - sha256: 6c82bf2f807310120630dea4c642b836d7e85804bb5750ee07b8e446386288ed - md5: 8c8948f8210f5508068744c520652feb - depends: - - libarchive - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: CC0-1.0 - license_family: CC - purls: - - pkg:pypi/libarchive-c?source=conda-forge-mapping - size: 69751 - timestamp: 1709828844280 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-4_cp39.conda + sha256: a2b38ce566d9f48a49369f46c50912300a6ac09bf1c58a0d6c2caab074ee551e + md5: 2d9f6c00555127a9058cfa955adf1090 + constrains: + - python 3.9.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6486 + timestamp: 1695147714523 +- kind: conda + name: python_abi + version: '3.9' + build: 4_cp39 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-4_cp39.conda + sha256: 2ae06dcd1a03f023b6accf5bd989f42b689f708d3495affa22c2ed9f1d127726 + md5: be9e11a37bbab9cfdbcb36e52d8d73cb + constrains: + - python 3.9.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6484 + timestamp: 1695147719187 +- kind: conda + name: python_abi + version: '3.9' + build: 4_cp39 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.9-4_cp39.conda + sha256: 3bf150eb6fc99f459210065973fc79b5974a9142672f6dd92eba6ed97697e0ed + md5: 948b0d93d4ab1372d8fd45e1560afd47 + constrains: + - python 3.9.* *_cpython + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6776 + timestamp: 1695147727582 - kind: conda name: python_abi version: '3.10' @@ -12628,6 +16842,168 @@ packages: - pkg:pypi/pyyaml?source=conda-forge-mapping size: 167932 timestamp: 1695374097139 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py38h01eb140_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py38h01eb140_1.conda + sha256: 7741529957e3b3428af73f003f043c9983ed672c69dc4aafef848b2583c4571b + md5: 5f05353ae9a6c37e1b4aebc9f7834d23 + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 182153 + timestamp: 1695373618370 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py38h91455d4_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py38h91455d4_1.conda + sha256: 1cd8fe0f885c7e491b41e55611f546d011db8ac45941202eb2ef1549f6df0507 + md5: 4d9ea280b4f91fa5b0c0d34f2fce99cb + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 151945 + timestamp: 1695373981322 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py38hb192615_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py38hb192615_1.conda + sha256: a4bcd94eda8611ade946a52cb52cf60ca6aa4d69915a9c68a9d9b7cbf02e4ac0 + md5: 72ee6bc5ee0182fb7c5f26461504cbf5 + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 158422 + timestamp: 1695373866893 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py38hcafd530_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py38hcafd530_1.conda + sha256: cd1dceaa9bb8296ddea04cfb5e933bf5ab2b189c566bb55e1a3c9a38efffa82d + md5: 17cfcfdd18fa2fe701ff68c9bbcea9a5 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 161848 + timestamp: 1695373748011 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py39h0f82c59_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py39h0f82c59_1.conda + sha256: 96ef332c1199bed9779f6b5bf7671dd00654208a6fadb7b89d744e66286326dc + md5: b4f3bbf710410751f687ac04544c12b1 + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 159929 + timestamp: 1695373838385 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py39ha55989b_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py39ha55989b_1.conda + sha256: 8e18f428c944dc08e34b78dad56af00852bc416b4be9ba528144389ac61bf123 + md5: 5c3a9da77fc79c21c5c1fd7ea06306a2 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 151118 + timestamp: 1695373930963 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py39hd1e30aa_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py39hd1e30aa_1.conda + sha256: 28b147c50ad48215f9427a52811848223ac0371be7caae88522e661a3bfb1448 + md5: 37218233bcdc310e4fde6453bc1b40d8 + depends: + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 178391 + timestamp: 1695373606953 +- kind: conda + name: pyyaml + version: 6.0.1 + build: py39hdc70f33_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py39hdc70f33_1.conda + sha256: 4a8d084617571ecb8d816fe4c46b672d8b9b4bd354cbfdbb6c843143abe3896f + md5: 542378f49240a94056b50ab1385b3bfb + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pyyaml?source=conda-forge-mapping + size: 162428 + timestamp: 1695373824922 - kind: conda name: rattler-build version: 0.18.1 @@ -12702,10 +17078,10 @@ packages: name: rattler-build-conda-compat version: 0.2.1 path: . - sha256: d89e3fca0aa28f37794d528923461124e905e3e1d95f3901d3611df064e527b3 + sha256: f2c63374ae40dbf814c3f124cb7fd031db91c0bacfe9cc11b18c21114c448b1d requires_dist: - typing-extensions>=4.12,<5 - requires_python: '>=3.10' + requires_python: '>=3.8' editable: true - kind: conda name: readline @@ -13309,54 +17685,218 @@ packages: - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: - - __osx >=11.0 + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 290080 + timestamp: 1720476886445 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py312ha47ea1c_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py312ha47ea1c_0.conda + sha256: f952828a1980e2a3d445a9836ac2ac481114d230acf2c2276092d426ad7a3dc0 + md5: d92edd61e8e16a218a821e1cf6d983f9 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 295597 + timestamp: 1720476792452 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py312hf008fa9_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py312hf008fa9_0.conda + sha256: 75af7e5a0906ed4856f917020e4b7641dc61d414bcf97b6a4801c0acb1945dcd + md5: 66ebbe714bafd06ba298a0c6bc2f04ad + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 333646 + timestamp: 1720476841723 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py38h186058e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py38h186058e_0.conda + sha256: 73c43ff938c024cd505c018572c886c67081cb81f62096be7f6e2c26ec949d3a + md5: 3c8b7cfbd17ebeb102b5dc90c33cd287 + depends: + - __osx >=11.0 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 287997 + timestamp: 1720476974992 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py38h2c15f49_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py38h2c15f49_0.conda + sha256: 8403b35b4f656dc69be579f3d4edf8de68434d4884da61d4944e26c3ca0928ed + md5: 02a30e4d41e9513199cd077f0744c2f0 + depends: + - __osx >=10.13 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 294380 + timestamp: 1720476805095 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py38h2e0ef18_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py38h2e0ef18_0.conda + sha256: 49236ae3c69e131f92d5246d5056bb68b92efc6120f8e271f02efa534ffacc10 + md5: 878a964c85148825fcb3f98f9d6a905c + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 205804 + timestamp: 1720477372313 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py38h4005ec7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py38h4005ec7_0.conda + sha256: bbae8656a79a04625ba68cce43bcdd1abd9286e4277556290e9b2dac9f97c2fe + md5: 55aa6797b775b07634998f97eb3df63d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 331478 + timestamp: 1720476803163 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py39h0019b8a_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.19.0-py39h0019b8a_0.conda + sha256: 5197406f5762782a7905acc3daa052f5cb30eec1cf82214a94492d8fc27bbe46 + md5: 7424f27c51aeabec740f49baec203be8 + depends: + - __osx >=11.0 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/rpds-py?source=conda-forge-mapping + size: 288229 + timestamp: 1720477138421 +- kind: conda + name: rpds-py + version: 0.19.0 + build: py39h5cde264_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py39h5cde264_0.conda + sha256: 9d4d711b8a932dce3761c7d33699024162932ba14a9f1c9f8d3f14227a9b0b28 + md5: 14e10163621e288ef463f372772db6fb + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + constrains: + - __glibc >=2.17 license: MIT license_family: MIT purls: - pkg:pypi/rpds-py?source=conda-forge-mapping - size: 290080 - timestamp: 1720476886445 + size: 331386 + timestamp: 1720476875883 - kind: conda name: rpds-py version: 0.19.0 - build: py312ha47ea1c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py312ha47ea1c_0.conda - sha256: f952828a1980e2a3d445a9836ac2ac481114d230acf2c2276092d426ad7a3dc0 - md5: d92edd61e8e16a218a821e1cf6d983f9 + build: py39h92a245a_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.19.0-py39h92a245a_0.conda + sha256: db0d78b975a71934c1390bc842e6a732f8c4da7a80d61fa29f2b2c6eac9dcfa8 + md5: 6b02271a231bfb425741dc2745a035fb depends: - - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - __osx >=10.13 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT purls: - pkg:pypi/rpds-py?source=conda-forge-mapping - size: 295597 - timestamp: 1720476792452 + size: 205985 + timestamp: 1720477162409 - kind: conda name: rpds-py version: 0.19.0 - build: py312hf008fa9_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.19.0-py312hf008fa9_0.conda - sha256: 75af7e5a0906ed4856f917020e4b7641dc61d414bcf97b6a4801c0acb1945dcd - md5: 66ebbe714bafd06ba298a0c6bc2f04ad + build: py39hf59063a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.19.0-py39hf59063a_0.conda + sha256: 941aeeba50b64d3fd346558b76ccfa357c15b1dddf94c48a1caccfed8f6e8882 + md5: 1ba212bf800842054aa94f13e10e5307 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - __osx >=10.13 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 constrains: - - __glibc >=2.17 + - __osx >=10.13 license: MIT license_family: MIT purls: - pkg:pypi/rpds-py?source=conda-forge-mapping - size: 333646 - timestamp: 1720476841723 + size: 294513 + timestamp: 1720476975886 - kind: conda name: ruamel.yaml version: 0.18.6 @@ -13588,6 +18128,160 @@ packages: - pkg:pypi/ruamel-yaml?source=conda-forge-mapping size: 267762 timestamp: 1707298539404 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py38h01eb140_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py38h01eb140_0.conda + sha256: f20f9bc4b59e77fd755f442a9832812137c0d543d8ac8548db7200778fcb7c7f + md5: 54baf6f86c42f6795251de56141976f5 + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 199581 + timestamp: 1707298360722 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py38h336bac9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py38h336bac9_0.conda + sha256: 32fed7de14c786c7e1f8f03dcf5a9cc1fd27bcb178eefb07d6c514df72b7b327 + md5: 59195c26a0bc051766b13b8fd12e11f2 + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 199203 + timestamp: 1707298644290 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py38h91455d4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py38h91455d4_0.conda + sha256: 7904f85117628a2dee46b3cae5e201084baf8fb039372ce2e0666dab0555814b + md5: f72fee2e167c391a95a585721e097d8c + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ruamel.yaml.clib >=0.1.2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 198520 + timestamp: 1707298507779 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py38hae2e43d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py38hae2e43d_0.conda + sha256: 1f56998e46dac5094590531ce4de52504e5b94ad5901cfda51d72174321716c3 + md5: 5f9d423ec68d9f8f6f12922d57729ab3 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 199718 + timestamp: 1707298524304 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py39h17cfd9d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py39h17cfd9d_0.conda + sha256: 028c6ab17f2c7cadad46ea793a73d2f321538982537bba2693edc4713ba731b5 + md5: 1939438813d874d7b01e2e982a15f286 + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 199850 + timestamp: 1707298620739 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py39ha09f3b3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py39ha09f3b3_0.conda + sha256: 34c77c7b2a8a330baf7cfa756eb75b92f7c210bae46104a56d67e8c4b7d0e5bb + md5: 6eb863d10b7aeef1f58ba1ebf92f59bd + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 199924 + timestamp: 1707298588983 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py39ha55989b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py39ha55989b_0.conda + sha256: e7fced05f6e403ae3edb9ac748da77c8c202263a9e5a9f15c858ba840e33e456 + md5: 7839645d467f5d3bc52709a3d484fa62 + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ruamel.yaml.clib >=0.1.2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 198885 + timestamp: 1707298589038 +- kind: conda + name: ruamel.yaml + version: 0.18.6 + build: py39hd1e30aa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py39hd1e30aa_0.conda + sha256: 9cfb534d18a1c060d876762806752d6a3d253727f255c65e5473810dd1dd4231 + md5: 2289054e90cf07e35280bbe798811dc8 + depends: + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ruamel.yaml.clib >=0.1.2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml?source=conda-forge-mapping + size: 200037 + timestamp: 1707298328470 - kind: conda name: ruamel.yaml.clib version: 0.2.8 @@ -13700,14 +18394,160 @@ packages: - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py311ha68e1ae_0 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda + sha256: 40896e9a78f24d108ee5cd4156042e2a71bd40fcf74167af0cca3e2551e02eda + md5: 4938101fc72fa2a9919c51f194a733cb + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 99133 + timestamp: 1707315268440 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda + sha256: e6d5b2c9a75191305c8d367d13218c0bd0cc7a640ae776b541124c0fe8341bc9 + md5: 3fdbde273667047893775e077cef290d + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 117859 + timestamp: 1707314957390 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py312h41838bb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda + sha256: c0a321d14505b3621d6301e1ed9bc0129b4c8b2812e7520040d2609aaeb07845 + md5: a134bf1778eb7add92ea760e801dc245 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 118650 + timestamp: 1707314908121 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py312h98912ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda + sha256: 5965302881d8b1049291e3ba3912286cdc72cb82303230cbbf0a048c6f6dd7c1 + md5: 05f31c2a79ba61df8d6d903ce4a4ce7b + depends: + - libgcc-ng >=12 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 135640 + timestamp: 1707314642857 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py312he37b823_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda + sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 + md5: 2fa02324046cfcb7a67fae30fd06a945 + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 111221 + timestamp: 1707315016121 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py312he70551f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda + sha256: 7d5705ee3190a5b1c24eee2def964cc1d70b9e856488d971f0fd6df0224ca666 + md5: f8de34a829b65a8e3ac6ddc61ed0d2e0 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 96333 + timestamp: 1707315306489 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py38h01eb140_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py38h01eb140_0.conda + sha256: 1a137d9e6432eca38dc8ca377ab00f71ab128c12655959953f540d892c18ad9d + md5: 4aa891e6cb42aed8fefaee7f4eb58383 + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 148062 + timestamp: 1707314712996 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py38h336bac9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py38h336bac9_0.conda + sha256: 87784afcad9e2e4231ac64c50acdb176591ef36d725f0f14c0faa2d814ba5d94 + md5: 8d6202a476ac00ffe123be1c21a8eac8 + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping + size: 112045 + timestamp: 1707315076537 +- kind: conda + name: ruamel.yaml.clib + version: 0.2.8 + build: py38h91455d4_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda - sha256: 40896e9a78f24d108ee5cd4156042e2a71bd40fcf74167af0cca3e2551e02eda - md5: 4938101fc72fa2a9919c51f194a733cb + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py38h91455d4_0.conda + sha256: 91778821da566496e6301bb72812269c57b7fcaeb1641970ff4368e356b90bb0 + md5: 860a7e822c1dc1693bb32854da9732eb depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 @@ -13715,98 +18555,98 @@ packages: license_family: MIT purls: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 99133 - timestamp: 1707315268440 + size: 105287 + timestamp: 1707315224904 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py311he705e18_0 + build: py38hae2e43d_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda - sha256: e6d5b2c9a75191305c8d367d13218c0bd0cc7a640ae776b541124c0fe8341bc9 - md5: 3fdbde273667047893775e077cef290d + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py38hae2e43d_0.conda + sha256: 061e853a95eb973ea734e0b3601cb6700230a514cb05b8f4f3fa86dc737af336 + md5: c0a1e4c5e80540b430c23dddf7771d47 depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 license: MIT license_family: MIT purls: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 117859 - timestamp: 1707314957390 + size: 118401 + timestamp: 1707314959926 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h41838bb_0.conda - sha256: c0a321d14505b3621d6301e1ed9bc0129b4c8b2812e7520040d2609aaeb07845 - md5: a134bf1778eb7add92ea760e801dc245 + build: py39h17cfd9d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py39h17cfd9d_0.conda + sha256: d128e55fb573217a9ef6189e62172b2b497d7163d7b3097cf6ff0c6bf29a6a1a + md5: b4b13ca14d2848049adc82fed7c89e64 depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT purls: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 118650 - timestamp: 1707314908121 + size: 114689 + timestamp: 1707314963167 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h98912ed_0.conda - sha256: 5965302881d8b1049291e3ba3912286cdc72cb82303230cbbf0a048c6f6dd7c1 - md5: 05f31c2a79ba61df8d6d903ce4a4ce7b + build: py39ha09f3b3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py39ha09f3b3_0.conda + sha256: cd879e616da91e627297a6816955d59ea544c1111a0ce128e7fa2e86ab61680f + md5: 835c656934865805c0b02dbff74fe5b7 depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT purls: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 135640 - timestamp: 1707314642857 + size: 120753 + timestamp: 1707314925965 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312he37b823_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312he37b823_0.conda - sha256: c3138824f484cca2804d22758c75965b578cd35b35243ff02e64da06bda03477 - md5: 2fa02324046cfcb7a67fae30fd06a945 + build: py39ha55989b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py39ha55989b_0.conda + sha256: f3f45db22b575a75ec63d018bc1439bb3e7a0cb0f79ff6b452aae8bb27ebdfd8 + md5: 07aae1fdd812b411cec84c0d47339d22 depends: - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT purls: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 111221 - timestamp: 1707315016121 + size: 105199 + timestamp: 1707315255409 - kind: conda name: ruamel.yaml.clib version: 0.2.8 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312he70551f_0.conda - sha256: 7d5705ee3190a5b1c24eee2def964cc1d70b9e856488d971f0fd6df0224ca666 - md5: f8de34a829b65a8e3ac6ddc61ed0d2e0 + build: py39hd1e30aa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py39hd1e30aa_0.conda + sha256: 32b7b4f13493eeff0d18de85d58d7b8c2b04234ea737b8769871067189c70d69 + md5: b1961e70cfe8e1eac243faf933d1813f depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 license: MIT license_family: MIT purls: - pkg:pypi/ruamel-yaml-clib?source=conda-forge-mapping - size: 96333 - timestamp: 1707315306489 + size: 145034 + timestamp: 1707314715975 - kind: conda name: ruff version: 0.5.2 @@ -14799,6 +19639,152 @@ packages: - pkg:pypi/wrapt?source=conda-forge-mapping size: 61358 timestamp: 1699533495284 +- kind: conda + name: wrapt + version: 1.16.0 + build: py38h01eb140_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py38h01eb140_0.conda + sha256: 7dd01753c99139ecb096f6229550ffb2effd57012c9cc17d7b570d50326422c9 + md5: d0dafe661cdf1604866a77160566a879 + depends: + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 55224 + timestamp: 1699532979633 +- kind: conda + name: wrapt + version: 1.16.0 + build: py38h336bac9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py38h336bac9_0.conda + sha256: 188588604659b1e7a832395bfec732bde4fa27ba9973c953830f2ff5de356b6a + md5: 17224faec684d10d8ec60edf44eee297 + depends: + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 52247 + timestamp: 1699533350048 +- kind: conda + name: wrapt + version: 1.16.0 + build: py38h91455d4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py38h91455d4_0.conda + sha256: 6924c3cb7a6689ef26577c15eb1ef9cd922c4d483e9933d7fbf578c3aff463e4 + md5: f21641c566efa50baafca81a875b9432 + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 53635 + timestamp: 1699533399002 +- kind: conda + name: wrapt + version: 1.16.0 + build: py38hae2e43d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py38hae2e43d_0.conda + sha256: 2f404f8adfc6a7fe6aea333cc63fdee145dd2983020fb8b1d9180bf12c219dc1 + md5: 98ffdced4a68aff15609931a43a18a7a + depends: + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 50904 + timestamp: 1699533114835 +- kind: conda + name: wrapt + version: 1.16.0 + build: py39h17cfd9d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py39h17cfd9d_0.conda + sha256: 031cfab8831d691aca27f6895d620c05d61fc0c7174321ff61fa05ee7242e9a6 + md5: 7f0f8e11c37e9aad94d56e68f06ed88f + depends: + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 52299 + timestamp: 1699533275763 +- kind: conda + name: wrapt + version: 1.16.0 + build: py39ha09f3b3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py39ha09f3b3_0.conda + sha256: e9072dd6dd3caf97485edf03736b34a5bce1e4362e386c5bf5a89a577085adbc + md5: e0dfef65e132afa9bfb67d9158cf1bed + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 51270 + timestamp: 1699533366033 +- kind: conda + name: wrapt + version: 1.16.0 + build: py39ha55989b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py39ha55989b_0.conda + sha256: 6e4861778ae662574f0596879b9e2a552ea21f294c8d136c42773dd81f539107 + md5: d22c3a3aa15953f386e208a55d3123bc + depends: + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 53943 + timestamp: 1699533479102 +- kind: conda + name: wrapt + version: 1.16.0 + build: py39hd1e30aa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py39hd1e30aa_0.conda + sha256: cb48fd73e68deb8fac83a254897166fb9e396ed86199796075eace9fbceca04e + md5: 3f562f7f2196e9569cef20e0d5280244 + depends: + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + license: BSD-2-Clause + license_family: BSD + purls: + - pkg:pypi/wrapt?source=conda-forge-mapping + size: 55045 + timestamp: 1699532965846 - kind: conda name: xz version: 5.2.6 @@ -15095,6 +20081,29 @@ packages: - pkg:pypi/zstandard size: 415099 timestamp: 1698830281446 +- kind: conda + name: zstandard + version: 0.22.0 + build: py39h0b77d07_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.22.0-py39h0b77d07_1.conda + sha256: 6528f99ff980f3f08a5c19099ea5b6c623831d7ee060158e28bd79d0c4cefdf4 + md5: 19831d5658b691425fabd726db342b50 + depends: + - __osx >=11.0 + - cffi >=1.11 + - python >=3.9,<3.10.0a0 + - python >=3.9,<3.10.0a0 *_cpython + - python_abi 3.9.* *_cp39 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 319867 + timestamp: 1718866678183 - kind: conda name: zstandard version: 0.23.0 @@ -15359,6 +20368,160 @@ packages: - pkg:pypi/zstandard?source=conda-forge-mapping size: 320649 timestamp: 1721044547910 +- kind: conda + name: zstandard + version: 0.23.0 + build: py38h43bb1b3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py38h43bb1b3_0.conda + sha256: 14c3139f32c22b61ee4dbf9f4f1e44b445a54505b3e09dd0e41146f40865afe2 + md5: be90d81878902f7c0e7bb2846fbe126c + depends: + - __osx >=11.0 + - cffi >=1.11 + - python >=3.8,<3.9.0a0 + - python >=3.8,<3.9.0a0 *_cpython + - python_abi 3.8.* *_cp38 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 322221 + timestamp: 1721044445032 +- kind: conda + name: zstandard + version: 0.23.0 + build: py38h62bed22_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py38h62bed22_0.conda + sha256: c91d68f07b9909138f19b6bf5acbb1acdd9bc620e4bd4b997514e646584a43ae + md5: 7cdf6cb1dcfbaf868ff42b15189f7e59 + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 405783 + timestamp: 1721044145927 +- kind: conda + name: zstandard + version: 0.23.0 + build: py38hdb7df32_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py38hdb7df32_0.conda + sha256: 9bd6178c20b468985784e63e5a5752ba09c23922e9113694bb0c308f035a85aa + md5: be8ae480a2c487987fc4aeda477328dc + depends: + - __osx >=10.13 + - cffi >=1.11 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 401982 + timestamp: 1721044258096 +- kind: conda + name: zstandard + version: 0.23.0 + build: py38hf92978b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py38hf92978b_0.conda + sha256: 1a7dd43fd4d3e667521b2fb3477cd20ef6586c5696c003ef5c6bff01dca37a71 + md5: 98bd13d4c311b4c8402446c93b142f9b + depends: + - cffi >=1.11 + - python >=3.8,<3.9.0a0 + - python_abi 3.8.* *_cp38 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 311395 + timestamp: 1721044412087 +- kind: conda + name: zstandard + version: 0.23.0 + build: py39h32d468b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py39h32d468b_0.conda + sha256: f5b8c8f4b6260cbba8fc8f74ab6ca7d7edaaef1b108dc55accad4fdb2a5138b5 + md5: b3234fc0ba4b2d4e173ea2f71be11de8 + depends: + - __osx >=10.13 + - cffi >=1.11 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 400897 + timestamp: 1721044460640 +- kind: conda + name: zstandard + version: 0.23.0 + build: py39h623c9ba_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py39h623c9ba_0.conda + sha256: ed3512de7f15accf3687cf732ab54d3ff3bc8c6463e63a4474922e5a5e0b8e97 + md5: a19d023682384c637cb356d270c276c0 + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 406014 + timestamp: 1721044148631 +- kind: conda + name: zstandard + version: 0.23.0 + build: py39h9bf74da_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py39h9bf74da_0.conda + sha256: af0c955b75aab89c24b3c1a34c323821b7e25d488d9ff31f3767bb9d583272a6 + md5: 9658585ffb22b68adb5490e9035b93ba + depends: + - cffi >=1.11 + - python >=3.9,<3.10.0a0 + - python_abi 3.9.* *_cp39 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.5.7.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/zstandard?source=conda-forge-mapping + size: 310144 + timestamp: 1721044587416 - kind: conda name: zstd version: 1.5.5 diff --git a/pixi.toml b/pixi.toml index 59d2b9d..52282f7 100644 --- a/pixi.toml +++ b/pixi.toml @@ -10,7 +10,7 @@ platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] build_sdist = "pixi run python -m build --sdist" [dependencies] -python = ">=3.10" +python = ">=3.8" build = ">=0.7.0,<0.8" rattler-build = ">=0.18.1,<1" conda-build = ">=24.3.0,<25.0" @@ -53,8 +53,16 @@ python = "3.11.*" [feature.py310.dependencies] python = "3.10.*" +[feature.py39.dependencies] +python = "3.9.*" + +[feature.py38.dependencies] +python = "3.8.*" + [environments] py312 = { features = ["py312", "tests"] } py311 = ["py311", "tests"] py310 = ["py310", "tests"] +py39 = ["py39", "tests"] +py38 = ["py38", "tests"] lint = { features = ["lint"], no-default-feature = true } diff --git a/pyproject.toml b/pyproject.toml index d089961..bc47835 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,10 +12,10 @@ license = { file = "LICENSE.txt" } dependencies = [ "typing-extensions>=4.12,<5" ] -requires-python = ">=3.10" +requires-python = ">=3.8" [tool.ruff] -target-version = "py310" +target-version = "py38" line-length = 100 [tool.ruff.format] @@ -48,5 +48,5 @@ venvPath = ".pixi/envs" venv = "default" [tool.mypy] -python_version = "3.10" +python_version = "3.8" allow_redefinition = true diff --git a/src/rattler_build_conda_compat/conditional_list.py b/src/rattler_build_conda_compat/conditional_list.py index a64eeae..68c1205 100644 --- a/src/rattler_build_conda_compat/conditional_list.py +++ b/src/rattler_build_conda_compat/conditional_list.py @@ -1,6 +1,6 @@ from __future__ import annotations -from typing import TYPE_CHECKING, Any, Generic, TypeVar, Union, cast +from typing import TYPE_CHECKING, Any, Generic, List, TypeVar, Union, cast if TYPE_CHECKING: from collections.abc import Callable, Generator @@ -15,7 +15,7 @@ class IfStatement(Generic[T]): else_: T | list[T] | None -ConditionalList = Union[T, IfStatement[T], list[T | IfStatement[T]]] # noqa: UP007 +ConditionalList = Union[T, IfStatement[T], List[Union[T, IfStatement[T]]]] def visit_conditional_list( # noqa: C901 diff --git a/src/rattler_build_conda_compat/recipe_sources.py b/src/rattler_build_conda_compat/recipe_sources.py index b6d0d5f..a86cf19 100644 --- a/src/rattler_build_conda_compat/recipe_sources.py +++ b/src/rattler_build_conda_compat/recipe_sources.py @@ -2,7 +2,7 @@ import sys import typing -from typing import Any, TypedDict +from typing import Any, List, TypedDict, Union from .conditional_list import ConditionalList, visit_conditional_list @@ -14,7 +14,7 @@ if typing.TYPE_CHECKING: from collections.abc import Iterator, Mapping -OptionalUrlList = str | list[str] | None +OptionalUrlList = Union[str, List[str], None] class Source(TypedDict): diff --git a/src/rattler_build_conda_compat/render.py b/src/rattler_build_conda_compat/render.py index 2f45930..bf0aeed 100644 --- a/src/rattler_build_conda_compat/render.py +++ b/src/rattler_build_conda_compat/render.py @@ -68,35 +68,33 @@ def render_recipes(self, variants) -> List[Dict]: platform_and_arch = f"{self.config.platform}-{self.config.arch}" try: - with ( - tempfile.NamedTemporaryFile(mode="w+") as outfile, - tempfile.NamedTemporaryFile(mode="w") as variants_file, - ): - # dump variants in our variants that will be used to generate recipe - if variants: - yaml.dump(variants, variants_file, default_flow_style=False) - - variants_path = variants_file.name - - run_args = [ - "rattler-build", - "build", - "--render-only", - "--recipe", - self.path, - "--target-platform", - platform_and_arch, - "--build-platform", - platform_and_arch, - ] - - if variants: - run_args.extend(["-m", variants_path]) - subprocess.run(run_args, check=True, stdout=outfile, env=os.environ) - - outfile.seek(0) - content = outfile.read() - metadata = json.loads(content) + with tempfile.NamedTemporaryFile(mode="w+") as outfile: + with tempfile.NamedTemporaryFile(mode="w") as variants_file: + # dump variants in our variants that will be used to generate recipe + if variants: + yaml.dump(variants, variants_file, default_flow_style=False) + + variants_path = variants_file.name + + run_args = [ + "rattler-build", + "build", + "--render-only", + "--recipe", + self.path, + "--target-platform", + platform_and_arch, + "--build-platform", + platform_and_arch, + ] + + if variants: + run_args.extend(["-m", variants_path]) + subprocess.run(run_args, check=True, stdout=outfile, env=os.environ) + + outfile.seek(0) + content = outfile.read() + metadata = json.loads(content) return metadata if isinstance(metadata, list) else [metadata] except Exception as e: From 0d8f14bedfa18a02a48af09aeb57866110757f35 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 15:28:55 +0200 Subject: [PATCH 29/31] release: v0.2.2 --- pixi.toml | 2 +- pyproject.toml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pixi.toml b/pixi.toml index 52282f7..569b061 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "rattler-build-conda-compat" -version = "0.2.1" +version = "0.2.2" description = "A package for exposing rattler-build API for conda-smithy" authors = ["nichmor "] channels = ["conda-forge"] diff --git a/pyproject.toml b/pyproject.toml index bc47835..c366608 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,13 +5,11 @@ build-backend = "hatchling.build" [project] name = "rattler-build-conda-compat" description = "A package for exposing rattler-build API for conda-smithy" -version = "0.2.1" +version = "0.2.2" readme = "README.md" authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] license = { file = "LICENSE.txt" } -dependencies = [ - "typing-extensions>=4.12,<5" -] +dependencies = ["typing-extensions>=4.12,<5"] requires-python = ">=3.8" [tool.ruff] @@ -32,7 +30,7 @@ ignore = [ "T201", # https://docs.astral.sh/ruff/rules/print/ "A003", # https://docs.astral.sh/ruff/rules/builtin-attribute-shadowing/ "PTH", # We dont want to change the API to pathlib just yet - "ANN101" # Deprecated + "ANN101", # Deprecated ] exclude = [ "src/rattler_build_conda_compat/lint.py", From b19e2071941e6074c11a4cc83b34571e641e1c7c Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 15:33:10 +0200 Subject: [PATCH 30/31] fix: update lock --- pixi.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixi.lock b/pixi.lock index e3cc38e..557dc5b 100644 --- a/pixi.lock +++ b/pixi.lock @@ -17076,9 +17076,9 @@ packages: timestamp: 1719424948999 - kind: pypi name: rattler-build-conda-compat - version: 0.2.1 + version: 0.2.2 path: . - sha256: f2c63374ae40dbf814c3f124cb7fd031db91c0bacfe9cc11b18c21114c448b1d + sha256: b3a727754ef5bcca637b07bfbc84448be07be5a27f9dfa7f4ff17b7297f23def requires_dist: - typing-extensions>=4.12,<5 requires_python: '>=3.8' From 9a923aa6cfa0f2a8096dc5db568aa5e4703964d7 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 19 Jul 2024 16:27:06 +0200 Subject: [PATCH 31/31] feat: change to 3.12 env --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c366608..6e93e42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ exclude = [ [tool.pyright] venvPath = ".pixi/envs" -venv = "default" +venv = "py312" [tool.mypy] python_version = "3.8"