From 5ffe8511e30e34fa4622d86f2ddaaed9c6cbeaf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Ri=C3=9Fe?= Date: Tue, 26 Mar 2024 10:23:05 +0100 Subject: [PATCH] CI overhaul This removes the docker image logic from the CI setup and instead replaces it with a setup based on pixi. As part of that it moves the dependency specification from localbuild/meta.yaml to pixi.toml and pixi.lock. This turns the MSS repository into a single source of truth for both the application code as well as the development environment (whereas the latter was previously only specified in the docker images, and not reproducible in any way). Setting up a development environment is as simple as installing pixi and running `pixi shell` (or `pixi run `, or `pixi install` to just create the environment, etc.). This environment will, by construction, be the same that is used in the CI as well (modulo platform differences). There is a new workflow that periodically (once a week on Monday) recreates the pixi lockfile and opens a PR for that update. The checks in that PR essentially serve as a replacement for the previous scheduled runs to ensure that no dependency update breaks MSS. Merging that PR is a manual step that can be done just as with any other PR and would then update the environment on the given target branch. This is essentially what was previously the triggering of a docker image creation. Including new dependencies can be done with `pixi add`, which will also automatically add the dependency to the (pre-existing) lockfile. This means dependency additions can be part of the PR that necessitate them and they won't affect the entire environment (as they previously did, where they would trigger a full image rebuild) but instead just add that new package to the existing specification. --- .gitattributes | 2 + .github/workflows/build_docs_gallery.yml | 14 +- .github/workflows/testing-all-oses.yml | 26 +- .github/workflows/testing-develop.yml | 19 - .github/workflows/testing-scheduled.yml | 26 - .github/workflows/testing-stable.yml | 19 - .github/workflows/testing.yml | 79 - .github/workflows/update-pixi-lockfile.yml | 38 + .gitignore | 3 + localbuild/README.rst | 5 - localbuild/bld.bat | 7 - localbuild/build.sh | 7 - localbuild/menu.json | 54 - localbuild/meta.yaml | 129 - localbuild/msui.ico | Bin 2462 -> 0 bytes localbuild/msui.png | Bin 1911 -> 0 bytes pixi.lock | 18213 +++++++++++++++++++ pixi.toml | 105 + requirements.d/development.txt | 22 - 19 files changed, 18373 insertions(+), 395 deletions(-) delete mode 100644 .github/workflows/testing-develop.yml delete mode 100644 .github/workflows/testing-scheduled.yml delete mode 100644 .github/workflows/testing-stable.yml delete mode 100644 .github/workflows/testing.yml create mode 100644 .github/workflows/update-pixi-lockfile.yml delete mode 100644 localbuild/README.rst delete mode 100644 localbuild/bld.bat delete mode 100644 localbuild/build.sh delete mode 100644 localbuild/menu.json delete mode 100644 localbuild/meta.yaml delete mode 100644 localbuild/msui.ico delete mode 100644 localbuild/msui.png create mode 100644 pixi.lock create mode 100644 pixi.toml delete mode 100644 requirements.d/development.txt diff --git a/.gitattributes b/.gitattributes index 176a458f9..89ff76ffc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ * text=auto +# GitHub syntax highlighting +pixi.lock linguist-language=YAML diff --git a/.github/workflows/build_docs_gallery.yml b/.github/workflows/build_docs_gallery.yml index 2ca8f13a6..3738682a1 100644 --- a/.github/workflows/build_docs_gallery.yml +++ b/.github/workflows/build_docs_gallery.yml @@ -1,20 +1,20 @@ name: Build Gallery on: - pull_request: + pull_request: jobs: Test-MSS-docs: runs-on: ubuntu-latest - - container: - image: openmss/testing-develop - steps: - uses: actions/checkout@v4 - + - uses: prefix-dev/setup-pixi@v0.5.1 + with: + pixi-version: latest + cache: true + environments: dev - name: Create gallery timeout-minutes: 5 run: | cd docs - mamba run --no-capture-output -n mssenv python conf.py + pixi run -e dev python conf.py diff --git a/.github/workflows/testing-all-oses.yml b/.github/workflows/testing-all-oses.yml index 43d43bef5..e40d77737 100644 --- a/.github/workflows/testing-all-oses.yml +++ b/.github/workflows/testing-all-oses.yml @@ -21,27 +21,11 @@ jobs: os: ["macos-13", "macos-14", "ubuntu-latest"] steps: - uses: actions/checkout@v4 - - name: Build requirements.txt file - run: | - sed -n '/^requirements:/,/^test:/p' localbuild/meta.yaml | - sed -e "s/.*- //" | - sed -e "s/menuinst.*//" | - sed -e "s/.*://" > requirements.tmp.txt - cat requirements.d/development.txt >> requirements.tmp.txt - echo "pytest-randomly" >> requirements.tmp.txt - sed -e '/^$/d' -e '/^#.*$/d' -e 's/\s*# \[not win\]$//' requirements.tmp.txt > requirements.txt - rm requirements.tmp.txt - cat requirements.txt - - name: Get current year and calendar week - id: year-and-week - run: echo "year-and-week=$(date +%Y-%V)" >> "$GITHUB_OUTPUT" - - uses: mamba-org/setup-micromamba@v2 + - uses: prefix-dev/setup-pixi@v0.8.1 with: - environment-file: requirements.txt - environment-name: ci - cache-environment: true - # Set the cache key in a way that the cache is invalidated every week on monday - cache-environment-key: environment-${{ steps.year-and-week.outputs.year-and-week }} + pixi-version: latest + cache: true + environments: dev - name: Run tests timeout-minutes: 40 - run: micromamba run -n ci env QT_QPA_PLATFORM=offscreen pytest -v -n logical --durations=20 --cov=mslib tests + run: pixi run -e dev env QT_QPA_PLATFORM=offscreen pytest -v -n logical --durations=20 --cov=mslib tests diff --git a/.github/workflows/testing-develop.yml b/.github/workflows/testing-develop.yml deleted file mode 100644 index b3ee2c3c5..000000000 --- a/.github/workflows/testing-develop.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: test develop - -on: - push: - branches: - - develop - pull_request: - branches: - - develop - workflow_dispatch: - -jobs: - test-develop: - uses: - ./.github/workflows/testing.yml - with: - image_suffix: develop - secrets: - PAT: ${{ secrets.PAT }} diff --git a/.github/workflows/testing-scheduled.yml b/.github/workflows/testing-scheduled.yml deleted file mode 100644 index 580003604..000000000 --- a/.github/workflows/testing-scheduled.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: new dependency test (scheduled) - -on: - schedule: - - cron: '30 5 * * 1' - -jobs: - trigger-testing-stable: - runs-on: ubuntu-latest - permissions: - actions: write - steps: - - uses: benc-uk/workflow-dispatch@v1.2.4 - with: - workflow: testing-stable.yml - ref: stable - - trigger-testing-develop: - runs-on: ubuntu-latest - permissions: - actions: write - steps: - - uses: benc-uk/workflow-dispatch@v1.2.4 - with: - workflow: testing-develop.yml - ref: develop diff --git a/.github/workflows/testing-stable.yml b/.github/workflows/testing-stable.yml deleted file mode 100644 index 851dce7e2..000000000 --- a/.github/workflows/testing-stable.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: test stable - -on: - push: - branches: - - stable - pull_request: - branches: - - stable - workflow_dispatch: - -jobs: - test-stable: - uses: - ./.github/workflows/testing.yml - with: - image_suffix: stable - secrets: - PAT: ${{ secrets.PAT }} diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml deleted file mode 100644 index ae1eb46c7..000000000 --- a/.github/workflows/testing.yml +++ /dev/null @@ -1,79 +0,0 @@ -name: Pytest MSS - -on: - workflow_call: - inputs: - image_suffix: - required: true - type: string - secrets: - PAT: - -env: - mamba-env: mss-${{ inputs.image_suffix }}-env - -jobs: - Test-MSS: - runs-on: ubuntu-latest - - container: - image: openmss/testing-${{ inputs.image_suffix }} - - strategy: - fail-fast: false - matrix: - order: ["normal", "reverse"] - - steps: - - uses: actions/checkout@v4 - - - name: Check for changed dependencies - run: cmp -s /meta.yaml localbuild/meta.yaml && cmp -s /development.txt requirements.d/development.txt || - (echo Dependencies differ && echo "triggerdockerbuild=yes" >> $GITHUB_ENV ) - - - name: Always rebuild dependencies for scheduled builds (started from testing-scheduled.yml) - if: ${{ github.event_name == 'workflow_dispatch' }} - run: echo "triggerdockerbuild=yes" >> $GITHUB_ENV - - - name: Invoke dockertesting image creation - # The image creation is intentionally only triggered for push events because - # scheduled tests should just check that new dependency versions do not break the - # tests, but should not update the image. - if: ${{ (github.ref_name == 'stable' || github.ref_name == 'develop') && github.event_name == 'push' && env.triggerdockerbuild == 'yes' && matrix.order == 'normal' }} - uses: benc-uk/workflow-dispatch@v1.2.4 - with: - workflow: Update Image testing-${{ inputs.image_suffix }} - repo: Open-MSS/dockertesting - ref: main - token: ${{ secrets.PAT }} - - - name: Reinstall dependencies if changed - if: ${{ env.triggerdockerbuild == 'yes' }} - run: | - cat localbuild/meta.yaml | - sed -n '/^requirements:/,/^test:/p' | - sed -e "s/.*- //" | - sed -e "s/menuinst.*//" | - sed -e "s/.*://" > reqs.txt - cat requirements.d/development.txt >> reqs.txt - cat reqs.txt - mamba env remove -n ${{ env.mamba-env }} - mamba create -y -n ${{ env.mamba-env }} --file reqs.txt - - - name: Print conda list - run: mamba run --no-capture-output -n ${{ env.mamba-env }} mamba list - - - name: Run tests - timeout-minutes: 10 - run: mamba run --no-capture-output -n ${{ env.mamba-env }} xvfb-run pytest - -v -n 6 --dist loadfile --max-worker-restart 4 --durations=20 --cov=mslib - ${{ (matrix.order == 'normal' && ' ') || (matrix.order == 'reverse' && '--reverse') }} tests - - - name: Collect coverage - if: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') && matrix.order == 'normal' }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git config --global --add safe.directory /__w/MSS/MSS - mamba install -n ${{ env.mamba-env }} coveralls - mamba run --no-capture-output -n ${{ env.mamba-env }} coveralls --service=github diff --git a/.github/workflows/update-pixi-lockfile.yml b/.github/workflows/update-pixi-lockfile.yml new file mode 100644 index 000000000..b1e69f4f9 --- /dev/null +++ b/.github/workflows/update-pixi-lockfile.yml @@ -0,0 +1,38 @@ +name: Update pixi lockfile + +on: + schedule: + # At 04:00 on Monday + - cron: "0 4 * * 1" + # ...or manually + workflow_dispatch: + +jobs: + update-pixi-lockfile: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + base_branch: ["develop", "stable"] + permissions: + contents: write + pull-requests: write + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ matrix.base_branch }} + - name: Remove old lockfile + run: rm pixi.lock + - name: Generate new lockfile + uses: prefix-dev/setup-pixi@v0.5.1 + with: + pixi-version: latest + cache: false + - name: Create or update pull request + uses: peter-evans/create-pull-request@v6 + with: + add-paths: pixi.lock + branch: automation/update-pixi-lockfile + commit-message: Update pixi lockfile + title: Update pixi lockfile + body: "" diff --git a/.gitignore b/.gitignore index 9671caf94..2081f5d4b 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,6 @@ build/ mss.egg-info/ tutorials/recordings tutorials/cursor_image.png +# pixi environments +.pixi + diff --git a/localbuild/README.rst b/localbuild/README.rst deleted file mode 100644 index 099aa54ff..000000000 --- a/localbuild/README.rst +++ /dev/null @@ -1,5 +0,0 @@ -localbuild is mainly a copy of the build instructions from -https://github.com/conda-forge/mss-feedstock/tree/master/recipe - -You may want to copy this directory to a different directory on your system -and alter it for your needs. diff --git a/localbuild/bld.bat b/localbuild/bld.bat deleted file mode 100644 index 3dec9e8b9..000000000 --- a/localbuild/bld.bat +++ /dev/null @@ -1,7 +0,0 @@ -mkdir "%PREFIX%\Menu" -copy /Y "%RECIPE_DIR%\menu.json" "%PREFIX%\Menu\%PKG_NAME%_menu.json" -copy /Y "%RECIPE_DIR%\msui.ico" "%PREFIX%\Menu\msui.ico" - -; conda-build issue 5311, currently we can't build for windows with pip install -%PYTHON% setup.py install --single-version-externally-managed --record record.txt -if errorlevel 1 exit 1 diff --git a/localbuild/build.sh b/localbuild/build.sh deleted file mode 100644 index ab507fa63..000000000 --- a/localbuild/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -mkdir -p "${PREFIX}/Menu" -cp "${RECIPE_DIR}/menu.json" "${PREFIX}/Menu/${PKG_NAME}_menu.json" -cp "${RECIPE_DIR}/msui.png" "${PREFIX}/Menu/msui.png" - -"${PYTHON}" -m pip install . --no-deps -vv diff --git a/localbuild/menu.json b/localbuild/menu.json deleted file mode 100644 index a39a7cdf6..000000000 --- a/localbuild/menu.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft-07/schema", - "$id": "https://schemas.conda.io/menuinst-1.schema.json", - "menu_name": "Mission Support System", - "menu_items": [ - { - "name": "MSUI ({{ ENV_NAME }})", - "description": "Mission Support System MSUI", - "activate": true, - "icon": "{{ MENU_DIR }}/msui.{{ ICON_EXT }}", - "command": [ - "{{ PYTHON }}", - "{{ PREFIX }}/bin/msui" - ], - "platforms": { - "win": { - "command": [ - "{{ PYTHON }}", - "{{ SCRIPTS_DIR }}/msui-script.py" - ], - "file_extensions": [".menuinst"] - }, - "linux": { - "Categories": ["Internet", "Science"], - "Keywords": ["documentation", "information"], - "StartupNotify": true, - "MimeType": ["application/x-menuinst"], - "glob_patterns": { - "application/x-menuinst": "*.menuinst" - } - }, - "osx": { - "CFBundleDocumentTypes": [ - { - "CFBundleTypeName": "org.conda.menuinst.msui", - "CFBundleTypeRole": "Viewer", - "LSItemContentTypes": ["org.conda.menuinst.main-file-uti"], - "LSHandlerRank": "Default" - } - ], - "UTExportedTypeDeclarations": [ - { - "UTTypeConformsTo": ["public.data", "public.content"], - "UTTypeIdentifier": "org.conda.menuinst.main-file-uti", - "UTTypeTagSpecification": { - "public.filename-extension": ["menuinst"] - } - } - ] - } - } - } - ] -} diff --git a/localbuild/meta.yaml b/localbuild/meta.yaml deleted file mode 100644 index 9e2b52fdc..000000000 --- a/localbuild/meta.yaml +++ /dev/null @@ -1,129 +0,0 @@ -{% set version = "alpha" %} - -package: - name: mss - version: {{ version }} - -source: - path: ../ - -build: - number: 1000 - -requirements: - build: - - python - - pip - - setuptools - - future - - menuinst >=2.0.2 - host: - - python - - setuptools - - pip - - future - run: - - python - - future - - defusedxml - - basemap >=1.3.3 - - chameleon - - execnet - - fastkml >=0.11 - - shapely >=2.0.0 - - pygeoif <1.0.0 - - isodate - - lxml - - netcdf4 - - hdf4 - - pillow - - pyqt >=5.15.0 - - qt >=5.15.0 - - requests >=2.31.0 - - scipy - - skyfield >=1.12 - - skyfield-data >=6 - - tk - - owslib >=0.24 - - unicodecsv - - fs_filepicker - - cftime >=1.0.1 - - matplotlib >=3.5.3 - - itsdangerous - - pyjwt - - flask >=2.3.2 - - flask-httpauth - - flask-mail - - flask-migrate - - werkzeug >=2.2.3, <3.0.0 - - flask-socketio >=5.1.0 - - flask-sqlalchemy >=3.0.0 - - flask-cors - - passlib - - gitpython - - git - - psycopg2 - - PyMySQL >=0.9.3 - - validate_email - - multidict - - pint - - python-socketio >=5 - - python-engineio >=4 - - markdown - - xstatic - - xstatic-jquery - - xstatic-bootstrap - - gpxpy >=1.4.2 - - metpy - - pycountry - - websocket-client - - libtiff - - flask-wtf - - email_validator - - keyring - - dbus-python # [not win] - - python-slugify - - flask-login - - pysaml2 - - libxmlsec1 # [not win] - run_constrained: - - menuinst >=2.0.2 - -test: - imports: - - mslib - commands: - - mswms -h - - mswms_demodata -h - - msui -h - - mscolab -h - - mssautoplot --help - - msidp -h # [not win] - -about: - summary: 'A client/server application developed in the community to collaboratively create flight plans based on model data.' - home: https://github.com/Open-MSS/MSS - license: "Apache-2.0" - license_family: "APACHE" - license_file: LICENSE - description: | - MSS - Mission Support System - - Documentation: - * https://mss.rtfd.io - * https://gmd.copernicus.org/articles/15/8983/2022/gmd-15-8983-2022.pdf - * http://www.geosci-model-dev.net/5/55/2012/gmd-5-55-2012.pdf - - Software for planning research Aircraft Missions. - For discussion of the possibilities of the research flights, - the Mission Support System (MSS) was developed. - This software helps to review a big amount of metereological and - model data by viewing the forecasted parameters of interest along possible regions - of a proposed flight path. Data and possible flight paths can - be displayed on a hoizontal view (map projection) or on a vertical - view (along the proposed flight path). Flight paths can be constructed - and modified on these views. Exchange through a waypoint table is also possible. - -extra: - recipe-maintainers: - - ReimarBauer diff --git a/localbuild/msui.ico b/localbuild/msui.ico deleted file mode 100644 index 5479fdbb98d212a2c7a7732382d7632d9a5a08ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2462 zcmb7GX;4#F6n?ao-K8^~YE`x%L8My3CYz#=1O!qIAWBFCL&6eXmPaCnCG3^}A_$Cj zQN*Q-ZD*X;`lD{+($*2Do$2Ou2W`h~#uzUNqP8107h$^kVQym3mgEXm%f z*6f(HHtwb822j&k3;mE1+Jn*1j7m^^I7}2a*B*$bJq1j=Y^bT<4WmJTI;ZIOknk)g zfzRQlV-gmY$_0g_%#W6?*|TwDIbjdL($WKCe*sEHB2j!KgfK&Ausu51+SVh%(Ctk^ zrA0uEItONZC)6c%lgtMINKFto|Jh{D&p$RcbA#cgL1#eCmO>a>tI32L$E1=mSz|_8<;xqvA?}U$UOf18u;mzX1d{|xAi^_5yR#g-#D;J_QQmV9 zLepLl<{clOm{gX-lxGyrK@@dfhTMG%n_OpLs_TKUIS-Ai17Xh!gnq|T6c0zDw4(@o z!)};`RyfxNpirNA+PH@DBQOp@A?&m zjUNyW<-Oj3hSY^kNbh@XDyBE?}J)kh!1 zy38`(w>Ax+qU9*E+&2jSmZ(FqYaCk}j>AIlYB4)er&xie1b^_=wGg(b&?4iotz3nK zv!9XeV>6O;_KN5u8^t-DuobGBhb-62TaQEO{%sn6N{6!Z2WaaLQ_O~7u5-hzR>GLC zhMAsEZwy$7S#G)}V0DPGqcKHg_WrV|Qa)2it zsyE(40@>`b|8f63DZW!NxCMFl9ccA!aK(GWM)vc>8x8sCXis0!B#kejE*Gs~2 za#Ij`*Dip4Lp%(QHe?+;34QN~r@rp8`g)WfSZx<~oF%{9#mhTChLE`u=4t`MmI{2W zi^4cz|Dp{OWt{HgItjkiNbqjnVzg!vr&RF7rF&-a1LGiH;v&ZRjGK7Zer)cz1pO90 zY&s2I=eOayPC5(Qql4W=ouucjawRO9B2<=EK%P@^)7M`XyFlc(AdYb+lGNCTEj*FO_3NoTm?@bU_w`+RR{SXzTzS$f+jbi>*_1UvP>w)z$fIm|dH=tW`k zc4xD=$IdWrC;#4LeTDT{j$^%c_K-@~ajRaEbCQtMxdDL*abka`-pzWriF&!YX$ThA zuqbTK)*kKe{sA%>A$oD#yxG7{{O9>Tk%|0GH8|$sD#j;l&eo>CPbdfH{^R$_LoS_r f!1-_!B(2=j(?Vwa&(TVzUziq#^?;ktG3-A9+;%$| diff --git a/localbuild/msui.png b/localbuild/msui.png deleted file mode 100644 index 0b6f25cda82fc4826a0d0e62d98a616f93508e42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1911 zcmV--2Z;EIP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 zVoOIv0RI600RN!9r;`8x00(qQO+^Rj0~H1dG7CI-NdN!_dr3q=R7l5tmP>FOSrvxA z+uiDx)UssDwk-KA+i{%4c{q~^lSx8`O%@OysoAk$!Mrg*|9{T?&qMGMO9OQ< z_C+HndU|`lo$T&>!;Hs9bzM&YxUO5ZYW1aZp){S}%wJ!$8@Ehwaxd{EK0mxMK8_X% z)2P(j+){pgU~KpYgJZ+r=t`%$%veNdnu-v6*QJzro{v>;$YO50xVpIf*C&sj{A|{; zKaGQ|y$oPT2r5$QhqL298r?Ve*1<#BbhIssCp9WwoN_CPD% zsRE#ifUw%2H@wAUY@VUWDnk0KKVGxuKAySqc&+gBzU+__cr8yI09K^r{a^j!`^V3m z{7H7-km-8xU>j^L%iZ0hI6>qY8v#fJZlF_gI(gCEd8YsJSoNj*)UD(Ly*?bBnQAB_f=*(7+^N-vS zK6orq;wkgMSn9jhPI=s~*HG7+j{f@O{&yx%96hHSAtv-92lWzNMvLDrB$-U+=recO zZ1&Q^cmYNrgg^u}n$%kqVdDa?&_5iV&d42Ce!6)%?F0(iV7gvcTD|tP=PUf}jl< z_l!l+WHIb_>BE>1KUOiD6CYxE8lpBA7%Hyn(xgX^?m z#$#ieuImYeAS8U$FSy?eLscYiPSm(vg!NL3OvvWsSd>gc(A~R1|41I8Jb$7n0b0mI z2!XEa3FWyazT880J;5!zn|OPiR|f*nbm9?}8w(+>ekO4ADtaj3|C!>tZWSqUrHcO) zMgUD8X6+;uHOWRr^6qSeo9hX(Jq80E@Zov~fB2{$$NeI;AW-mH8d6GJ*R3j6t-k1c zKDG?ekRb%%Ny!~M!6seIZ3=#UJI4K;FkPLyBqEY?S)UUbi|KoPe72ZCRrXRVgv50W zoTh>AdswylqEarD-fz?`92uhEN0CS#*fADbDgOB=#MQeote8XJ*Vc(#*ye6W9h86z z`yJXtl501Iu$#)W6j#e}yp~R*Zc#3jrqwpPVW)a~F0^-dnXXi5wmd$lrn&wg%1m7$ zHdUtmOc`~+#WMt3F`wO5i_t)*-}ISYj5F9>Wu(`}adcJ}hjE=So6D>D`G4PeN6mSD zzE{^L(*5aUR-o~5-sI04VRHR8iL+%wBTb|ZNU_IKfkG^xBwY>)m1v-FYc!E39DO@=I;`9y<_s7pf)km9LYq#)`k^fq)3)x-3e0yuV6mgMO+n{k;QIlb46bM+T#26c4CqJ|*3wq3lhCh%ZRCG}=8C4X`bnCksm} z4_C^6sZ^>zRR~sYtuOCQzs~`xKotCkyY*RbV{6*3)s4Up`a+r(jVmFM@%W=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- kind: conda + name: alabaster + version: 0.7.16 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 + md5: def531a3ac77b7fb8c21d17bb5d0badb + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 18365 + timestamp: 1704848898483 +- kind: conda + name: alembic + version: 1.13.1 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/alembic-1.13.1-pyhd8ed1ab_1.conda + sha256: e4bc9aa5a6e866461274826bb750407a407fed9207a5adb70bf727f6addd7fe6 + md5: 7b7b0062b0de9f3f71502d31215fcbbb + depends: + - importlib-metadata + - importlib_resources + - mako + - python >=3.8 + - sqlalchemy >=1.3.0 + - typing-extensions >=4 + license: MIT + license_family: MIT + size: 159120 + timestamp: 1705180125894 +- kind: conda + name: alsa-lib + version: 1.2.8 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2 + sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + md5: be733e69048951df1e4b4b7bb8c7666f + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + license_family: GPL + size: 592320 + timestamp: 1666699031168 +- kind: conda + name: anyio + version: 3.7.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/anyio-3.7.1-pyhd8ed1ab_0.conda + sha256: 62637ac498bcf47783cbf4f48e9b09e4e2f5a6ad42f43ca8f632c353827b94f4 + md5: 7b517e7a6f0790337906c055aa97ca49 + depends: + - exceptiongroup + - idna >=2.8 + - python >=3.7 + - sniffio >=1.1 + - typing_extensions + constrains: + - trio >=0.16,<0.22 + license: MIT + license_family: MIT + size: 96707 + timestamp: 1688651250785 +- kind: conda + name: appdirs + version: 1.4.4 + build: pyh9f0ad1d_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2 + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + md5: 5f095bc6454094e96f146491fd03633b + depends: + - python + license: MIT + license_family: MIT + size: 12840 + timestamp: 1603108499239 +- kind: conda + name: argon2-cffi + version: 23.1.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda + sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677 + md5: 3afef1f55a1366b4d3b6a0d92e2235e4 + depends: + - argon2-cffi-bindings + - python >=3.7 + - typing-extensions + constrains: + - argon2_cffi ==999 + license: MIT + license_family: MIT + size: 18602 + timestamp: 1692818472638 +- kind: conda + name: argon2-cffi-bindings + version: 21.2.0 + build: py311h2725bcf_4 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py311h2725bcf_4.conda + sha256: be27659496bcb660fc9c3f5f74128a7bb090336897e9c7cfbcc55ae66f13b8d8 + md5: e2aba0ad0f533ee73f9d4330d2e32549 + depends: + - cffi >=1.0.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 32542 + timestamp: 1695386887016 +- kind: conda + name: argon2-cffi-bindings + version: 21.2.0 + build: py311h459d7ec_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311h459d7ec_4.conda + sha256: 104194af519b4e667aa5341068b94b521a791aaaa05ec0091f8f0bdba43a60ac + md5: de5b16869a430949b02161b04b844a30 + depends: + - cffi >=1.0.1 + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 34955 + timestamp: 1695386703660 +- kind: conda + name: argon2-cffi-bindings + version: 21.2.0 + build: py311ha68e1ae_4 + build_number: 4 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py311ha68e1ae_4.conda + sha256: 0b8eb99e7ac6b409abbb5f3b9733f883865ff4314e85146380f072f6f6234929 + md5: e95c947541bf1cb821ea4a6bf7d5794c + depends: + - cffi >=1.0.1 + - 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 + size: 34687 + timestamp: 1695387285415 +- kind: conda + name: argon2-cffi-bindings + version: 21.2.0 + build: py311heffc1b2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py311heffc1b2_4.conda + sha256: b9ab23e4f0d615432949d4b93723bd04b3c4aef725aa03b1e993903265c1b975 + md5: e9a56c22ca1215ed3a7b6a9e8c4e6f07 + depends: + - cffi >=1.0.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 34126 + timestamp: 1695386994453 +- kind: conda + name: attr + version: 2.5.1 + build: h166bdaf_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + md5: d9c69a24ad678ffce24c6543a0176b00 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 71042 + timestamp: 1660065501192 +- 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 + size: 54582 + timestamp: 1704011393776 +- kind: conda + name: babel + version: 2.14.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda + sha256: 8584e3da58e92b72641c89ff9b98c51f0d5dbe76e527867804cbdf03ac91d8e6 + md5: 9669586875baeced8fc30c0826c3270e + depends: + - python >=3.7 + - pytz + - setuptools + license: BSD-3-Clause + license_family: BSD + size: 7609750 + timestamp: 1702422720584 +- kind: conda + name: basemap + version: 1.4.1 + build: np126py311h65d9f2d_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/basemap-1.4.1-np126py311h65d9f2d_0.conda + sha256: c83a9cfe38a859da937015023dc5feece92381e3fa1b45e92643e75245cc7bff + md5: 7fa9ef717148075c20e7bacf9e740971 + depends: + - basemap-data + - geos >=3.12.1,<3.12.2.0a0 + - matplotlib-base >=1.5,<3.9 + - numpy >=1.26,<1.27.0a0 + - numpy >=1.26.4,<2.0a0 + - pyproj >=1.9.3,<3.7.0 + - pyshp >=1.2.0,<2.4.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: MIT + license_family: MIT + size: 298786 + timestamp: 1708019669463 +- kind: conda + name: basemap + version: 1.4.1 + build: np126py311hb1fe3e7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/basemap-1.4.1-np126py311hb1fe3e7_0.conda + sha256: 3d57e7b295c497c058ac2041e0a78fe031eb4e2a0389121b1e047c8a4b3db8d0 + md5: de782d1601055a3a00ec2434bb597407 + depends: + - basemap-data + - geos >=3.12.1,<3.12.2.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - matplotlib-base >=1.5,<3.9 + - numpy >=1.26,<1.27.0a0 + - numpy >=1.26.4,<2.0a0 + - pyproj >=1.9.3,<3.7.0 + - pyshp >=1.2.0,<2.4.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 193978 + timestamp: 1708019032522 +- kind: conda + name: basemap + version: 1.4.1 + build: np126py311heda5c05_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/basemap-1.4.1-np126py311heda5c05_0.conda + sha256: 7b9f64ef85756bafd3239e4a694756d0b414ec117b8bdc220e86966ea51ef6ec + md5: b6a11c677eb9b94200abbe0742b8051c + depends: + - basemap-data + - geos >=3.12.1,<3.12.2.0a0 + - libcxx >=16 + - matplotlib-base >=1.5,<3.9 + - numpy >=1.26,<1.27.0a0 + - numpy >=1.26.4,<2.0a0 + - pyproj >=1.9.3,<3.7.0 + - pyshp >=1.2.0,<2.4.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 186039 + timestamp: 1708019103190 +- kind: conda + name: basemap + version: 1.4.1 + build: np126py311hfe83556_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/basemap-1.4.1-np126py311hfe83556_0.conda + sha256: c5ff721a248a982ee79c29dcab0a027439493ba5ec617161bc1e708bfccae62b + md5: 55580d69fd480059b2a3c7a89578f4ed + depends: + - basemap-data + - geos >=3.12.1,<3.12.2.0a0 + - libcxx >=16 + - matplotlib-base >=1.5,<3.9 + - numpy >=1.26,<1.27.0a0 + - numpy >=1.26.4,<2.0a0 + - pyproj >=1.9.3,<3.7.0 + - pyshp >=1.2.0,<2.4.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 187517 + timestamp: 1708019415990 +- kind: conda + name: basemap-data + version: 1.3.2 + build: pyhd8ed1ab_3 + build_number: 3 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/basemap-data-1.3.2-pyhd8ed1ab_3.conda + sha256: d7ada152f0eed21cec35e9a0c355f66fa2803e1342a32738499fbce07823ea71 + md5: 0cf2bde421530ef9f2dad055de9ba099 + depends: + - python + license: LGPL-3.0-or-later + license_family: LGPL + size: 25275623 + timestamp: 1680540588060 +- kind: conda + name: bcrypt + version: 4.1.2 + build: py311h46250e7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bcrypt-4.1.2-py311h46250e7_0.conda + sha256: 78119e6cb92e1d9299fff1545d8d5c1863a6719414ace1e040ae0675d006a9dc + md5: 16008526cf238deb71d97a1c58a9e850 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 579698 + timestamp: 1702664063938 +- kind: conda + name: bcrypt + version: 4.1.2 + build: py311h5e0f0e4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bcrypt-4.1.2-py311h5e0f0e4_0.conda + sha256: 80b380ae135a67e26f536be2a5672c846bcd3a0f0360b4e42cddc4dd101e336b + md5: 7e407955a588b0f85695b52f0d5af4d8 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 239930 + timestamp: 1702664301416 +- kind: conda + name: bcrypt + version: 4.1.2 + build: py311h94f323b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bcrypt-4.1.2-py311h94f323b_0.conda + sha256: 6945b00c12368dd62c79f81d011b8de949264021cb435f510be0b08ba338b3cc + md5: 7eb013e5b6bacb9444055343c5c4d813 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 232268 + timestamp: 1702664653037 +- kind: conda + name: bcrypt + version: 4.1.2 + build: py311hc37eb10_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bcrypt-4.1.2-py311hc37eb10_0.conda + sha256: a4fe67a2a67181275a06cc451c0fc9f99a9f8f285de3912b869e562be2bd5aa7 + md5: 0d43e07d003f3682e16af18a1fb0fe5f + 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: Apache-2.0 + license_family: Apache + size: 151190 + timestamp: 1702664837466 +- 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 + size: 118200 + timestamp: 1705564819537 +- kind: conda + name: bidict + version: 0.23.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda + sha256: cc7af340b9c99fb170032e103546329cd7c280d28ceca74468e19dd8b0539531 + md5: c9916c3975b19f470218f415701d6362 + depends: + - python >=3.8 + license: MPL-2.0 + license_family: MOZILLA + size: 31346 + timestamp: 1708298386480 +- kind: conda + name: blinker + version: 1.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.7.0-pyhd8ed1ab_0.conda + sha256: c8d72c2af4f57898dfd5e4c62ae67f7fea1490a37c8b6855460a170d61591177 + md5: 550da20b2c2e38be9cc44bb819fda5d5 + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 17886 + timestamp: 1698890303249 +- kind: conda + name: blosc + version: 1.21.5 + build: hdccc3a2_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda + sha256: 73cee35e5366ce998ef36ccccb4c11ef9ead297886cc08269379f91539131288 + md5: 77a5cea2ce92907b7d1e7954457a526a + depends: + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 50069 + timestamp: 1693657396550 +- kind: conda + name: boa + version: 0.15.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/boa-0.15.1-pyhd8ed1ab_0.conda + sha256: f81c34e76a7de7871541c1ee040681583663b9e27e3fbedc0e343999a200fbd6 + md5: a41242b2817cd309e29a0d997ea9a944 + depends: + - conda-build >=3.24,<3.26 + - dataclasses + - jinja2 + - joblib + - json5 + - jsonschema + - mamba >=1.0,<=1.4.2 + - prompt_toolkit + - python >=3.6 + - rich + - ruamel.yaml + - watchgod + license: BSD-3-Clause + license_family: BSD + size: 65625 + timestamp: 1687351317962 +- kind: conda + name: boltons + version: 23.1.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/boltons-23.1.1-pyhd8ed1ab_0.conda + sha256: 0ff5173f6b20a5c95401aa52d10dbdc05c322fc568dc7417c6f76cf68e706d16 + md5: 56febe65315cc388a5d20adf2b39a74d + depends: + - python ==2.7.*|>=3.7 + license: BSD-3-Clause + license_family: BSD + size: 304176 + timestamp: 1703154832035 +- kind: conda + name: brotli + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda + sha256: 4bf66d450be5d3f9ebe029b50f818d088b1ef9666b1f19e90c85479c77bbdcde + md5: 9272dd3b19c4e8212f8542cefd5c3d67 + depends: + - brotli-bin 1.1.0 h0dc2134_1 + - libbrotlidec 1.1.0 h0dc2134_1 + - libbrotlienc 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + size: 19530 + timestamp: 1695990310168 +- kind: conda + name: brotli + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hb547adb_1.conda + sha256: 62d1587deab752fcee07adc371eb20fcadc09f72c0c85399c22b637ca858020f + md5: a33aa58d448cbc054f887e39dd1dfaea + depends: + - brotli-bin 1.1.0 hb547adb_1 + - libbrotlidec 1.1.0 hb547adb_1 + - libbrotlienc 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 19506 + timestamp: 1695990588610 +- kind: conda + name: brotli + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-hcfcfb64_1.conda + sha256: b927c95121c5f3d82fe084730281739fb04621afebf2d9f05711a0f42d27e326 + md5: f47f6db2528e38321fb00ae31674c133 + depends: + - brotli-bin 1.1.0 hcfcfb64_1 + - libbrotlidec 1.1.0 hcfcfb64_1 + - libbrotlienc 1.1.0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 19772 + timestamp: 1695990547936 +- kind: conda + name: brotli + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda + sha256: f2d918d351edd06c55a6c2d84b488fe392f85ea018ff227daac07db22b408f6b + md5: f27a24d46e3ea7b70a1f98e50c62508f + depends: + - brotli-bin 1.1.0 hd590300_1 + - libbrotlidec 1.1.0 hd590300_1 + - libbrotlienc 1.1.0 hd590300_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 19383 + timestamp: 1695990069230 +- kind: conda + name: brotli-bin + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda + sha256: 7ca3cfb4c5df314ed481301335387ab2b2ee651e2c74fbb15bacc795c664a5f1 + md5: ece565c215adcc47fc1db4e651ee094b + depends: + - libbrotlidec 1.1.0 h0dc2134_1 + - libbrotlienc 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + size: 16660 + timestamp: 1695990286737 +- kind: conda + name: brotli-bin + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hb547adb_1.conda + sha256: 8fbfc2834606292016f2faffac67deea4c5cdbc21a61169f0b355e1600105a24 + md5: 990d04f8c017b1b77103f9a7730a5f12 + depends: + - libbrotlidec 1.1.0 hb547adb_1 + - libbrotlienc 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 17001 + timestamp: 1695990551239 +- kind: conda + name: brotli-bin + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-hcfcfb64_1.conda + sha256: 4fbcb8f94acc97b2b04adbc64e304acd7c06fa0cf01953527bddae46091cc942 + md5: 0105229d7c5fabaa840043a86c10ec64 + depends: + - libbrotlidec 1.1.0 hcfcfb64_1 + - libbrotlienc 1.1.0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 20885 + timestamp: 1695990517506 +- kind: conda + name: brotli-bin + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda + sha256: a641abfbaec54f454c8434061fffa7fdaa9c695e8a5a400ed96b4f07c0c00677 + md5: 39f910d205726805a958da408ca194ba + depends: + - libbrotlidec 1.1.0 hd590300_1 + - libbrotlienc 1.1.0 hd590300_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 18980 + timestamp: 1695990054140 +- 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 + 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 + 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 + 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 + size: 366864 + timestamp: 1695990449997 +- 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 + size: 127885 + timestamp: 1699280178474 +- 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 + size: 122325 + timestamp: 1699280294368 +- 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 + 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 + size: 254228 + timestamp: 1699279927352 +- kind: conda + name: c-ares + version: 1.27.0 + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.27.0-h10d778d_0.conda + sha256: a53e14c071dcce756ce80673f2a90a1c6dff695a26bc9f5e54d56b55e76ee3dc + md5: 713dd57081dfe8535eb961b45ed26a0c + license: MIT + license_family: MIT + size: 148568 + timestamp: 1708685147963 +- kind: conda + name: c-ares + version: 1.27.0 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.27.0-h93a5062_0.conda + sha256: a168e53ee462980cd78b324e055afdd00080ded378ca974969a0917eb4ae1ccb + md5: d3579ba506791b1f8f8a16cfc2885326 + license: MIT + license_family: MIT + size: 145697 + timestamp: 1708685057216 +- kind: conda + name: c-ares + version: 1.27.0 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.27.0-hd590300_0.conda + sha256: 2a5866b19d28cb963fab291a62ff1c884291b9d6f59de14643e52f103e255749 + md5: f6afff0e9ee08d2f1b897881a4f38cdb + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 163578 + timestamp: 1708684786032 +- 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 + 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 + 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 + 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 + size: 155725 + timestamp: 1706844034242 +- kind: conda + name: cachetools + version: 5.3.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.3-pyhd8ed1ab_0.conda + sha256: 561b860cba68da76cab8c6504bb5bfb4756ecb2ec9f124d0c17e76caad4f6dfd + md5: cd4c26c702a9bcdc70ff05b609ddacbe + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 14665 + timestamp: 1708987821240 +- kind: conda + name: cairo + version: 1.16.0 + build: ha61ee94_1014 + build_number: 1014 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2 + sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 + md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 + depends: + - fontconfig >=2.13.96,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=70.1,<71.0a0 + - libgcc-ng >=12 + - libglib >=2.72.1,<3.0a0 + - libpng >=1.6.38,<1.7.0a0 + - libxcb >=1.13,<1.14.0a0 + - libzlib >=1.2.12,<1.3.0a0 + - pixman >=0.40.0,<1.0a0 + - xorg-libice + - xorg-libsm + - xorg-libx11 + - xorg-libxext + - xorg-libxrender + - zlib >=1.2.12,<1.3.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 1576122 + timestamp: 1663568213559 +- kind: conda + name: cartopy + version: 0.22.0 + build: py311h1eadf79_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cartopy-0.22.0-py311h1eadf79_1.conda + sha256: c9e6ba755f0c845ca01e0fc3d694f4411fa1f4a0daa7c469010ad6536d516e5e + md5: 49bae550b7c9212b74da2f1345abd57f + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - matplotlib-base >=3.4 + - numpy >=1.23.5,<2.0a0 + - packaging >=20 + - pyproj >=3.1.0 + - pyshp >=2.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - shapely >=1.7 + license: LGPL-3.0-or-later + license_family: LGPL + size: 1925408 + timestamp: 1698173141300 +- kind: conda + name: cartopy + version: 0.22.0 + build: py311h320fe9a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cartopy-0.22.0-py311h320fe9a_1.conda + sha256: ff2d3bc5c8d7e6b4db5bbfde7e69045298e8233182e11ce96b1a2af9d5bfa2f8 + md5: 10d1806e20da040c58c36deddf51c70c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - matplotlib-base >=3.4 + - numpy >=1.23.5,<2.0a0 + - packaging >=20 + - pyproj >=3.1.0 + - pyshp >=2.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - shapely >=1.7 + license: LGPL-3.0-or-later + license_family: LGPL + size: 1945477 + timestamp: 1698172944510 +- kind: conda + name: cartopy + version: 0.22.0 + build: py311h6e08293_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cartopy-0.22.0-py311h6e08293_1.conda + sha256: a3e793a0f2c93cfcfb1c86bb021577fd3b104e3f1b88f25fd391fa2f9cdb2c81 + md5: 2e0905b3be749e516c1111b11545b447 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - matplotlib-base >=3.4 + - numpy >=1.23.5,<2.0a0 + - packaging >=20 + - pyproj >=3.1.0 + - pyshp >=2.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - shapely >=1.7 + license: LGPL-3.0-or-later + license_family: LGPL + size: 1923188 + timestamp: 1698173237994 +- kind: conda + name: cartopy + version: 0.22.0 + build: py311hf63dbb6_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cartopy-0.22.0-py311hf63dbb6_1.conda + sha256: da2c45702e519659e937432e7429e89feee9653ee7f7ed0d7f7898eed48fcc8a + md5: bb377a8ca27a0f3f99e37676da02f78a + depends: + - matplotlib-base >=3.4 + - numpy >=1.23.5,<2.0a0 + - packaging >=20 + - pyproj >=3.1.0 + - pyshp >=2.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - shapely >=1.7 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-or-later + license_family: LGPL + size: 1935485 + timestamp: 1698173419683 +- kind: conda + name: cctools + version: 973.0.1 + build: hd1ac623_15 + build_number: 15 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hd1ac623_15.conda + sha256: 19355c566c376acba7beed4c6f68a2c09fa1b5bbbbcacc6375c2fcb90faf6063 + md5: bea60d4b6c7112c9d906cd8380498c99 + depends: + - cctools_osx-arm64 973.0.1 h2a25c60_15 + - ld64 609 h89fa09d_15 + - libllvm15 >=15.0.7,<15.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21948 + timestamp: 1697075946023 +- kind: conda + name: cctools + version: 973.0.1 + build: hd9ad811_15 + build_number: 15 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-hd9ad811_15.conda + sha256: 6fc0e86e24687cde3476e04f001ac1edf5813c0caa15b72c913b660533428987 + md5: 00374d616829d1e4d2266e571147848a + depends: + - cctools_osx-64 973.0.1 habff3f6_15 + - ld64 609 ha91a046_15 + - libllvm15 >=15.0.7,<15.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21917 + timestamp: 1697075797642 +- kind: conda + name: cctools_osx-64 + version: 973.0.1 + build: habff3f6_15 + build_number: 15 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-habff3f6_15.conda + sha256: ca00afdafb22d6c363921f1c81b35fabd9b7eefee7e1ea2ad4f0fe920b63d035 + md5: 015a19b3900b9fce20a48551e66f7699 + depends: + - ld64_osx-64 >=609,<610.0a0 + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - sigtool + constrains: + - cctools 973.0.1.* + - ld64 609.* + - clang 15.0.* + license: APSL-2.0 + license_family: Other + size: 1116869 + timestamp: 1697075736696 +- kind: conda + name: cctools_osx-arm64 + version: 973.0.1 + build: h2a25c60_15 + build_number: 15 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-h2a25c60_15.conda + sha256: 723e1888736b0376b7ca16cc1a0e96a038aa92eabb6b15978cfa3ce7586767f0 + md5: e177015a6a6500334b9cac9144fc657d + depends: + - ld64_osx-arm64 >=609,<610.0a0 + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - sigtool + constrains: + - clang 15.0.* + - ld64 609.* + - cctools 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1123180 + timestamp: 1697075906785 +- 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 + size: 160559 + timestamp: 1707022289175 +- 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 + 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 + 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 + 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 + size: 289932 + timestamp: 1696002096156 +- kind: conda + name: cftime + version: 1.6.3 + build: py311h1f0f07a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.3-py311h1f0f07a_0.conda + sha256: 733698aeaba7e86de82300e016f5a7ee16875d5cf21b927fe6c6f183e6f0d57f + md5: b7e6d52b39e199238c3400cafaabafb3 + depends: + - libgcc-ng >=12 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 248470 + timestamp: 1698610153918 +- kind: conda + name: cftime + version: 1.6.3 + build: py311h59ca53f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cftime-1.6.3-py311h59ca53f_0.conda + sha256: 845a5bbafacf1a47fd4682cd558e36d98ee7fa4de9ebfa0ff605c9e9db3c441f + md5: a1eeb8f4a2bf8b01c4b7ef15dad96e4b + depends: + - numpy >=1.23.5,<2.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 + size: 186745 + timestamp: 1698610652141 +- kind: conda + name: cftime + version: 1.6.3 + build: py311h9ea6feb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.3-py311h9ea6feb_0.conda + sha256: 662d97c84192831aa0322d46432dab89e549a89383fdccf90caed33edcffc009 + md5: a6953d69d4f0fbd72436b3b8cb51f04a + depends: + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 206114 + timestamp: 1698610333282 +- kind: conda + name: cftime + version: 1.6.3 + build: py311hc9a392d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.3-py311hc9a392d_0.conda + sha256: d3f434996bed1f94b193eaa6d74faf84860fa485ce1ae5e3dabb99053e9c7a98 + md5: 1ff674a61d45e398cc4bf75a116d6a32 + depends: + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 211864 + timestamp: 1698610262887 +- kind: conda + name: chameleon + version: 3.9.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/chameleon-3.9.1-pyhd8ed1ab_0.tar.bz2 + sha256: 5cd4a9b057217f6a4a9a35af671ea4cb0629270ac597491f7059b0a24dcce5aa + md5: 0482a922e75099b4dcc24654238448cd + depends: + - python !=3.0,!=3.1,!=3.2,!=3.3,!=3.4 + license: BSD-4-Clause + license_family: BSD + size: 59923 + timestamp: 1646139567609 +- 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 + 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 + 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 + 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 + size: 267330 + timestamp: 1695468986364 +- 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 + 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 + 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 + 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 + size: 25170 + timestamp: 1666700778190 +- kind: conda + name: conda + version: 23.3.1 + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-23.3.1-py311h1ea47a8_0.conda + sha256: 87cb9017d9a4cef89a464b4122c4fb43d6c360ac08cd6253c19a889c993fb0b5 + md5: c7c43588ddd735ccdacd918cd4ca5147 + depends: + - boltons >=23.0.0 + - conda-package-handling >=1.3.0 + - jsonpatch >=1.32 + - menuinst >=1.4.11,<2 + - packaging >=23.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - pyopenssl >=16.2.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - requests >=2.20.1,<3 + - ruamel.yaml >=0.11.14,<0.18 + - setuptools >=31.0.1 + - toolz >=0.8.1 + - tqdm >=4 + constrains: + - conda-env >=2.6 + - conda-libmamba-solver >=22.12.0 + - conda-content-trust >=0.1.1 + - conda-build >=3 + - cytoolz >=0.8.1 + license: BSD-3-Clause + license_family: BSD + size: 1281136 + timestamp: 1680188827979 +- kind: conda + name: conda + version: 23.3.1 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-23.3.1-py311h267d04e_0.conda + sha256: f8fdf602c9a2f234c6c5aae3b8d3574e14874579be58b3cf3a3853da87dbe36b + md5: 2ec17a00cc8643a18b9416b30e722df0 + depends: + - boltons >=23.0.0 + - conda-package-handling >=1.3.0 + - jsonpatch >=1.32 + - packaging >=23.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - pyopenssl >=16.2.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - requests >=2.20.1,<3 + - ruamel.yaml >=0.11.14,<0.18 + - setuptools >=31.0.1 + - toolz >=0.8.1 + - tqdm >=4 + constrains: + - conda-build >=3 + - conda-libmamba-solver >=22.12.0 + - cytoolz >=0.8.1 + - conda-content-trust >=0.1.1 + - conda-env >=2.6 + license: BSD-3-Clause + license_family: BSD + size: 1276576 + timestamp: 1680188644547 +- kind: conda + name: conda + version: 23.3.1 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-23.3.1-py311h38be061_0.conda + sha256: ded8e655cd5cdace2873b117a766321b3b4c0d4e94de7fd0439515aeb0db5a05 + md5: e738594d189c09bc2b54a250730f412c + depends: + - boltons >=23.0.0 + - conda-package-handling >=1.3.0 + - jsonpatch >=1.32 + - packaging >=23.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - pyopenssl >=16.2.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - requests >=2.20.1,<3 + - ruamel.yaml >=0.11.14,<0.18 + - setuptools >=31.0.1 + - toolz >=0.8.1 + - tqdm >=4 + constrains: + - cytoolz >=0.8.1 + - conda-env >=2.6 + - conda-libmamba-solver >=22.12.0 + - conda-content-trust >=0.1.1 + - conda-build >=3 + license: BSD-3-Clause + license_family: BSD + size: 1275861 + timestamp: 1680188377990 +- kind: conda + name: conda + version: 23.3.1 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-23.3.1-py311h6eed73b_0.conda + sha256: 9f485e38d7e85119d41d8526cd2d978c69193f56d2929cddf13a8652fd4e9e2a + md5: 1d570e1934c665f25eb19937f4d87302 + depends: + - boltons >=23.0.0 + - conda-package-handling >=1.3.0 + - jsonpatch >=1.32 + - packaging >=23.0 + - pluggy >=1.0.0 + - pycosat >=0.6.3 + - pyopenssl >=16.2.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - requests >=2.20.1,<3 + - ruamel.yaml >=0.11.14,<0.18 + - setuptools >=31.0.1 + - toolz >=0.8.1 + - tqdm >=4 + constrains: + - conda-libmamba-solver >=22.12.0 + - conda-build >=3 + - cytoolz >=0.8.1 + - conda-env >=2.6 + - conda-content-trust >=0.1.1 + license: BSD-3-Clause + license_family: BSD + size: 1277418 + timestamp: 1680188643663 +- kind: conda + name: conda-build + version: 3.25.0 + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-build-3.25.0-py311h1ea47a8_0.conda + sha256: e1a95aa3336de80d46ff63d5932a919c9a43a440166e612f9a4fff32e681c14d + md5: 7264a2f2ca448bbfc8073f8c46686ae0 + depends: + - beautifulsoup4 + - chardet + - conda >=4.13,<24.3.0a0 + - conda-index + - conda-package-handling >=1.3 + - filelock + - glob2 >=0.6 + - jinja2 + - m2-patch >=2.6 + - packaging + - pkginfo + - psutil + - py-lief <0.14.0a0 + - python >=3.11,<3.12.0a0 + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - six + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + size: 806620 + timestamp: 1685028589147 +- kind: conda + name: conda-build + version: 3.25.0 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-build-3.25.0-py311h267d04e_0.conda + sha256: 0269a43f7bab738f428196d4791fffc6ac74a0249f2a071d5764e04038c5ba36 + md5: ec583928d3f878d9d8c6c0ea6d600eb6 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=4.13,<24.3.0a0 + - conda-index + - conda-package-handling >=1.3 + - filelock + - glob2 >=0.6 + - jinja2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief <0.14.0a0 + - 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 + - six + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + size: 807134 + timestamp: 1685028422765 +- kind: conda + name: conda-build + version: 3.25.0 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-build-3.25.0-py311h38be061_0.conda + sha256: 605e8233678a960980b5cb1ba17393f84118bed8287d875df4e0fba137acf502 + md5: 824260ebad2d3b036b9ce7de703a8323 + depends: + - beautifulsoup4 + - chardet + - conda >=4.13,<24.3.0a0 + - conda-index + - conda-package-handling >=1.3 + - filelock + - glob2 >=0.6 + - jinja2 + - packaging + - patch >=2.6 + - patchelf + - pkginfo + - psutil + - py-lief <0.14.0a0 + - python >=3.11,<3.12.0a0 + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - six + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + size: 807561 + timestamp: 1685028207992 +- kind: conda + name: conda-build + version: 3.25.0 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-build-3.25.0-py311h6eed73b_0.conda + sha256: 4076fbded9689a034f16a144f46102e859aa260ce41aef1756fadd7426d64566 + md5: 165796d323204faf7af13b5396a228d6 + depends: + - beautifulsoup4 + - cctools + - chardet + - conda >=4.13,<24.3.0a0 + - conda-index + - conda-package-handling >=1.3 + - filelock + - glob2 >=0.6 + - jinja2 + - packaging + - patch >=2.6 + - pkginfo + - psutil + - py-lief <0.14.0a0 + - python >=3.11,<3.12.0a0 + - python-libarchive-c + - python_abi 3.11.* *_cp311 + - pytz + - pyyaml + - requests + - ripgrep + - six + - tqdm + constrains: + - conda-verify >=3.1.0 + license: BSD-3-Clause + license_family: BSD + size: 808246 + timestamp: 1685028580217 +- 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 + size: 176354 + timestamp: 1708062210737 +- 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 + size: 255143 + timestamp: 1691048232276 +- 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 + size: 19183 + timestamp: 1691009348105 +- kind: conda + name: conda-verify + version: 3.1.1 + build: py311h1ea47a8_1006 + build_number: 1006 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/conda-verify-3.1.1-py311h1ea47a8_1006.tar.bz2 + sha256: b6851ccd7c93db65286899c3bfea63cbb4502a8f372d92d43fa7869eaace1bb7 + md5: 62930f1451a75d4de38c3b6b12ef10de + depends: + - click + - future + - jinja2 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - pyyaml + - six + license: BSD-3-Clause + license_family: BSD + size: 63522 + timestamp: 1667050072699 +- kind: conda + name: conda-verify + version: 3.1.1 + build: py311h267d04e_1006 + build_number: 1006 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-verify-3.1.1-py311h267d04e_1006.tar.bz2 + sha256: 6e3c0d663fd8e78a138f79b65a2e01bf163263a9e55f8c9a58711d305a25b32f + md5: 6e6ec03943e42a8a6ac1a9181f7ade3c + depends: + - click + - future + - jinja2 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - pyyaml + - six + license: BSD-3-Clause + license_family: BSD + size: 44845 + timestamp: 1667050059088 +- kind: conda + name: conda-verify + version: 3.1.1 + build: py311h38be061_1006 + build_number: 1006 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/conda-verify-3.1.1-py311h38be061_1006.tar.bz2 + sha256: 2b2fb31b4a943987b90fae8dc3e93f180a258a5f5f09dc8aa494941708c2c4f0 + md5: 93c7f8b22b64d50069ad563e5298c11c + depends: + - click + - future + - jinja2 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - pyyaml + - six + license: BSD-3-Clause + license_family: BSD + size: 44436 + timestamp: 1667049914300 +- kind: conda + name: conda-verify + version: 3.1.1 + build: py311h6eed73b_1006 + build_number: 1006 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/conda-verify-3.1.1-py311h6eed73b_1006.tar.bz2 + sha256: 4ee82cc0cfaea652ca5cec2d75a6ed53cbbd2482f692665a68353c2aeb6393fe + md5: 862cc68d8218e23ee54af13d149478f8 + depends: + - click + - future + - jinja2 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - pyyaml + - six + license: BSD-3-Clause + license_family: BSD + size: 44452 + timestamp: 1667049952277 +- kind: conda + name: contourpy + version: 1.2.0 + build: py311h005e61a_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.2.0-py311h005e61a_0.conda + sha256: d043a1cc9157ee25319fa85271cba38fc4c51caf4d38354176659d95629d04ab + md5: 6e36537c6d0c16d2ee8ba8c3dd847662 + depends: + - numpy >=1.20,<2 + - 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 + size: 206078 + timestamp: 1699042419820 +- kind: conda + name: contourpy + version: 1.2.0 + build: py311h7bea37d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.2.0-py311h7bea37d_0.conda + sha256: 40bca4a644e0c0b0e6d58cef849ba02d4f218af715f7a5787d41845797f3b8a9 + md5: 6711c052d956af4973a16749236a0387 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - numpy >=1.20,<2 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 248078 + timestamp: 1699042040747 +- kind: conda + name: contourpy + version: 1.2.0 + build: py311h9547e67_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.2.0-py311h9547e67_0.conda + sha256: 2c76e2a970b74eef92ef9460aa705dbdc506dd59b7382bfbedce39d9c189d7f4 + md5: 40828c5b36ef52433e21f89943e09f33 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - numpy >=1.20,<2 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 255843 + timestamp: 1699041590533 +- kind: conda + name: contourpy + version: 1.2.0 + build: py311hd03642b_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.2.0-py311hd03642b_0.conda + sha256: 3ec341c3a33bbb7f60e9a96214e0e08c4ba9e4a553b18104194e7843abbb4ef4 + md5: c0fa0bea0af7ecdea23bf983655fa2d0 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - numpy >=1.20,<2 + - 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 + size: 240223 + timestamp: 1699041881051 +- kind: conda + name: coverage + version: 6.5.0 + build: py311h5547dcb_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/coverage-6.5.0-py311h5547dcb_1.tar.bz2 + sha256: e2953cf98b1746318ff9b708827e5218a8bf0e9ae8698023a3a74a843a1fdcee + md5: 5adc116748636d56a17e9068081db5ca + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tomli + license: Apache-2.0 + license_family: APACHE + size: 327071 + timestamp: 1666762771151 +- kind: conda + name: coverage + version: 6.5.0 + build: py311ha68e1ae_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/coverage-6.5.0-py311ha68e1ae_1.tar.bz2 + sha256: a70bda88da8691994c4d609e1e9b9392ea704fa4fdda616f0b4d61a7d124e74d + md5: 04ab691f2fea2ee16311087c2f2e0d1b + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tomli + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 342598 + timestamp: 1666762784772 +- kind: conda + name: coverage + version: 6.5.0 + build: py311hd4cff14_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-6.5.0-py311hd4cff14_1.tar.bz2 + sha256: 88175cf3c543253d10a0403ecf5ec40e0d3c581befe863a8b0960d2016cae712 + md5: f59fc994658549d52497cb29f34b75a6 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tomli + license: Apache-2.0 + license_family: APACHE + size: 324600 + timestamp: 1666762662630 +- kind: conda + name: coverage + version: 6.5.0 + build: py311he2be06e_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/coverage-6.5.0-py311he2be06e_1.tar.bz2 + sha256: 55b63a8c4a9733461d61e2012947a9c62beaba49937c2f3ed11dee062e50fd5c + md5: c075c03149ead300dcdb77768f2dbaac + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - tomli + license: Apache-2.0 + license_family: APACHE + size: 320348 + timestamp: 1666762836978 +- kind: conda + name: coveralls + version: 3.3.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/coveralls-3.3.1-pyhd8ed1ab_0.tar.bz2 + sha256: 2494cc7fb55537787d18709a23e2a4a914ff7defc5c3b82ca2fdd0fcef001cf6 + md5: 557dee9e01f42fd5a94253c25706cf21 + depends: + - coverage >=4.1,<7.0 + - docopt >=0.6.1 + - python >=3.5 + - pyyaml >=3.10 + - requests >=1.0.0 + license: MIT + license_family: MIT + size: 16951 + timestamp: 1636750719629 +- kind: conda + name: cryptography + version: 42.0.2 + build: py311h08c85a6_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.2-py311h08c85a6_0.conda + sha256: babdf6991c01e248543c779e67a671017809073110ca98c03cec48f3d594f3eb + md5: dfc74f790cb99c9fc5d9dac174e4e397 + depends: + - cffi >=1.12 + - openssl >=3.1.5,<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 + size: 1290708 + timestamp: 1706659290492 +- kind: conda + name: cryptography + version: 42.0.2 + build: py311h7cb4080_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.2-py311h7cb4080_0.conda + sha256: 14540caac118a30e2a16325c184d8a54a002ce6b539a4e3e631a2b6554ada8ee + md5: 26cc525b5ee2933c9948c8f9beff0f09 + depends: + - cffi >=1.12 + - openssl >=3.1.5,<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 + size: 1168856 + timestamp: 1706659739672 +- kind: conda + name: cryptography + version: 42.0.2 + build: py311hb3d8982_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.2-py311hb3d8982_0.conda + sha256: 09d2a62bab7c5874679a4879fe8665e2b7dc1c2f8d997b475965a18f1bf02bc3 + md5: 72adea991e530f41bed89bb9e2523d9c + depends: + - __osx >=10.12 + - cffi >=1.12 + - openssl >=3.1.5,<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 + size: 1301958 + timestamp: 1706659212287 +- kind: conda + name: cryptography + version: 42.0.2 + build: py311hcb13ee4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.2-py311hcb13ee4_0.conda + sha256: 165591f6dd5db602255ff170569e41508fea47cfa5bce51e79cfe251493a54f0 + md5: c61fd9e9fcfa599ea5a8b1de42b147a8 + depends: + - cffi >=1.12 + - libgcc-ng >=12 + - openssl >=3.1.5,<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 + size: 2044751 + timestamp: 1706658911349 +- kind: conda + name: curl + version: 8.1.2 + build: h409715c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/curl-8.1.2-h409715c_0.conda + sha256: b63022a5184d6d4d62fc43c4c52aa742984449ef2ed4b29ce5ef8f10d3c6b5a8 + md5: 9f88cfb15b7d08b25880b138f91e0eb4 + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libcurl 8.1.2 h409715c_0 + - libgcc-ng >=12 + - libssh2 >=1.10.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: curl + license_family: MIT + size: 90673 + timestamp: 1685447699567 +- kind: conda + name: curl + version: 8.1.2 + build: h68f0423_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/curl-8.1.2-h68f0423_0.conda + sha256: ba08ea94aa7eb8dcc4a35a7a7bb1992f04d1a0d23db5b89d4313f271fc99f52e + md5: fc67d347f9eaa7922fd7bc26bfa5419b + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libcurl 8.1.2 h68f0423_0 + - libssh2 >=1.10.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 + size: 140500 + timestamp: 1685448236561 +- kind: conda + name: curl + version: 8.1.2 + build: h912dcd9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.1.2-h912dcd9_0.conda + sha256: 5e9706d62fdfa208624549a5301ea53f361e377fc4b4019934a2cd9b5a07e25b + md5: fff3198e9cd788a52bf99a64c8212c85 + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libcurl 8.1.2 h912dcd9_0 + - libssh2 >=1.10.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: curl + license_family: MIT + size: 146388 + timestamp: 1685448219427 +- kind: conda + name: curl + version: 8.1.2 + build: hbee3ae8_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/curl-8.1.2-hbee3ae8_0.conda + sha256: 168f860cc615a107113cfd1a90ff6a3b30c33f12a2aa2e2a5aa95299929a611a + md5: 6cc301a6c2ba26e29949818efdc133ca + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libcurl 8.1.2 hbee3ae8_0 + - libssh2 >=1.10.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: curl + license_family: MIT + size: 146226 + timestamp: 1685448036837 +- kind: conda + name: cycler + version: 0.12.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda + sha256: f221233f21b1d06971792d491445fd548224641af9443739b4b7b6d5d72954a8 + md5: 5cd86562580f274031ede6aa6aa24441 + depends: + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 13458 + timestamp: 1696677888423 +- kind: conda + name: dataclasses + version: '0.8' + build: pyhc8e2a94_3 + build_number: 3 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 + md5: a362b2124b06aad102e2ee4581acee7d + depends: + - python >=3.7 + license: Apache-2.0 + license_family: APACHE + size: 9870 + timestamp: 1628958582931 +- kind: conda + name: dbus + version: 1.13.6 + build: h5008d03_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + md5: ecfff944ba3960ecb334b9a2663d708d + depends: + - expat >=2.4.2,<3.0a0 + - libgcc-ng >=9.4.0 + - libglib >=2.70.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 618596 + timestamp: 1640112124844 +- kind: conda + name: dbus-python + version: 1.3.2 + build: py311h703f8ee_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-python-1.3.2-py311h703f8ee_4.conda + sha256: 9c5b0ac1f9771647465070ef7b4cf42ba7d67b2aec053f961962106dcf9d98ed + md5: 6dc8daa5ed8b8de0652b4d2535d9dd31 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=12 + - libglib >=2.78.0,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 284049 + timestamp: 1698405566412 +- kind: conda + name: defusedxml + version: 0.7.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be + md5: 961b3a227b437d82ad7054484cfa71b2 + depends: + - python >=3.6 + license: PSF-2.0 + license_family: PSF + size: 24062 + timestamp: 1615232388757 +- kind: conda + name: dnspython + version: 2.2.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.2.1-pyhd8ed1ab_0.tar.bz2 + sha256: 06a1806bd9de4c8137397adadb6d90087dcf42a70ee982a060be9d0b49a53bcd + md5: 470ec3688fa9c2a4bd764ba064ef4895 + depends: + - cryptography >=2.6 + - idna >=2.1 + - python >=3.6 + license: ISC + license_family: OTHER + size: 138760 + timestamp: 1646621273076 +- kind: conda + name: dnspython + version: 2.6.1 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.6.1-pyhd8ed1ab_1.conda + sha256: 0d52c878553e569bccfbd96472c1659fb873bc05e95911b457d35982827626fe + md5: 936e6aadb75534384d11d982fab74b61 + depends: + - python >=3.8.0,<4.0.0 + - sniffio + constrains: + - h2 >=4.1.0 + - httpcore >=1.0.0 + - wmi >=1.5.1 + - trio >=0.23 + - aioquic >=0.9.25 + - cryptography >=42 + - idna >=3.6 + - httpx >=0.26.0 + license: ISC + license_family: OTHER + size: 169434 + timestamp: 1709190848615 +- kind: conda + name: docopt + version: 0.6.2 + build: py_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/docopt-0.6.2-py_1.tar.bz2 + sha256: 4bbfb8ab343b4711223aedf797a2678955412124e71415dc2fe9816248f0b28d + md5: a9ed63e45579cfef026a916af2bc27c9 + depends: + - python + license: MIT + license_family: MIT + size: 14691 + timestamp: 1530916777462 +- kind: conda + name: docutils + version: 0.20.1 + build: py311h1ea47a8_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.20.1-py311h1ea47a8_3.conda + sha256: fcce275ca03558a4feab18964ee1368f529fe095304a3a99b22e34459a4c0090 + md5: 53e577542ed0df5a3af146e4a746dbd9 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1 + size: 973107 + timestamp: 1701883312560 +- kind: conda + name: docutils + version: 0.20.1 + build: py311h267d04e_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.20.1-py311h267d04e_3.conda + sha256: 21af625c067faa77cd3aa2bfd8ca2449cdacdb1b531da8b4cbb476f4a928fdd9 + md5: 29944e93a6f38b2e0fd4f6b743558959 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1 + size: 919194 + timestamp: 1701883260630 +- kind: conda + name: docutils + version: 0.20.1 + build: py311h38be061_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.20.1-py311h38be061_3.conda + sha256: 0011a2193a5995a6706936156ea5d1021153ec11eb8869b6abfe15a8f6f22ea8 + md5: 1c33f55e5cdcc2a2b973c432b5225bfe + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1 + size: 918352 + timestamp: 1701882791483 +- kind: conda + name: docutils + version: 0.20.1 + build: py311h6eed73b_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/docutils-0.20.1-py311h6eed73b_3.conda + sha256: 0fae62e203900a8a013ba2ede852645b87b1568980ddd8e11390c11dc24c3e3c + md5: 2919376c4957faadc7b96f8894759bfb + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1 + size: 919457 + timestamp: 1701883162608 +- kind: conda + name: elementpath + version: 4.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/elementpath-4.4.0-pyhd8ed1ab_0.conda + sha256: 024cca8b594a655f6b312566506bc04393cba121d5a585c7d2c782c4c5d401f2 + md5: 84cfa3bf4cc350b9f125569ac32a7fa8 + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 156766 + timestamp: 1710212490262 +- kind: conda + name: email-validator + version: 2.1.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.1.1-pyhd8ed1ab_0.conda + sha256: b04dcb7f16d0b67b11988e060f5f9f3db175b6d461a39e06bd2e3730d8323bb2 + md5: d986a18f7b05189ab0990042310a1451 + depends: + - dnspython >=2.0.0 + - idna >=2.0.0 + - python >=3.7 + license: Unlicense + size: 40718 + timestamp: 1709024546069 +- kind: conda + name: email_validator + version: 2.1.1 + build: hd8ed1ab_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.1.1-hd8ed1ab_0.conda + sha256: 6a13717a5f7c7e0d619d0675c562abff8d8b0993b22b5af5957b7b64b67cd606 + md5: 6b084a2de311de1ed0640e9ada01b4d2 + depends: + - email-validator >=2.1.1,<2.1.2.0a0 + license: Unlicense + size: 6616 + timestamp: 1709024550191 +- kind: conda + name: esmf + version: 8.4.1 + build: nompi_h2bb01ac_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/esmf-8.4.1-nompi_h2bb01ac_0.conda + sha256: cdc3cbc553b5b506435f11c2dbe1ecced8c6bc5ceb7a08e0106d811c85aeef30 + md5: c9f0c5108aebcd2e4c5e7ca374fb45aa + depends: + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - libcxx >=14.0.6 + - libgfortran 5.* + - libgfortran5 >=11.3.0 + - libnetcdf * nompi_* + - libnetcdf >=4.9.1,<4.9.2.0a0 + - netcdf-fortran * nompi_* + - netcdf-fortran >=4.6.0,<4.7.0a0 + license: NCSA + size: 23488182 + timestamp: 1677852230707 +- kind: conda + name: esmf + version: 8.4.1 + build: nompi_h6cd7a65_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/esmf-8.4.1-nompi_h6cd7a65_0.conda + sha256: a7e2ea4822834df4aa37160434dde0b642abdd7f850c4962232f266d1dee4d2e + md5: dcd856ce2d92c7a47181d09eb1bda5d0 + depends: + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - libcxx >=14.0.6 + - libgfortran 5.* + - libgfortran5 >=11.3.0 + - libnetcdf * nompi_* + - libnetcdf >=4.9.1,<4.9.2.0a0 + - netcdf-fortran * nompi_* + - netcdf-fortran >=4.6.0,<4.7.0a0 + license: NCSA + size: 22605781 + timestamp: 1677851462048 +- kind: conda + name: esmf + version: 8.4.1 + build: nompi_he2e5181_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/esmf-8.4.1-nompi_he2e5181_0.conda + sha256: c8c4a76a621e4556f48254f5b9f8c4f5022a177e814e4ef8c11160f95ab35b37 + md5: 03d37e65638c846a306914499d6e7d64 + depends: + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=11.3.0 + - libnetcdf * nompi_* + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libstdcxx-ng >=12 + - netcdf-fortran * nompi_* + - netcdf-fortran >=4.6.0,<4.7.0a0 + license: NCSA + size: 24208162 + timestamp: 1677851132792 +- kind: conda + name: eventlet + version: 0.36.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/eventlet-0.36.0-pyhd8ed1ab_0.conda + sha256: ec1d6be9278187d0eec9b5cbecdbbaa26c9b3877ed203029e267521116033c10 + md5: 827737797a874f280b127361509540e0 + depends: + - dnspython >=1.15.0 + - greenlet >=1.0 + - pyopenssl + - python >=3.7 + license: MIT + license_family: MIT + size: 306930 + timestamp: 1711384610144 +- 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 + depends: + - python >=3.7 + license: MIT and PSF-2.0 + size: 20551 + timestamp: 1704921321122 +- kind: conda + name: execnet + version: 2.0.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/execnet-2.0.2-pyhd8ed1ab_0.conda + sha256: 88ea68a360198af39368beecf057af6b31f0ae38071b2bdb2aa961b6ae5427c0 + md5: 67de0d8241e1060a479e3c37793e26f9 + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 36534 + timestamp: 1688933537234 +- kind: conda + name: expat + version: 2.6.2 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda + sha256: 89916c536ae5b85bb8bf0cfa27d751e274ea0911f04e4a928744735c14ef5155 + md5: 53fb86322bdb89496d7579fe3f02fd61 + depends: + - libexpat 2.6.2 h59595ed_0 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 137627 + timestamp: 1710362144873 +- kind: conda + name: expat + version: 2.6.2 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/expat-2.6.2-h63175ca_0.conda + sha256: f5a13d4bc591a4dc210954f492dd59a0ecf9b9d2ab28bf2ece755ca8f69ec1b4 + md5: 52f9dec6758ceb8ce0ea8af9fa13eb1a + depends: + - libexpat 2.6.2 h63175ca_0 + license: MIT + license_family: MIT + size: 229627 + timestamp: 1710362661692 +- kind: conda + name: expat + version: 2.6.2 + build: h73e2aa4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.2-h73e2aa4_0.conda + sha256: 0fd1befb18d9d937358a90d5b8f97ac2402761e9d4295779cbad9d7adfb47976 + md5: dc0882915da2ec74696ad87aa2350f27 + depends: + - libexpat 2.6.2 h73e2aa4_0 + license: MIT + license_family: MIT + size: 126612 + timestamp: 1710362607162 +- kind: conda + name: expat + version: 2.6.2 + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.2-hebf3989_0.conda + sha256: 9ac22553a4d595d7e4c9ca9aa09a0b38da65314529a7a7008edc73d3f9e7904a + md5: de0cff0ec74f273c4b6aa281479906c3 + depends: + - libexpat 2.6.2 hebf3989_0 + license: MIT + license_family: MIT + size: 124594 + timestamp: 1710362455984 +- kind: conda + name: fastkml + version: '0.12' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/fastkml-0.12-pyhd8ed1ab_0.tar.bz2 + sha256: 688cc8a506178cb11ad436a7c1bfaaa2c9224ac0f0a23b695f294d99483dffb1 + md5: 27f083af44d41413af724254fd45b468 + depends: + - pygeoif <1.0 + - python >=3.6 + - python-dateutil + license: LGPL-2.1-only + size: 53160 + timestamp: 1642775715608 +- kind: conda + name: fftw + version: 3.3.10 + build: nompi_hc118613_108 + build_number: 108 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hc118613_108.conda + sha256: 1952dbb3c40931fc4608e053e32cbebbdcd8f3ea5b6a050156df6dd66ad64912 + md5: 6fa90698000b05dfe8ce6515794fe71a + depends: + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=11.4.0 + - libstdcxx-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 2019717 + timestamp: 1686584867122 +- kind: conda + name: filelock + version: 3.13.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.3-pyhd8ed1ab_0.conda + sha256: 3bb2b4b8b97160ee7d2ed40b9dbc78555932274e82ef314c8a400a1d17aa4626 + md5: ff15f46b0d34308f4d40c1c51df07592 + depends: + - python >=3.7 + license: Unlicense + size: 15611 + timestamp: 1711394721380 +- kind: conda + name: flake8 + version: 7.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flake8-7.0.0-pyhd8ed1ab_0.conda + sha256: fd9256b775551e8b802151dc812833f60565fd284707b969ab6c257a02a36c0b + md5: 15bc58c860fc0a9abc26ec902df35252 + depends: + - mccabe >=0.7.0,<0.8.0 + - pycodestyle >=2.11.0,<2.12.0 + - pyflakes >=3.2.0,<3.3.0 + - python >=3.8.1 + license: MIT + license_family: MIT + size: 110938 + timestamp: 1704483964269 +- kind: conda + name: flake8-builtins + version: 2.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flake8-builtins-2.2.0-pyhd8ed1ab_0.conda + sha256: 2217cb431715bf8755739c1a4f05f73658de3cd616f0a983dfa354851aed35d6 + md5: 72f28407c0bbc75b08707053cd038a3a + depends: + - flake8 + - python >=3.8 + license: GPL-2.0-only + license_family: GPL2 + size: 18340 + timestamp: 1699026913196 +- kind: conda + name: flask + version: 2.3.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-2.3.3-pyhd8ed1ab_0.conda + sha256: 4f84ffdc5471236e8225db86c7508426b46aa2c3802d58ca40b3c3e174533b39 + md5: 9b0d29067484a8dfacfae85b8fba81bc + depends: + - blinker >=1.6.2 + - click >=8.1.3 + - importlib-metadata >=3.6.0 + - itsdangerous >=2.1.2 + - jinja2 >=3.1.2 + - python >=3.8 + - werkzeug >=2.3.7 + license: BSD-3-Clause + license_family: BSD + size: 79782 + timestamp: 1692686247131 +- kind: conda + name: flask-cors + version: 4.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-cors-4.0.0-pyhd8ed1ab_0.conda + sha256: bc23c15ab33e10f931b03e4f2812d30491c27e09ea6e6441c67ee2ed523ee06b + md5: 3dc2a99c1c76e3f4307ebaebfda0af4a + depends: + - flask >=0.9 + - python >=3.6 + - six + license: MIT + license_family: MIT + size: 17899 + timestamp: 1687783565818 +- kind: conda + name: flask-httpauth + version: 4.8.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-httpauth-4.8.0-pyhd8ed1ab_0.conda + sha256: 40784213e2918f07a1112562597e9df6c3c6e5e615c1749bf0176b3093a82056 + md5: 6628701f4519ffd207df50843cc6f073 + depends: + - flask + - python >=3.5 + license: MIT + license_family: MIT + size: 12412 + timestamp: 1682601164181 +- kind: conda + name: flask-login + version: 0.6.3 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-login-0.6.3-pyhd8ed1ab_1.conda + sha256: 23ffed52801132e3e434c82a544ef1b77efbc025878a1a1cd0fbcc4c361cd9de + md5: 1d3523e7b18b38e4be992bf462d99e40 + depends: + - flask >=1.0.4 + - python >=3.7 + - werkzeug >=1.0.1 + license: MIT + license_family: MIT + size: 20731 + timestamp: 1699273605211 +- kind: conda + name: flask-mail + version: 0.9.1 + build: py_2 + build_number: 2 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-mail-0.9.1-py_2.tar.bz2 + sha256: 6cd5b7a4dca7d2beb6adf78fc50c702fedd6d36d88715b27e4fbb81335201d4b + md5: 083af8cde25430f3e489d2571c523604 + depends: + - blinker + - flask + - python + license: BSD 3-Clause + license_family: BSD + size: 9425 + timestamp: 1531371708311 +- kind: conda + name: flask-migrate + version: 4.0.7 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-migrate-4.0.7-pyhd8ed1ab_0.conda + sha256: bd42a1c179222acfcbbb15ef4c66de504c5571c726a74942c73dff6e4ac1233f + md5: 0fc72bcf4b9da6cde3d35b996c140c91 + depends: + - alembic >=0.6 + - flask >=0.9 + - flask-sqlalchemy >=1.0 + - python >=3.6 + license: MIT + license_family: MIT + size: 17632 + timestamp: 1710204114446 +- kind: conda + name: flask-socketio + version: 5.3.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda + sha256: f641731d0fa6c26db6dcd3cf1c39a5c27d0e692604ac3927c68a74b2a60fa175 + md5: ef521fc208ad82733c942d150199cf3e + depends: + - flask >=0.9 + - python >=3.6 + - python-socketio >=5.0.2 + license: MIT + license_family: MIT + size: 22316 + timestamp: 1693919260997 +- kind: conda + name: flask-sqlalchemy + version: 3.0.3 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-sqlalchemy-3.0.3-pyhd8ed1ab_0.conda + sha256: 460693607ab0e2feb600bb755851c0c19db8d6dbd1c7636904c8de6f2c63040d + md5: 6a301e2aa76aef91787e15f59ab03390 + depends: + - flask >=2.2 + - python >=3.7 + - sqlalchemy >=1.4.18 + license: BSD-3-Clause + license_family: BSD + size: 25271 + timestamp: 1675194331817 +- kind: conda + name: flask-wtf + version: 1.2.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/flask-wtf-1.2.1-pyhd8ed1ab_0.conda + sha256: cee583240eec93d27f262f3bb8cdecf8334e502d81923295d98f378b15fe26d5 + md5: e7b75c25f98d7b55943466683e400529 + depends: + - flask + - itsdangerous + - python >=3.8 + - wtforms + license: BSD-3-Clause + license_family: BSD + size: 16570 + timestamp: 1697216258405 +- kind: conda + name: fmt + version: 9.1.0 + build: h181d51b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/fmt-9.1.0-h181d51b_0.tar.bz2 + sha256: b4882f05294a46949cf4d15e4b2c50f29257b0d042d7d8184e4722b392d71193 + md5: 31a20cf261b2bd0a76d670db1b3e6fa1 + depends: + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30037 + license: MIT + license_family: MIT + size: 185870 + timestamp: 1661662536794 +- kind: conda + name: fmt + version: 9.1.0 + build: h924138e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fmt-9.1.0-h924138e_0.tar.bz2 + sha256: bd48506faffa86e07f7b40d54f2d7e13b0fc956eda9760236750f5ea20db7129 + md5: b57864c85261a0fbc7132d2cc17478c7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 189730 + timestamp: 1661661115134 +- kind: conda + name: fmt + version: 9.1.0 + build: hb8565cd_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fmt-9.1.0-hb8565cd_0.tar.bz2 + sha256: 4891b66c94df8a346010caefb5d92df5e367be87ef0dea35a15d988f39a82719 + md5: 310d897883dbdd88555d6321a4c2e6e8 + depends: + - libcxx >=14.0.4 + license: MIT + license_family: MIT + size: 182984 + timestamp: 1661661243069 +- kind: conda + name: fmt + version: 9.1.0 + build: hffc8910_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-9.1.0-hffc8910_0.tar.bz2 + sha256: 9864e8ed7501ef8d0e6c3de64b9a45865d05c9e19e074fb15633cf0b8924c459 + md5: 78c11e6b1e971d49e9610d856a845d2f + depends: + - libcxx >=14.0.4 + license: MIT + license_family: MIT + size: 175475 + timestamp: 1661661278672 +- kind: conda + name: font-ttf-dejavu-sans-mono + version: '2.37' + build: hab24e00_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: 0c96522c6bdaed4b1566d11387caaf45 + license: BSD-3-Clause + license_family: BSD + size: 397370 + timestamp: 1566932522327 +- kind: conda + name: font-ttf-inconsolata + version: '3.000' + build: h77eed37_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 34893075a5c9e55cdafac56607368fc6 + license: OFL-1.1 + license_family: Other + size: 96530 + timestamp: 1620479909603 +- kind: conda + name: font-ttf-source-code-pro + version: '2.038' + build: h77eed37_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 4d59c254e01d9cde7957100457e2d5fb + license: OFL-1.1 + license_family: Other + size: 700814 + timestamp: 1620479612257 +- kind: conda + name: font-ttf-ubuntu + version: '0.83' + build: h77eed37_1 + build_number: 1 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: 6185f640c43843e5ad6fd1c5372c3f80 + license: LicenseRef-Ubuntu-Font-Licence-Version-1.0 + license_family: Other + size: 1619820 + timestamp: 1700944216729 +- kind: conda + name: fontconfig + version: 2.14.2 + build: h14ed4e7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda + sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + md5: 0f69b688f52ff6da70bccb7ff7001d1d + depends: + - expat >=2.5.0,<3.0a0 + - freetype >=2.12.1,<3.0a0 + - libgcc-ng >=12 + - libuuid >=2.32.1,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: MIT + license_family: MIT + size: 272010 + timestamp: 1674828850194 +- kind: conda + name: fonts-conda-ecosystem + version: '1' + build: '0' + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: fee5683a3f04bd15cbd8318b096a27ab + depends: + - fonts-conda-forge + license: BSD-3-Clause + license_family: BSD + size: 3667 + timestamp: 1566974674465 +- kind: conda + name: fonts-conda-forge + version: '1' + build: '0' + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: f766549260d6815b0c52253f1fb1bb29 + depends: + - font-ttf-dejavu-sans-mono + - font-ttf-inconsolata + - font-ttf-source-code-pro + - font-ttf-ubuntu + license: BSD-3-Clause + license_family: BSD + size: 4102 + timestamp: 1566932280397 +- kind: conda + name: fonttools + version: 4.50.0 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.50.0-py311h05b510d_0.conda + sha256: 00f955308440b00072c2b219201efc980ba0b6ea209722afe41fb177ce7d3ed1 + md5: 075e90c6d9bde0db4e947b9a51083553 + depends: + - brotli + - munkres + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 2748309 + timestamp: 1710865956888 +- kind: conda + name: fonttools + version: 4.50.0 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.50.0-py311h459d7ec_0.conda + sha256: 8c067ffd17d97374ef206bd88953a641c0807686008da68140039bec5c4dee79 + md5: fcdef52b45265eece45de756b164a9a7 + depends: + - brotli + - libgcc-ng >=12 + - munkres + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 2838749 + timestamp: 1710865729526 +- kind: conda + name: fonttools + version: 4.50.0 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.50.0-py311ha68e1ae_0.conda + sha256: fcad25ad5172bc27db6e3d5ceead5ec069ce3201b4fde892e59a84178f20d11b + md5: d74765a814a064018a6966c9dc807a44 + depends: + - brotli + - munkres + - 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 + size: 2410298 + timestamp: 1710866466126 +- kind: conda + name: fonttools + version: 4.50.0 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.50.0-py311he705e18_0.conda + sha256: e90f75612e5e01f96b7b4a2e2cf507cb7b21b28be8843b1c7eb6db93bfab5c7e + md5: b8883c0ef26a87257b8c45206207f924 + depends: + - brotli + - munkres + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 2745560 + timestamp: 1710865959719 +- kind: conda + name: freetype + version: 2.12.1 + build: h267a509_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda + sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6 + md5: 9ae35c3d96db2c94ce0cef86efdfa2cb + depends: + - libgcc-ng >=12 + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: GPL-2.0-only OR FTL + size: 634972 + timestamp: 1694615932610 +- kind: conda + name: freetype + version: 2.12.1 + build: h60636b9_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda + sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e + md5: 25152fce119320c980e5470e64834b50 + depends: + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: GPL-2.0-only OR FTL + size: 599300 + timestamp: 1694616137838 +- kind: conda + name: freetype + version: 2.12.1 + build: hadb7bae_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda + sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9 + md5: e6085e516a3e304ce41a8ee08b9b89ad + depends: + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: GPL-2.0-only OR FTL + size: 596430 + timestamp: 1694616332835 +- kind: conda + name: freetype + version: 2.12.1 + build: hdaf720e_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda + sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728 + md5: 3761b23693f768dc75a8fd0a73ca053f + depends: + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-only OR FTL + size: 510306 + timestamp: 1694616398888 +- kind: conda + name: fs + version: 2.4.16 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda + sha256: 77d0e22118d804de3ee471dc9bab698ddd6b231715d2f09fe0226a3b5a7c5ce1 + md5: a231fa7cb5f101f1f3ae8480c0002f91 + depends: + - appdirs >=1.4.3,<2 + - python >=3.6 + - setuptools + - six >=1.10.0,<2 + license: MIT + license_family: MIT + size: 99249 + timestamp: 1683650285012 +- kind: conda + name: fs.sshfs + version: 1.0.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/fs.sshfs-1.0.2-pyhd8ed1ab_0.conda + sha256: 199041c57d16b77856582dbe8b186fd25ac7abe789146c63efff702de984687b + md5: cd9577fdd8c9bd75831bac0c60c70a13 + depends: + - fs >=2.4 + - paramiko >=2,<4 + - property-cached >=1.6,<1.7 + - python >=3 + - six >=1.10.0,<2 + license: LGPL-2.1-only + license_family: LGPL + size: 27719 + timestamp: 1692273588062 +- kind: conda + name: fs.webdavfs + version: 0.4.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/fs.webdavfs-0.4.2-pyhd8ed1ab_0.tar.bz2 + sha256: f951de84b5d6420a7613571c861be2798fe8ba792c851bd6212e5d0504434504 + md5: bb2a5c71cec7492e560544b45aff4fc5 + depends: + - cachetools + - fs >2.0 + - python >=3.6 + - python-dateutil + - webdavclient3 + license: MIT + license_family: MIT + size: 12837 + timestamp: 1637179439355 +- kind: conda + name: fs_filepicker + version: 0.3.7 + build: pyhd8ed1ab_5 + build_number: 5 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/fs_filepicker-0.3.7-pyhd8ed1ab_5.tar.bz2 + sha256: 3f5662452ea2dace77a6cdbc3d8bcb067f6121e79f592bd3c80f40885b114425 + md5: d090f88bf3236bd978d05001028cdc09 + depends: + - fs + - fs.sshfs + - fs.webdavfs + - future + - humanfriendly + - pyqt + - python >=3.6 + license: Apache-2.0 + license_family: APACHE + size: 43811 + timestamp: 1637259984471 +- kind: conda + name: future + version: 1.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda + sha256: 8c918a63595ae01575b738ddf0bff10dc23a5002d4af4c8b445d1179a76a8efd + md5: 650a7807e689642dddd3590eb817beed + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 364081 + timestamp: 1708610254418 +- kind: conda + name: geos + version: 3.12.1 + build: h1537add_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/geos-3.12.1-h1537add_0.conda + sha256: d7a6bb89063df38b24843e5b4c99da602333ac4e1c1e39c069f2021827d3c98d + md5: 02fdccc66ed44a8f9f3731d15f445724 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only + size: 1561705 + timestamp: 1699778438983 +- kind: conda + name: geos + version: 3.12.1 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda + sha256: 2593b255cb9c4639d6ea261c47aaed1380216a366546f0468e95c36c2afd1c1a + md5: 8c0f4f71f5a59ceb0c6fa9f51501066d + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LGPL-2.1-only + size: 1736070 + timestamp: 1699778102442 +- kind: conda + name: geos + version: 3.12.1 + build: h93d8f39_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda + sha256: 6feffb0d1999a22c5f94d2168b1af9c5fbdd25c9a963a6825ee32cf05e5c07f5 + md5: d13f05ed3985f57456b610bab66366db + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + license: LGPL-2.1-only + size: 1462098 + timestamp: 1699778844758 +- kind: conda + name: geos + version: 3.12.1 + build: h965bd2d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.12.1-h965bd2d_0.conda + sha256: 9cabd90e43caf8fe63a80909775f1ac76814f0666bf6fe7ba836d077a6d4dcf3 + md5: 0f28efe509ee998b3a09e571191d406a + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + license: LGPL-2.1-only + size: 1376991 + timestamp: 1699778806863 +- kind: conda + name: gettext + version: 0.21.1 + build: h0186832_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + md5: 63d2ff6fddfa74e5458488fd311bf635 + depends: + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4021036 + timestamp: 1665674192347 +- kind: conda + name: gettext + version: 0.21.1 + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + md5: 14947d8770185e5153fdd04d4673ed37 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4320628 + timestamp: 1665673494324 +- kind: conda + name: gettext + version: 0.21.1 + build: h5728263_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 + sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 + md5: 299d4fd6798a45337042ff5a48219e5f + depends: + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 5579416 + timestamp: 1665676022441 +- kind: conda + name: gettext + version: 0.21.1 + build: h8a4c099_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 + sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 + md5: 1e3aff29ce703d421c43f371ad676cc5 + depends: + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4153781 + timestamp: 1665674106245 +- kind: conda + name: giflib + version: 5.2.1 + build: h0b41bf4_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda + sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b + md5: 96f3b11872ef6fad973eac856cd2624f + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 77385 + timestamp: 1678717794467 +- kind: conda + name: giflib + version: 5.2.1 + build: h1a8c8d9_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda + sha256: dbf1e431d3e5e03f8eeb77ec08a4c5d6d5d9af84dbef13d4365e397dd389beb8 + md5: f39a05d3dbb0e5024b7deabb2c0993f1 + license: MIT + license_family: MIT + size: 71963 + timestamp: 1678718059849 +- kind: conda + name: giflib + version: 5.2.1 + build: hb7f2c08_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda + sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d + md5: aca150b0186836f893ebac79019e5498 + license: MIT + license_family: MIT + size: 76514 + timestamp: 1678717973971 +- kind: conda + name: git + version: 2.42.0 + build: pl5321h46e2b6d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/git-2.42.0-pl5321h46e2b6d_0.conda + sha256: 3727e5288c532cb56a1dac0b303193e8a791d0b60b6e514eaafeda5a1de04d5b + md5: c909b3aef69e4971acf433f5caaf4c91 + depends: + - curl + - gettext + - libexpat >=2.5.0,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - pcre2 >=10.40,<10.41.0a0 + - perl 5.* + license: GPL-2.0-or-later and LGPL-2.1-or-later + size: 8875946 + timestamp: 1692713309317 +- kind: conda + name: git + version: 2.42.0 + build: pl5321h86e50cf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/git-2.42.0-pl5321h86e50cf_0.conda + sha256: 6f6b3d60da46f53f1e1708a63d6ce5f119e6aba0f5243326b7ecaf3b0cdbc6d4 + md5: 96ad24c67e0056d171385859c43218a2 + depends: + - curl + - gettext + - libexpat >=2.5.0,<3.0a0 + - libgcc-ng >=12 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - pcre2 >=10.40,<10.41.0a0 + - perl 5.* + license: GPL-2.0-or-later and LGPL-2.1-or-later + size: 9744309 + timestamp: 1692712850682 +- kind: conda + name: git + version: 2.42.0 + build: pl5321hbb4c4ee_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/git-2.42.0-pl5321hbb4c4ee_0.conda + sha256: dfbc33e7e24328506520c9964f10dec918a69be5136be0819fbb1c5aafe1fef2 + md5: 8ac00689b2ba60b5e052282be9cf571d + depends: + - __osx >=10.9 + - curl + - gettext + - libexpat >=2.5.0,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - pcre2 >=10.40,<10.41.0a0 + - perl 5.* + license: GPL-2.0-or-later and LGPL-2.1-or-later + size: 6866908 + timestamp: 1692713223540 +- kind: conda + name: git + version: 2.44.0 + build: h57928b3_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/git-2.44.0-h57928b3_0.conda + sha256: ba391948e3d396c5b3617190eda1e91651b08892f4eaa2965010a800f34d041c + md5: be3f29710c17c6a171fc2285762809b2 + license: GPL-2.0-or-later and LGPL-2.1-or-later + size: 120067693 + timestamp: 1708780838008 +- kind: conda + name: gitdb + version: 4.0.11 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + sha256: 52ab2798be31b8f509eeec458712f447ced4f96ecb672c6c9a42778f47e07b1b + md5: 623b19f616f2ca0c261441067e18ae40 + depends: + - python >=3.7 + - smmap >=3.0.1,<6 + license: BSD-3-Clause + license_family: BSD + size: 52872 + timestamp: 1697791718749 +- kind: conda + name: gitpython + version: 3.1.42 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + sha256: a11e1cf4404157467d0f51906d1db80bcb8bfe4bb3d3eba703b28e981ea7e308 + md5: 6bc8e496351bafd761c0922c3ebd989a + depends: + - gitdb >=4.0.1,<5 + - python >=3.7 + - typing_extensions >=3.7.4.3 + license: BSD-3-Clause + license_family: BSD + size: 149604 + timestamp: 1708069389374 +- kind: conda + name: glib + version: 2.78.1 + build: h9e231a4_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-2.78.1-h9e231a4_0.conda + sha256: 082379a9f4d2dc40b6da735eef75a40b712078c87513f5fd687b8f4b3f21cf4d + md5: a5374b9df790390353db4269922ae07d + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - glib-tools 2.78.1 h9e231a4_0 + - libcxx >=16.0.6 + - libglib 2.78.1 hd9b11f9_0 + - libzlib >=1.2.13,<1.3.0a0 + - python * + license: LGPL-2.1-or-later + size: 487806 + timestamp: 1699278267901 +- kind: conda + name: glib + version: 2.78.1 + build: hf4d7fad_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/glib-2.78.1-hf4d7fad_0.conda + sha256: 00e5e6808c62fd4377bf7d46777d43a48145418eef26ddbf766258cf35e822e4 + md5: 9ec0d72a2fa4e3fdd6d62629fbad7b2b + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - glib-tools 2.78.1 hf4d7fad_0 + - libcxx >=16.0.6 + - libglib 2.78.1 h6d9ecee_0 + - libzlib >=1.2.13,<1.3.0a0 + - python * + license: LGPL-2.1-or-later + size: 488466 + timestamp: 1699278255109 +- kind: conda + name: glib + version: 2.78.1 + build: hfc55251_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.78.1-hfc55251_0.conda + sha256: fc052d470898ce222d1087815f3c16a8d32a3ef1afec06c39b892bea2d4b164a + md5: 43c633c015a361610ee4db2e95f8a517 + depends: + - gettext >=0.21.1,<1.0a0 + - glib-tools 2.78.1 hfc55251_0 + - libgcc-ng >=12 + - libglib 2.78.1 hebfc3b9_0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - python * + license: LGPL-2.1-or-later + size: 488885 + timestamp: 1699278102058 +- kind: conda + name: glib + version: 2.80.0 + build: h39d0aa6_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/glib-2.80.0-h39d0aa6_1.conda + sha256: a76ad2d20164be5425269ac9c65dc8a071ea6dbd5ac3090f9b16dc29a7af1dbc + md5: 0384fcbea19fea38cdbf4b3b8924e436 + depends: + - glib-tools 2.80.0 h0a98069_1 + - libglib 2.80.0 h39d0aa6_1 + - python * + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + size: 491857 + timestamp: 1710939590211 +- kind: conda + name: glib-tools + version: 2.78.1 + build: h9e231a4_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.78.1-h9e231a4_0.conda + sha256: 30b0c3604782d547eac292e79c080565cac257f13f47e81aeb78515bbb8aba2f + md5: be84d40c3b9d17f553618abffd6150a2 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - libglib 2.78.1 hd9b11f9_0 + - libzlib >=1.2.13,<1.3.0a0 + license: LGPL-2.1-or-later + size: 97736 + timestamp: 1699278208875 +- kind: conda + name: glib-tools + version: 2.78.1 + build: hf4d7fad_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.78.1-hf4d7fad_0.conda + sha256: e76466f767a23ca054b3dcfdab56f0ea4aa1a9e5f8d0c1b6a62826b2144e564e + md5: be4782cc6efc35b7ccbe38fedf33d6d9 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - libglib 2.78.1 h6d9ecee_0 + - libzlib >=1.2.13,<1.3.0a0 + license: LGPL-2.1-or-later + size: 97019 + timestamp: 1699278177134 +- kind: conda + name: glib-tools + version: 2.78.1 + build: hfc55251_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.78.1-hfc55251_0.conda + sha256: b1514f0372ff4d7bd2d87001c881c7ee7fc9e28e4e8444ff17dbbea60dd8c9a6 + md5: 5b4fe75a68cbb95350f47bb9a707b53b + depends: + - libgcc-ng >=12 + - libglib 2.78.1 hebfc3b9_0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: LGPL-2.1-or-later + size: 111722 + timestamp: 1699278057218 +- kind: conda + name: glib-tools + version: 2.80.0 + build: h0a98069_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.80.0-h0a98069_1.conda + sha256: 079b56c014b5f70381924db7a70000676e616079045e7a70081e2f3cf69bc969 + md5: b6a4948e65ee42739ce14967e4cacdca + depends: + - libglib 2.80.0 h39d0aa6_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + size: 94114 + timestamp: 1710939517930 +- kind: conda + name: glob2 + version: '0.7' + build: py_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/glob2-0.7-py_0.tar.bz2 + sha256: d8ae39a37fb99489525846f77c4ae85cb6b42360d34936bb0393025db5f0508d + md5: 1f3a88e65e61216e1d475135922dbf6a + depends: + - python + license: BSD-2-Clause + license_family: BSD + size: 11503 + timestamp: 1560605013447 +- kind: conda + name: gpxpy + version: 1.6.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/gpxpy-1.6.2-pyhd8ed1ab_0.conda + sha256: aecedf5d98e8633e4ad6bb660bef92d2c96d3976c10aa9ae7dc4fe2acdad3ea6 + md5: 6b4ec5be4817975be6dd431c5ae1c767 + depends: + - python >=3.6 + license: Apache-2.0 + license_family: APACHE + size: 40840 + timestamp: 1701783448144 +- kind: conda + name: graphite2 + version: 1.3.13 + build: h58526e2_1001 + build_number: 1001 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2 + sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 + md5: 8c54672728e8ec6aa6db90cf2806d220 + depends: + - libgcc-ng >=7.5.0 + - libstdcxx-ng >=7.5.0 + license: LGPLv2 + size: 104701 + timestamp: 1604365484436 +- kind: conda + name: greenlet + version: 3.0.3 + build: py311h12c1d0e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.0.3-py311h12c1d0e_0.conda + sha256: 201a0ceab46a8c727569a5828c54cccf577a31d814e55f8db1bfae1296faea11 + md5: b951f974beab977f3e6b99cba8864ebd + 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 + size: 222161 + timestamp: 1703202281940 +- kind: conda + name: greenlet + version: 3.0.3 + build: py311h92babd0_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-3.0.3-py311h92babd0_0.conda + sha256: 7084dcde0cc228fa870d41cd5f71d38b0638263280282559792a67106bb4d4db + md5: 36b7bc788b0fda79d2df7ccc416b080d + depends: + - libcxx >=15 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 225678 + timestamp: 1703202139637 +- kind: conda + name: greenlet + version: 3.0.3 + build: py311hb755f60_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.0.3-py311hb755f60_0.conda + sha256: e6228b46b15ee3f54592c8a1fc1bf3846d519719ac65c238c20e21eb431971ec + md5: 6f4b03b4d1e0da0962ea02113382677c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 236045 + timestamp: 1703201735151 +- kind: conda + name: greenlet + version: 3.0.3 + build: py311hdd0406b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/greenlet-3.0.3-py311hdd0406b_0.conda + sha256: 472971e11c0a4bffdad925523ae524361567a6428e7d5e38a76fadc59eaa8efc + md5: 4f538c462a4fed3aa89ea7993506c478 + depends: + - libcxx >=15 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 226702 + timestamp: 1703202043184 +- kind: conda + name: gsl + version: '2.7' + build: h6e638da_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2 + sha256: 979c2976adcfc70be997abeab2ed8395f9ac2b836bdcd25ed5d2efbf1fed226b + md5: 2a2126a940e033e7225a5dc7215eea9a + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 2734398 + timestamp: 1626369562748 +- kind: conda + name: gsl + version: '2.7' + build: h93259b0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2 + sha256: 8550d64004810fa0b5f552d1f21f9fe51483cd30d2d3200d7b0c5e324f7e6995 + md5: b4942b1ee2a52fd67f446074488d774d + depends: + - libblas >=3.8.0,<4.0a0 + - libcblas >=3.8.0,<4.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 3221488 + timestamp: 1626369980688 +- kind: conda + name: gsl + version: '2.7' + build: hdfb1a43_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2 + sha256: 4bb43ff81eca1631a3738dee073763cbff2d27a47ac3c60d7b7233941d7ab202 + md5: ca5c581b3659140455cf6ae00f6a2ea9 + depends: + - libblas >=3.8.0,<4.0a0 + - libcblas >=3.8.0,<4.0a0 + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: GPL-3.0-or-later + license_family: GPL + size: 1739909 + timestamp: 1626371462874 +- kind: conda + name: gsl + version: '2.7' + build: he838d99_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gsl-2.7-he838d99_0.tar.bz2 + sha256: 132a918b676dd1f533d7c6f95e567abf7081a6ea3251c3280de35ef600e0da87 + md5: fec079ba39c9cca093bf4c00001825de + depends: + - libblas >=3.8.0,<4.0a0 + - libcblas >=3.8.0,<4.0a0 + - libgcc-ng >=9.3.0 + license: GPL-3.0-or-later + license_family: GPL + size: 3376423 + timestamp: 1626369596591 +- kind: conda + name: gst-plugins-base + version: 1.22.0 + build: h4243ec0_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_2.conda + sha256: e0f3e53f179440a8cdfd38c0b47d175aa560ff1600d43e15e6a6cbdaa7a01da3 + md5: 0d0c6604c8ac4ad5e51efa7bb58da05c + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.8,<1.2.9.0a0 + - gettext >=0.21.1,<1.0a0 + - gstreamer 1.22.0 h25f0c4b_2 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libopus >=1.3.1,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libstdcxx-ng >=12 + - libvorbis >=1.3.7,<1.4.0a0 + - libxcb >=1.13,<1.14.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2708542 + timestamp: 1678159510042 +- kind: conda + name: gst-plugins-base + version: 1.22.7 + build: h040e9b9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gst-plugins-base-1.22.7-h040e9b9_0.conda + sha256: df0a26db2095405bdcb021c1646005aa2e135060f0d5d251281b7f9c53e09a30 + md5: 4513b630afd54796bc14a984a372a74d + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - gstreamer 1.22.7 hd492984_0 + - libcxx >=16.0.6 + - libglib >=2.78.1,<3.0a0 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1918191 + timestamp: 1699936717895 +- kind: conda + name: gst-plugins-base + version: 1.22.7 + build: hd283e88_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.22.7-hd283e88_0.conda + sha256: b5040c42a813020ef957528b68152593cbcfcbaecceb9ddc39a5eae036bf3634 + md5: 6f0f588e82330893016aa084d3ae74a1 + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - gstreamer 1.22.7 h8954545_0 + - libcxx >=16.0.6 + - libglib >=2.78.1,<3.0a0 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2344107 + timestamp: 1699936383690 +- kind: conda + name: gst-plugins-base + version: 1.22.9 + build: h001b923_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.9-h001b923_1.conda + sha256: e2c37128de5bdc12e3656c9c50e7b1459d8890ea656b866e68293e334356b652 + md5: ef961ec5b46ac75cebd3d68460691c27 + depends: + - gettext >=0.21.1,<1.0a0 + - gstreamer 1.22.9 hb4038d2_1 + - libglib >=2.78.4,<3.0a0 + - libogg >=1.3.4,<1.4.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2035564 + timestamp: 1711211913043 +- kind: conda + name: gstreamer + version: 1.22.0 + build: h25f0c4b_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_2.conda + sha256: b60bf8f5cae60d276e26f9de0f03faddc6dd341c910924ffe0f3c1aa7e0852c7 + md5: 461541cb1b387c2a28ab6217f3d38502 + depends: + - __glibc >=2.17,<3.0.a0 + - gettext >=0.21.1,<1.0a0 + - glib >=2.74.1,<3.0a0 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1985068 + timestamp: 1678159402537 +- kind: conda + name: gstreamer + version: 1.22.7 + build: h8954545_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.22.7-h8954545_0.conda + sha256: 2b0acac438bb96ddc7a34d5fa4f52346837708cee06c858bd78c35d993768a36 + md5: 78550579c8a164c2af8c6dd690ad7109 + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - glib >=2.78.1,<3.0a0 + - libcxx >=16.0.6 + - libglib >=2.78.1,<3.0a0 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1783004 + timestamp: 1699936095971 +- kind: conda + name: gstreamer + version: 1.22.7 + build: hd492984_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gstreamer-1.22.7-hd492984_0.conda + sha256: b521bc9a9c1c0057c1636d659cdcd08f185d6ac877c1ff59464cfa36a072ff4b + md5: 6a752ab41075c1445f684c2f61dbe38a + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - glib >=2.78.1,<3.0a0 + - libcxx >=16.0.6 + - libglib >=2.78.1,<3.0a0 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1340898 + timestamp: 1699936420240 +- kind: conda + name: gstreamer + version: 1.22.9 + build: hb4038d2_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.9-hb4038d2_1.conda + sha256: 4d42bc24434db62c093748ea3ad0b6ba3872b6810b761363585513ebd79b4f87 + md5: 70557ab875e72c1f21e8d2351aeb9c54 + depends: + - gettext >=0.21.1,<1.0a0 + - glib >=2.78.4,<3.0a0 + - libglib >=2.78.4,<3.0a0 + - libiconv >=1.17,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1936661 + timestamp: 1711211717228 +- kind: conda + name: gstreamer-orc + version: 0.4.38 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.38-hd590300_0.conda + sha256: 01911f9d0c6dd42df09852c1ff1028556101c3992a3a2521a5c896027e805823 + md5: 0403d9bfababea7e9d65741144410a70 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause AND BSD-3-Clause + size: 288068 + timestamp: 1709304188962 +- kind: conda + name: h11 + version: 0.14.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 + sha256: 817d2c77d53afe3f3d9cf7f6eb8745cdd8ea76c7adaa9d7ced75c455a2c2c085 + md5: b21ed0883505ba1910994f1df031a428 + depends: + - python >=3 + - typing_extensions + license: MIT + license_family: MIT + size: 48251 + timestamp: 1664132995560 +- kind: conda + name: harfbuzz + version: 6.0.0 + build: h8e241bc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda + sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 + md5: 448fe40d2fed88ccf4d9ded37cbb2b38 + depends: + - cairo >=1.16.0,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - graphite2 + - icu >=70.1,<71.0a0 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 1300409 + timestamp: 1671365973953 +- kind: conda + name: hdf4 + version: 4.2.15 + build: h1a38d6a_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h1a38d6a_5.tar.bz2 + sha256: e743b2f3d6f0b2db7a0af7ffbfecbc28137d51dd2219847e5a561a483d50d176 + md5: 33632080213c000ced85118a4265256d + depends: + - jpeg >=9e,<10a + - libcxx >=14.0.4 + - libzlib >=1.2.13,<1.3.0a0 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 948048 + timestamp: 1667222994436 +- kind: conda + name: hdf4 + version: 4.2.15 + build: h1b1b6ef_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h1b1b6ef_5.tar.bz2 + sha256: 24842165790df11a664a9b9d8bc90c239427232ef2365d4b475f29101efd687f + md5: bfb6a2d82ef9a30455cc0900d89eed20 + depends: + - jpeg >=9e,<10a + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 1148743 + timestamp: 1667223165906 +- kind: conda + name: hdf4 + version: 4.2.15 + build: h7aa5921_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h7aa5921_5.tar.bz2 + sha256: 6dbf1c98688aa1268066e4c4cd21f59e93071a33987be458e8fe9f2bfffd9c62 + md5: a5e171d71c6b524409de40d81c098758 + depends: + - jpeg >=9e,<10a + - libcxx >=14.0.4 + - libzlib >=1.2.13,<1.3.0a0 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 953836 + timestamp: 1667222927136 +- kind: conda + name: hdf4 + version: 4.2.15 + build: h9772cbc_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2 + sha256: c343a211880a86abf99a8f117a53e251317f99faac761fc0b758f6ad737d13ff + md5: ee08782aff2ff9b3291c967fa6bc7336 + depends: + - jpeg >=9e,<10a + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 973792 + timestamp: 1667222658023 +- kind: conda + name: hdf5 + version: 1.12.2 + build: nompi_h48135f9_101 + build_number: 101 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda + sha256: 8a74bdb6ca70ce7d702652e3e670cef2384b25a0fbe97b5abaab7df60aaf2b2d + md5: 2ee4811ba5f72f7f12f69b3ec2d6cd96 + depends: + - libaec >=1.0.6,<2.0a0 + - libcurl >=7.87.0,<9.0a0 + - libcxx >=13.0.1 + - libgfortran 5.* + - libgfortran5 >=11.3.0 + - libgfortran5 >=9.5.0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.7,<4.0a0 + license: LicenseRef-HDF5 + license_family: BSD + size: 3175698 + timestamp: 1671626349179 +- kind: conda + name: hdf5 + version: 1.12.2 + build: nompi_h4df4325_101 + build_number: 101 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda + sha256: f83472851e0fc2834c881f6962e324cd0c7a96afe9d575f9cce599dd19436446 + md5: 162a25904af6586b234b2dd52ee99c61 + depends: + - libaec >=1.0.6,<2.0a0 + - libcurl >=7.87.0,<9.0a0 + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=10.4.0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.7,<4.0a0 + license: LicenseRef-HDF5 + license_family: BSD + size: 3319523 + timestamp: 1671624959330 +- kind: conda + name: hdf5 + version: 1.12.2 + build: nompi_ha7af310_101 + build_number: 101 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda + sha256: bc01f800a87da06adbe465a7b33f569a67c4b8911460c8b9089660cede4cabe6 + md5: 050df57fed623d4b6aa817e9c8bdbfaa + depends: + - libaec >=1.0.6,<2.0a0 + - libcurl >=7.87.0,<9.0a0 + - libcxx >=13.0.1 + - libgfortran 5.* + - libgfortran5 >=11.3.0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.7,<4.0a0 + license: LicenseRef-HDF5 + license_family: BSD + size: 2888228 + timestamp: 1671624822360 +- kind: conda + name: hdf5 + version: 1.14.1 + build: nompi_h73e8ff5_100 + build_number: 100 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.1-nompi_h73e8ff5_100.conda + sha256: 77c72068101ec885527fc00928b4926ffadacb63b36afd7ed36bdafdcca43709 + md5: baa1a74c11b8b3bd353590602c84aba7 + depends: + - libaec >=1.0.6,<2.0a0 + - libcurl >=8.1.2,<9.0a0 + - 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: LicenseRef-HDF5 + license_family: BSD + size: 2028733 + timestamp: 1687158896543 +- kind: conda + name: humanfriendly + version: '10.0' + build: py311h1ea47a8_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/humanfriendly-10.0-py311h1ea47a8_5.conda + sha256: a94127c7b2c759ee68b32edcda880f720a797c44a46e7047a675398cfc52f96a + md5: 95fa4dc3a35dbf6afd66e0718a8f793d + depends: + - pyreadline3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 173484 + timestamp: 1696713670614 +- kind: conda + name: humanfriendly + version: '10.0' + build: pyhd8ed1ab_6 + build_number: 6 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyhd8ed1ab_6.conda + sha256: cd93d5d4b1d98f7ce76a8658c35de9c63e17b3a40e52f40fa2f459e0da83d0b1 + md5: 2ed1fe4b9079da97c44cfe9c2e5078fd + depends: + - __unix + - python >=3.8 + license: MIT + license_family: MIT + size: 73376 + timestamp: 1696765379156 +- kind: conda + name: icu + version: '70.1' + build: h0e60522_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/icu-70.1-h0e60522_0.tar.bz2 + sha256: 466ab9b92671198e833c0b508f78934bd98ae4c4dbd5f44c599833cc6a5603f8 + md5: 64073396a905b6df895ab2489fae3847 + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: MIT + license_family: MIT + size: 17852923 + timestamp: 1648051226696 +- kind: conda + name: icu + version: '70.1' + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2 + sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + md5: 87473a15119779e021c314249d4b4aed + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: MIT + license_family: MIT + size: 14191488 + timestamp: 1648050221778 +- kind: conda + name: icu + version: '70.1' + build: h6b3803e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2 + sha256: 303b558da70167473e4fa5f9a12c547217061c930c13ca3f982d55922437606e + md5: 5fbe318a6be2e8d0f9b0b0c730a62748 + depends: + - libcxx >=12.0.1 + license: MIT + license_family: MIT + size: 13900799 + timestamp: 1648050828805 +- kind: conda + name: icu + version: '70.1' + build: h96cf925_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2 + sha256: 0807aa3fd93804ab239808d149e7f210a83e1c61bc59bb84818f4ef9f6036d86 + md5: 376635049e9b9b0bb875efd39dcd7b3b + depends: + - libcxx >=12.0.1 + license: MIT + license_family: MIT + size: 13769404 + timestamp: 1648050509297 +- kind: conda + name: idna + version: '3.6' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.6-pyhd8ed1ab_0.conda + sha256: 6ee4c986d69ce61e60a20b2459b6f2027baeba153f0a64995fd3cb47c2cc7e07 + md5: 1a76f09108576397c41c0b0c5bd84134 + depends: + - python >=3.6 + license: BSD-3-Clause + license_family: BSD + size: 50124 + timestamp: 1701027126206 +- kind: conda + name: imagesize + version: 1.4.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + md5: 7de5386c8fea29e76b303f37dde4c352 + depends: + - python >=3.4 + license: MIT + license_family: MIT + size: 10164 + timestamp: 1656939625410 +- 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 + size: 27043 + timestamp: 1710971498183 +- 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: 38db827f445ae437a15d50a94816ae67a48285d0700f736af3eb90800a71f079 + md5: dcbadab7a68738a028e195ab68ab2d2e + depends: + - importlib_resources >=6.4.0,<6.4.1.0a0 + - python >=3.8 + license: Apache-2.0 + license_family: APACHE + size: 9657 + timestamp: 1711041029062 +- kind: conda + name: importlib_metadata + version: 7.1.0 + build: hd8ed1ab_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.1.0-hd8ed1ab_0.conda + sha256: 01dc057a45dedcc742a71599f67c7383ae2bf873be6018ebcbd06ac8d994dedb + md5: 6ef2b72d291b39e479d7694efa2b2b98 + depends: + - importlib-metadata >=7.1.0,<7.1.1.0a0 + license: Apache-2.0 + license_family: APACHE + size: 9444 + timestamp: 1710971502542 +- 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 + size: 33056 + timestamp: 1711041009039 +- 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 + size: 11101 + timestamp: 1673103208955 +- kind: conda + name: intel-openmp + version: 2024.0.0 + build: h57928b3_49841 + build_number: 49841 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.0.0-h57928b3_49841.conda + sha256: 6ee8eb9080bb3268654e015dd17ad79d0c1ea98b2eee6b928ecd27f01d6b38e8 + md5: e3255c8cdaf1d52f15816d1970f9c77a + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 2325424 + timestamp: 1706182537883 +- kind: conda + name: isodate + version: 0.6.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/isodate-0.6.1-pyhd8ed1ab_0.tar.bz2 + sha256: af8f801e093da52a50ca0ea0510dfaf6898fea37e66d08d335e370235dede9fc + md5: 4a62c93c1b5c0b920508ae3fd285eaf5 + depends: + - python >=3.6 + - six + license: BSD-3-Clause + license_family: BSD + size: 28971 + timestamp: 1639582852721 +- kind: conda + name: itsdangerous + version: 2.1.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 + sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 + md5: 3c3de74912f11d2b590184f03c7cd09b + depends: + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + size: 16377 + timestamp: 1648147263536 +- kind: conda + name: jack + version: 1.9.22 + build: h11f4161_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h11f4161_0.conda + sha256: 9f173c6633f7ef049b05cd92a9fc028402972ddc44a56d5bb51d8879d73bbde7 + md5: 504fa9e712b99494a9cf4630e3ca7d78 + depends: + - alsa-lib >=1.2.8,<1.2.9.0a0 + - libdb >=6.2.32,<6.3.0a0 + - libgcc-ng >=12 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 463582 + timestamp: 1675358702299 +- kind: conda + name: jaraco.classes + version: 3.3.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.1-pyhd8ed1ab_0.conda + sha256: 232b40de8176fa7fb66a893653f8ae03c29616e04a83dae5a47df94b74e256ca + md5: c541ae264c9f1f21d83fc30dffb908ee + depends: + - more-itertools + - python >=3.7 + license: MIT + license_family: MIT + size: 12069 + timestamp: 1707378260988 +- kind: conda + name: jaraco.context + version: 4.3.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jaraco.context-4.3.0-pyhd8ed1ab_0.conda + sha256: 7ce041636e6a62bf5f54b2d45f506dc77e27cd854fd754df975382f636282619 + md5: 53511e966e3ced065fbb1d3d5470d16d + depends: + - python >=3.6 + license: MIT + license_family: MIT + size: 10812 + timestamp: 1675258798785 +- kind: conda + name: jaraco.functools + version: 4.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jaraco.functools-4.0.0-pyhd8ed1ab_0.conda + sha256: d2e866fd22a48eaa2f795b6a3b0bf16f066293322ce04dd65cca36267160ead6 + md5: 547670a612fd335eaa5ffbf0fa75cb64 + depends: + - more-itertools + - python >=3.8 + license: MIT + license_family: MIT + size: 15192 + timestamp: 1701695329516 +- kind: conda + name: jeepney + version: 0.8.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jeepney-0.8.0-pyhd8ed1ab_0.tar.bz2 + sha256: 16639759b811866d63315fe1391f6fb45f5478b823972f4d3d9f0392b7dd80b8 + md5: 9800ad1699b42612478755a2d26c722d + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 36895 + timestamp: 1649085298891 +- 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 + size: 111589 + timestamp: 1704967140287 +- kind: conda + name: joblib + version: 1.3.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda + sha256: 31e05d47970d956206188480b038829d24ac11fe8216409d8584d93d40233878 + md5: 4da50d410f553db77e62ab62ffaa1abc + depends: + - python >=3.7 + - setuptools + license: BSD-3-Clause + license_family: BSD + size: 221200 + timestamp: 1691577306309 +- kind: conda + name: jpeg + version: 9e + build: h0b41bf4_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda + sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b + md5: c7a069243e1fbe9a556ed2ec030e6407 + depends: + - libgcc-ng >=12 + constrains: + - libjpeg-turbo <0.0.0a + license: IJG + size: 240359 + timestamp: 1676177310738 +- kind: conda + name: jpeg + version: 9e + build: h1a8c8d9_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda + sha256: 7e21d03917fb535b39c3af0cc7b7115617556a4ca2fe13018c09407987883b34 + md5: ef1cce2ab799e0c2f32c3344125ff218 + constrains: + - libjpeg-turbo <0.0.0a + license: IJG + size: 218587 + timestamp: 1676177519876 +- kind: conda + name: jpeg + version: 9e + build: hb7f2c08_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda + sha256: 1ef5f9b4d9817820224c92b016da210b1356250d7272e16901c547e156b3e615 + md5: 6b55131ae9445ef38746dc6b080acda9 + constrains: + - libjpeg-turbo <0.0.0a + license: IJG + size: 231847 + timestamp: 1676177453517 +- kind: conda + name: jpeg + version: 9e + build: hcfcfb64_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda + sha256: 7ee2ecbb5fe11566601e612fa463fc2060e55083d9cb1eb05c58e30a9e110b41 + md5: 824f1e030d224e9e376a4655032fdbc7 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + constrains: + - libjpeg-turbo <0.0.0a + license: IJG + size: 289378 + timestamp: 1676178492989 +- kind: conda + name: jplephem + version: '2.21' + build: pyh864a33b_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.21-pyh864a33b_0.conda + sha256: 591bf16bee8c9fccec5ac08f835dbf9b946fd47890db677185840fa900226342 + md5: f62e2ca858d75c2bf016c4799a6f038d + depends: + - numpy + - python >=3.3 + license: MIT + license_family: MIT + size: 39397 + timestamp: 1701439300991 +- kind: conda + name: json5 + version: 0.9.24 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.24-pyhd8ed1ab_0.conda + sha256: 148a427d4867ecd367b2bb9c2ef11ae7795abeabc8454f802f28ff692b3ce1aa + md5: fc9780a517b51ea3798fc011c17ffd51 + depends: + - python >=3.7,<4.0 + license: Apache-2.0 + license_family: APACHE + size: 27927 + timestamp: 1710632397456 +- 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 + size: 17366 + timestamp: 1695536420928 +- kind: conda + name: jsonpointer + version: '2.4' + build: py311h1ea47a8_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py311h1ea47a8_3.conda + sha256: 13042586b08e8caa60615e7c42d05601f9421e8bda5df932e3ef9d2401bf2435 + md5: db8fc59f9215e668e602f769d0bf67bb + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 34654 + timestamp: 1695397742357 +- kind: conda + name: jsonpointer + version: '2.4' + build: py311h267d04e_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-2.4-py311h267d04e_3.conda + sha256: 807d6c44f3e34139bfd25db4409381a6ce37fad2902c58f10fa7e1c30a64333d + md5: b6008a5b9180e58a235f5e45432dfe2e + 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 + size: 18841 + timestamp: 1695397944650 +- kind: conda + name: jsonpointer + version: '2.4' + build: py311h38be061_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py311h38be061_3.conda + sha256: 976f7bf3c3a49c3066f36b67c12ae06b31542e53b843bb4362f31c9e449c6c46 + md5: 41d52d822edf991bf0e6b08c1921a8ec + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 18389 + timestamp: 1695397377176 +- kind: conda + name: jsonpointer + version: '2.4' + build: py311h6eed73b_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py311h6eed73b_3.conda + sha256: b0ba738e1dbf3b69558557cd1e63310364e045b8c8e7f73fdce7e71928b5f22a + md5: ed1c23d0e55abd27d8b9e31c58105140 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 18557 + timestamp: 1695397765266 +- 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 + size: 72817 + timestamp: 1705707712082 +- 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 + size: 16431 + timestamp: 1703778502971 +- kind: conda + name: keyring + version: 25.0.0 + build: pyh534df25_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/keyring-25.0.0-pyh534df25_1.conda + sha256: 18df439765b90076b2ff66dc7fd42978a6bad8559bf3f6014848776c270d5cca + md5: 1ce328f686ca5f0c96bd3371c61dccfe + depends: + - __osx + - importlib_metadata >=4.11.4 + - importlib_resources + - jaraco.classes + - jaraco.context + - jaraco.functools + - python >=3.8 + license: MIT + license_family: MIT + size: 36209 + timestamp: 1711311152295 +- kind: conda + name: keyring + version: 25.0.0 + build: pyh7428d3b_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/keyring-25.0.0-pyh7428d3b_1.conda + sha256: 7f2936a6244d2b97e63bee282f2513bf910a577358d943a0feefeff75b9199a2 + md5: 6ea6138c4a9d54b23e9c9516dc284bc2 + depends: + - __win + - importlib_metadata >=4.11.4 + - importlib_resources + - jaraco.classes + - jaraco.context + - jaraco.functools + - python >=3.8 + - pywin32-ctypes >=0.2.0 + license: MIT + license_family: MIT + size: 36323 + timestamp: 1711311139716 +- kind: conda + name: keyring + version: 25.0.0 + build: pyha804496_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/keyring-25.0.0-pyha804496_1.conda + sha256: d2360927ee10760c226e6896d2d312ed56b16e774cccd2d9763120bd9326b349 + md5: c7daf042882410598a451c31a22fcf0e + depends: + - __linux + - importlib_metadata >=4.11.4 + - importlib_resources + - jaraco.classes + - jaraco.context + - jaraco.functools + - jeepney >=0.4.2 + - python >=3.8 + - secretstorage >=3.2 + license: MIT + license_family: MIT + size: 35706 + timestamp: 1711310893482 +- 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 + size: 117831 + timestamp: 1646151697040 +- kind: conda + name: kiwisolver + version: 1.4.5 + build: py311h005e61a_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.5-py311h005e61a_1.conda + sha256: 8fdd1bff75c24ac6a2a13be4db1c9abcfa39ab50b81539e8bd01131141df271a + md5: de0b3f37405f8386ac8be18fdc06ff92 + 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-3-Clause + license_family: BSD + size: 55822 + timestamp: 1695380386563 +- kind: conda + name: kiwisolver + version: 1.4.5 + build: py311h5fe6e05_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.5-py311h5fe6e05_1.conda + sha256: 586a4d0a17e6cfd9f8fdee56106d263ee40ca156832774d6e899f82ad68ac8d0 + md5: 24305b23f7995de72bbd53b7c01242a2 + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 60694 + timestamp: 1695380246398 +- kind: conda + name: kiwisolver + version: 1.4.5 + build: py311h9547e67_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.5-py311h9547e67_1.conda + sha256: 723b0894d2d2b05a38f9c5a285d5a0a5baa27235ceab6531dbf262ba7c6955c1 + md5: 2c65bdf442b0d37aad080c8a4e0d452f + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 73273 + timestamp: 1695380140676 +- kind: conda + name: kiwisolver + version: 1.4.5 + build: py311he4fd1f5_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.5-py311he4fd1f5_1.conda + sha256: 907af50734789d47b3e8b2148dde763699dc746c64e5849baf6bd720c8cd0235 + md5: 4c871d65040b8c7bbb914df7f8f11492 + depends: + - libcxx >=15.0.7 + - 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 + size: 61946 + timestamp: 1695380538042 +- kind: conda + name: krb5 + version: 1.20.1 + build: h049b76e_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda + sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 + md5: db11fa2968ef0837288fe2d7f5b77a50 + depends: + - libcxx >=14.0.6 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.0.7,<4.0a0 + license: MIT + license_family: MIT + size: 1127291 + timestamp: 1671092045705 +- kind: conda + name: krb5 + version: 1.20.1 + build: h69eda48_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda + sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 + md5: a85db53e45b1173f270fc998dd40ec03 + depends: + - libcxx >=14.0.6 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.0.7,<4.0a0 + license: MIT + license_family: MIT + size: 1094005 + timestamp: 1671091920523 +- kind: conda + name: krb5 + version: 1.20.1 + build: h81ceb04_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda + sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 + md5: 89a41adce7106749573d883b2f657d78 + 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.0.7,<4.0a0 + license: MIT + license_family: MIT + size: 1329877 + timestamp: 1671091750695 +- kind: conda + name: krb5 + version: 1.20.1 + build: heb0366b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda + sha256: 429edc4fa9e2420c55cdbd9febb154d2358bf662735efda4372f62142ff310cd + md5: a07b05ee8f451ab15698397185efe989 + depends: + - openssl >=3.0.7,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 717332 + timestamp: 1671092419752 +- kind: conda + name: lame + version: '3.100' + build: h166bdaf_1003 + build_number: 1003 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: a8832b479f93521a9e7b5b743803be51 + depends: + - libgcc-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- kind: conda + name: lcms2 + version: '2.14' + build: h6ed2654_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-h6ed2654_0.tar.bz2 + sha256: cbadb4150850941bf0518ba948effbbdd89b2c28dfdfed54eae196037e015b43 + md5: dcc588839de1445d90995a0a2c4f3a39 + depends: + - jpeg >=9e,<10a + - libgcc-ng >=12 + - libtiff >=4.4.0,<4.5.0a0 + license: MIT + license_family: MIT + size: 262144 + timestamp: 1667332608997 +- kind: conda + name: lcms2 + version: '2.14' + build: h8193b64_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.14-h8193b64_0.tar.bz2 + sha256: 642f730026c53c17e6586c1794ffd1b0f1d5176418d77d02e2529540b76e06d6 + md5: 9bc9a1c491795c92568481b6ab59d9c5 + depends: + - jpeg >=9e,<10a + - libtiff >=4.4.0,<4.5.0a0 + license: MIT + license_family: MIT + size: 232610 + timestamp: 1667333143675 +- kind: conda + name: lcms2 + version: '2.14' + build: h90d422f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.14-h90d422f_0.tar.bz2 + sha256: 1e79c0c2ca28f00d2b171655ced23baf630aa87eca550ded775311c6dac04758 + md5: a0deec92aa16fca7bf5a6717d05f88ee + depends: + - jpeg >=9e,<10a + - libtiff >=4.4.0,<4.5.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 1012014 + timestamp: 1667333104724 +- kind: conda + name: lcms2 + version: '2.14' + build: h90f4b2a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.14-h90f4b2a_0.tar.bz2 + sha256: c9cc9f806ae1cdc40597d2415b8ffe9448db434f109133938968b371f16580b8 + md5: e56c432e9a78c63692fa6bd076a15713 + depends: + - jpeg >=9e,<10a + - libtiff >=4.4.0,<4.5.0a0 + license: MIT + license_family: MIT + size: 253507 + timestamp: 1667333028378 +- kind: conda + name: ld64 + version: '609' + build: h89fa09d_15 + build_number: 15 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h89fa09d_15.conda + sha256: 6a4370f5984a429a8695bb4f87b879ec2a4af284b0859de863a938cc4a758b81 + md5: 920d98b2054e806dbe4c5fb8f54cad31 + depends: + - ld64_osx-arm64 609 hc4dc95b_15 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - cctools 973.0.1.* + - cctools_osx-arm64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 19147 + timestamp: 1697075929066 +- kind: conda + name: ld64 + version: '609' + build: ha91a046_15 + build_number: 15 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-ha91a046_15.conda + sha256: 5c13ce2916f592adb29301dfbbcfe773437744f2890881615210b041b6276fc2 + md5: 3c27099076bcf8fdde53785efb46dbf1 + depends: + - ld64_osx-64 609 h0fd476b_15 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - cctools 973.0.1.* + - cctools_osx-64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 19091 + timestamp: 1697075759131 +- kind: conda + name: ld64_osx-64 + version: '609' + build: h0fd476b_15 + build_number: 15 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-h0fd476b_15.conda + sha256: 6d793058554a46ffd4a059bf3bd33741856bfcbdaeab8e11cc1dc2df1137f7f0 + md5: f98d11f8e568521e1e3f88cbe5a4d53c + depends: + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - sigtool + - tapi >=1100.0.11,<1101.0a0 + constrains: + - cctools 973.0.1.* + - ld 609.* + - clang >=15.0.7,<16.0a0 + - cctools_osx-64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1062203 + timestamp: 1697075547194 +- kind: conda + name: ld64_osx-arm64 + version: '609' + build: hc4dc95b_15 + build_number: 15 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-hc4dc95b_15.conda + sha256: 78696e68684c8f8e4507bcdf3e072b5c0f6eb7af58383eb339a5035999039cb2 + md5: 19220ad0db4efb72970ab401ebbd7c33 + depends: + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - sigtool + - tapi >=1100.0.11,<1101.0a0 + constrains: + - clang >=15.0.7,<16.0a0 + - cctools 973.0.1.* + - ld 609.* + - cctools_osx-arm64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1046454 + timestamp: 1697075685770 +- 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 + size: 704696 + timestamp: 1674833944779 +- kind: conda + name: lerc + version: 4.0.0 + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 76bbff344f0134279f225174e9064c8f + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 281798 + timestamp: 1657977462600 +- kind: conda + name: lerc + version: 4.0.0 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: 1900cb3cab5055833cfddb0ba233b074 + depends: + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30037 + license: Apache-2.0 + license_family: Apache + size: 194365 + timestamp: 1657977692274 +- kind: conda + name: lerc + version: 4.0.0 + build: h9a09cb3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + md5: de462d5aacda3b30721b512c5da4e742 + depends: + - libcxx >=13.0.1 + license: Apache-2.0 + license_family: Apache + size: 215721 + timestamp: 1657977558796 +- kind: conda + name: lerc + version: 4.0.0 + build: hb486fe8_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + md5: f9d6a4c82889d5ecedec1d90eb673c55 + depends: + - libcxx >=13.0.1 + license: Apache-2.0 + license_family: Apache + size: 290319 + timestamp: 1657977526749 +- kind: conda + name: libaec + version: 1.1.3 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 5e97e271911b8b2001a8b71860c32faa + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 35446 + timestamp: 1711021212685 +- kind: conda + name: libaec + version: 1.1.3 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 8723000f6ffdbdaef16025f0a01b64c5 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 32567 + timestamp: 1711021603471 +- kind: conda + name: libaec + version: 1.1.3 + build: h73e2aa4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda + sha256: dae5921339c5d89f4bf58a95fd4e9c76270dbf7f6a94f3c5081b574905fcccf8 + md5: 66d3c1f6dd4636216b4fca7a748d50eb + depends: + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 28602 + timestamp: 1711021419744 +- kind: conda + name: libaec + version: 1.1.3 + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda + sha256: 896189b7b48a194c46a3556ea04943ef81cbe0498521231f8eb25816a68bc8ed + md5: 6f0b8e56d2e7bae12a18fc5b2cd9f310 + depends: + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 28451 + timestamp: 1711021498493 +- kind: conda + name: libarchive + version: 3.6.2 + build: h3d51595_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.6.2-h3d51595_0.conda + sha256: 663c7ac16dd07a6c452850699fb921167ec1f0de2501dc17d5aac2322b960413 + md5: 9f915b4adeb9dcfd450b9ad238e2db4c + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libxml2 >=2.10.3,<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.0.7,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + size: 835583 + timestamp: 1670871002021 +- kind: conda + name: libarchive + version: 3.6.2 + build: h6d8d9f1_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.6.2-h6d8d9f1_0.conda + sha256: 0c479fccc8ffc3d3b265132bb267822b2accfea4632808149f62ad7b82ec9820 + md5: bbd5c956d814ca90db82a759a0c58678 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libxml2 >=2.10.3,<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.0.7,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + size: 722769 + timestamp: 1670871322919 +- kind: conda + name: libarchive + version: 3.6.2 + build: h6f8411a_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.6.2-h6f8411a_1.conda + sha256: 4699b9439453cea6a28c94eb6226929adcf4fbe3a9a635f7a7a229ed903c8987 + md5: 314124476882f64abc20b76148d2909b + depends: + - bzip2 >=1.0.8,<2.0a0 + - libxml2 >=2.11.3,<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.1.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.2,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + size: 960678 + timestamp: 1684325145661 +- kind: conda + name: libarchive + version: 3.6.2 + build: h83f22c9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.6.2-h83f22c9_0.conda + sha256: 206ce820b93f935b8ab2520d01db13da7beb27ba291ef9a98696e92b0cf9dbae + md5: 8b59d0f34c4d4db0ee668a5900cc406d + depends: + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libxml2 >=2.10.3,<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.0.7,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: BSD-2-Clause + license_family: BSD + size: 751665 + timestamp: 1670871316527 +- kind: conda + name: libblas + version: 3.9.0 + build: 21_linux64_openblas + build_number: 21 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-21_linux64_openblas.conda + sha256: ebd5c91f029f779fb88a1fcbd1e499559a9c258e3674ff58a2fbb4e375ae56d9 + md5: 0ac9f44fc096772b0aa092119b00c3ca + depends: + - libopenblas >=0.3.26,<0.3.27.0a0 + - libopenblas >=0.3.26,<1.0a0 + constrains: + - liblapacke 3.9.0 21_linux64_openblas + - blas * openblas + - libcblas 3.9.0 21_linux64_openblas + - liblapack 3.9.0 21_linux64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14691 + timestamp: 1705979549006 +- kind: conda + name: libblas + version: 3.9.0 + build: 21_osx64_openblas + build_number: 21 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-21_osx64_openblas.conda + sha256: 5381eab20f4793996cf22e58461ea8a3a4dff1442bb45663b5920f2d26288688 + md5: 23286066c595986aa0df6452a8416c08 + depends: + - libopenblas >=0.3.26,<0.3.27.0a0 + - libopenblas >=0.3.26,<1.0a0 + constrains: + - libcblas 3.9.0 21_osx64_openblas + - liblapacke 3.9.0 21_osx64_openblas + - blas * openblas + - liblapack 3.9.0 21_osx64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14822 + timestamp: 1705979699547 +- kind: conda + name: libblas + version: 3.9.0 + build: 21_osxarm64_openblas + build_number: 21 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-21_osxarm64_openblas.conda + sha256: 9a553af92af9f241457f4d14eabb872bc341cd0ddea1da6e7939e9c6a7ee1a25 + md5: b3804f4af39eca9d77360b12811e6d1d + depends: + - libopenblas >=0.3.26,<0.3.27.0a0 + - libopenblas >=0.3.26,<1.0a0 + constrains: + - libcblas 3.9.0 21_osxarm64_openblas + - liblapack 3.9.0 21_osxarm64_openblas + - blas * openblas + - liblapacke 3.9.0 21_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14915 + timestamp: 1705980172730 +- kind: conda + name: libblas + version: 3.9.0 + build: 21_win64_mkl + build_number: 21 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-21_win64_mkl.conda + sha256: ad47053cee17802df875203aba191b04d97a50d820dbf75a114a50972c517334 + md5: ebba3846d11201fe54277e4965ba5250 + depends: + - mkl 2024.0.0 h66d3029_49657 + constrains: + - liblapack 3.9.0 21_win64_mkl + - blas * mkl + - libcblas 3.9.0 21_win64_mkl + - liblapacke 3.9.0 21_win64_mkl + license: BSD-3-Clause + license_family: BSD + size: 5017135 + timestamp: 1705980415163 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda + sha256: f57c57c442ef371982619f82af8735f93a4f50293022cfd1ffaf2ff89c2e0b2a + md5: 9e6c31441c9aa24e41ace40d6151aab6 + license: MIT + license_family: MIT + size: 67476 + timestamp: 1695990207321 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda + sha256: 556f0fddf4bd4d35febab404d98cb6862ce3b7ca843e393da0451bfc4654cf07 + md5: cd68f024df0304be41d29a9088162b02 + license: MIT + license_family: MIT + size: 68579 + timestamp: 1695990426128 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda + sha256: f75fed29b0cc503d1b149a4945eaa32df56e19da5e2933de29e8f03947203709 + md5: f77f319fb82980166569e1280d5b2864 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 70598 + timestamp: 1695990405143 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda + sha256: 40f29d1fab92c847b083739af86ad2f36d8154008cf99b64194e4705a1725d78 + md5: aec6c91c7371c26392a06708a73c70e5 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 69403 + timestamp: 1695990007212 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda + sha256: b11939c4c93c29448660ab5f63273216969d1f2f315dd9be60f3c43c4e61a50c + md5: 9ee0bab91b2ca579e10353738be36063 + depends: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + size: 30327 + timestamp: 1695990232422 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda + sha256: c1c85937828ad3bc434ac60b7bcbde376f4d2ea4ee42d15d369bf2a591775b4a + md5: ee1a519335cc10d0ec7e097602058c0a + depends: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 28928 + timestamp: 1695990463780 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda + sha256: 1b352ee05931ea24c11cd4a994d673890fd1cc690c21e023e736bdaac2632e93 + md5: 19ce3e1dacc7912b3d6ff40690ba9ae0 + depends: + - libbrotlicommon 1.1.0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 32788 + timestamp: 1695990443165 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda + sha256: 86fc861246fbe5ad85c1b6b3882aaffc89590a48b42d794d3d5c8e6d99e5f926 + md5: f07002e225d7a60a694d42a7bf5ff53f + depends: + - libbrotlicommon 1.1.0 hd590300_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 32775 + timestamp: 1695990022788 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda + sha256: bc964c23e1a60ca1afe7bac38a9c1f2af3db4a8072c9f2eac4e4de537a844ac7 + md5: 8a421fe09c6187f0eb5e2338a8a8be6d + depends: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + size: 299092 + timestamp: 1695990259225 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda + sha256: 690dfc98e891ee1871c54166d30f6e22edfc2d7d6b29e7988dde5f1ce271c81a + md5: d7e077f326a98b2cc60087eaff7c730b + depends: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 280943 + timestamp: 1695990509392 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda + sha256: eae6b76154e594c6d211160c6d1aeed848672618152a562e0eabdfa641d34aca + md5: 71e890a0b361fd58743a13f77e1506b7 + depends: + - libbrotlicommon 1.1.0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 246515 + timestamp: 1695990479484 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda + sha256: f751b8b1c4754a2a8dfdc3b4040fa7818f35bbf6b10e905a47d3a194b746b071 + md5: 5fc11c6020d421960607d821310fcd4d + depends: + - libbrotlicommon 1.1.0 hd590300_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 282523 + timestamp: 1695990038302 +- kind: conda + name: libcap + version: '2.67' + build: he9d0100_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.67-he9d0100_0.conda + sha256: 4dcf2290b9b90ad2654fbfff52e9c1d49885ce71f0bb853520e2b9d54809605b + md5: d05556c80caffff164d17bdea0105a1a + depends: + - attr >=2.5.1,<2.6.0a0 + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 99032 + timestamp: 1675412183349 +- kind: conda + name: libcblas + version: 3.9.0 + build: 21_linux64_openblas + build_number: 21 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-21_linux64_openblas.conda + sha256: 467bbfbfe1a1aeb8b1f9f6485eedd8ed1b6318941bf3702da72336ccf4dc25a6 + md5: 4a3816d06451c4946e2db26b86472cb6 + depends: + - libblas 3.9.0 21_linux64_openblas + constrains: + - liblapacke 3.9.0 21_linux64_openblas + - blas * openblas + - liblapack 3.9.0 21_linux64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14614 + timestamp: 1705979564122 +- kind: conda + name: libcblas + version: 3.9.0 + build: 21_osx64_openblas + build_number: 21 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-21_osx64_openblas.conda + sha256: e2b1455612d4cfb3ac3170f0c538516ebd0b113780ac6603338245354e1b2f02 + md5: 7a1b54774bad723e8ba01ca48eb301b5 + depends: + - libblas 3.9.0 21_osx64_openblas + constrains: + - liblapacke 3.9.0 21_osx64_openblas + - blas * openblas + - liblapack 3.9.0 21_osx64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14715 + timestamp: 1705979715508 +- kind: conda + name: libcblas + version: 3.9.0 + build: 21_osxarm64_openblas + build_number: 21 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-21_osxarm64_openblas.conda + sha256: 4510e3e4824693c3f80fc54e72d81dd89acaa6e6d68cd948af0870a640ea7eeb + md5: 48e9d42c65ce664d8fccef2ac6af853c + depends: + - libblas 3.9.0 21_osxarm64_openblas + constrains: + - liblapack 3.9.0 21_osxarm64_openblas + - blas * openblas + - liblapacke 3.9.0 21_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14800 + timestamp: 1705980195551 +- kind: conda + name: libcblas + version: 3.9.0 + build: 21_win64_mkl + build_number: 21 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-21_win64_mkl.conda + sha256: 886505d0a4a5b508b2255991395aadecdad140719ba0d413411fec86491a9283 + md5: 38e5ec23bc2b62f9dd971143aa9dddb7 + depends: + - libblas 3.9.0 21_win64_mkl + constrains: + - liblapack 3.9.0 21_win64_mkl + - blas * mkl + - liblapacke 3.9.0 21_win64_mkl + license: BSD-3-Clause + license_family: BSD + size: 5017024 + timestamp: 1705980469944 +- kind: conda + name: libclang + version: 13.0.1 + build: default_h255f2f3_6 + build_number: 6 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-13.0.1-default_h255f2f3_6.conda + sha256: bb5ab1fcb859e9db40619b85a75aa54e8a2be51e59f1de6305b84d911a582e41 + md5: c450e334a4d41707e1294549ab107d6e + depends: + - libcxx >=16.0.6 + - libllvm13 >=13.0.1,<13.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6812145 + timestamp: 1707152564409 +- kind: conda + name: libclang + version: 14.0.6 + build: default_h5dc8d65_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-14.0.6-default_h5dc8d65_1.conda + sha256: 85b5e616b42e420968512e42276c4d61c647db15e5f3f6065ed6dbbcc2c01b46 + md5: d24aeebf80ea1d9df83c8436afa04a7f + depends: + - libclang13 14.0.6 default_hc7183e1_1 + - libcxx >=15.0.7 + - libllvm14 >=14.0.6,<14.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133667 + timestamp: 1684414047342 +- kind: conda + name: libclang + version: 15.0.7 + build: default_h127d8a8_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h127d8a8_5.conda + sha256: 606b79c8a4a926334191d79f4a1447aac1d82c43344e3a603cbba31ace859b8f + md5: 09b94dd3a7e304df5b83176239347920 + depends: + - libclang13 15.0.7 default_h5d6823c_5 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133467 + timestamp: 1711064002817 +- kind: conda + name: libclang + version: 15.0.7 + build: default_h3a3e6c3_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libclang-15.0.7-default_h3a3e6c3_5.conda + sha256: 562dea76c17c30ed6d78734a9e40008f45cdab15611439d7d4e8250e0040f3ef + md5: 26e1a5a4ff7f8e3f5fb89be829818a75 + depends: + - libclang13 15.0.7 default_hf64faad_5 + - libxml2 >=2.12.6,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 148436 + timestamp: 1711068015076 +- kind: conda + name: libclang13 + version: 14.0.6 + build: default_hc7183e1_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-14.0.6-default_hc7183e1_1.conda + sha256: 775d89c70250ed7fb9d2c480d7a8dcbfff9942a263cef2df89e51d87aafb40ee + md5: c811f112a83cefb15d7b4f511579b6e8 + depends: + - libcxx >=15.0.7 + - libllvm14 >=14.0.6,<14.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6248677 + timestamp: 1684413932938 +- kind: conda + name: libclang13 + version: 15.0.7 + build: default_h5d6823c_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h5d6823c_5.conda + sha256: 91ecfcf545a5d4588e9fad5db2b5b04eeef18cae1c03b790829ef8b978f06ccd + md5: 2d694a9ffdcc30e89dea34a8dcdab6ae + depends: + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9583734 + timestamp: 1711063939856 +- kind: conda + name: libclang13 + version: 15.0.7 + build: default_hf64faad_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libclang13-15.0.7-default_hf64faad_5.conda + sha256: b952b85a6124442be3fe8af23d56f123548f7b28067f60615f7233197469a02d + md5: 2f96c58f89abccb04bbc8cd57961111f + depends: + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21892425 + timestamp: 1711067804682 +- kind: conda + name: libcups + version: 2.3.3 + build: h36d4200_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda + sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 + md5: c9f4416a34bc91e0eb029f912c68f81f + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: Apache-2.0 + license_family: Apache + size: 4519779 + timestamp: 1671148111233 +- kind: conda + name: libcurl + version: 8.1.2 + build: h409715c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.1.2-h409715c_0.conda + sha256: d572c31ff48d2db6ca5bab476bf325811cfc82577480b3791487c3fe7bff2ffa + md5: 50c873c9660ed116707ae15b663928d8 + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libgcc-ng >=12 + - libnghttp2 >=1.52.0,<2.0a0 + - libssh2 >=1.10.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: curl + license_family: MIT + size: 372833 + timestamp: 1685447685782 +- kind: conda + name: libcurl + version: 8.1.2 + build: h68f0423_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.1.2-h68f0423_0.conda + sha256: a9d21b363c6d3c81ec85903f86989157e7d93d8f247e023ff3b3f69789115a72 + md5: 94b9b7d0e882461fdb72d8d4e7441746 + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libssh2 >=1.10.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 + size: 313345 + timestamp: 1685448211604 +- kind: conda + name: libcurl + version: 8.1.2 + build: h912dcd9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.1.2-h912dcd9_0.conda + sha256: 5d5bbc7a6eb363b2df85c5df32d34295346fc8b4d9e3754bbaf2af3e80422fab + md5: af01aa21cd4bb0cf519cda6bcec83fc5 + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libnghttp2 >=1.52.0,<2.0a0 + - libssh2 >=1.10.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: curl + license_family: MIT + size: 345816 + timestamp: 1685448186761 +- kind: conda + name: libcurl + version: 8.1.2 + build: hbee3ae8_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.1.2-hbee3ae8_0.conda + sha256: 2f81bb06377779ea1abe373a2a89289fb440751ad6f68f947ec0f3b1e4399968 + md5: d51e337da844262f9033c9a26452520f + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libnghttp2 >=1.52.0,<2.0a0 + - libssh2 >=1.10.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: curl + license_family: MIT + size: 352385 + timestamp: 1685448012016 +- 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 + size: 1160232 + timestamp: 1686896993785 +- kind: conda + 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 + size: 1142172 + timestamp: 1686896907750 +- kind: conda + name: libdb + version: 6.2.32 + build: h9c3ff4c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 + sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 + md5: 3f3258d8f841fbac63b36b75bdac1afd + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: AGPL-3.0-only + license_family: AGPL + size: 24409456 + timestamp: 1609539093147 +- kind: conda + name: libdeflate + version: '1.14' + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2 + sha256: 6f7cbc9347964e7f9697bde98a8fb68e0ed926888b3116474b1224eaa92209dc + md5: fc84a0446e4e4fb882e78d786cfb9734 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 82697 + timestamp: 1662888469663 +- kind: conda + name: libdeflate + version: '1.14' + build: h1a8c8d9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2 + sha256: 2adff34121246f809250417a65036cacd3b7929929df51feda9ff90d5156750b + md5: cb64374f9f7ad86b6194e294c56e06a5 + license: MIT + license_family: MIT + size: 61426 + timestamp: 1662888596416 +- kind: conda + name: libdeflate + version: '1.14' + build: hb7f2c08_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2 + sha256: 0153de9987fa6e8dd5be45920470d579af433d4560bfd77318a72b3fd75fb6dc + md5: ce2a6075114c9b64ad8cace52492feee + license: MIT + license_family: MIT + size: 86607 + timestamp: 1662888589675 +- kind: conda + name: libdeflate + version: '1.14' + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.14-hcfcfb64_0.tar.bz2 + sha256: c8b156fc81006234cf898f933b06bed8bb475970cb7983d0eceaf90db65beb8b + md5: 4366e00d3270eb229c026920474a6dda + depends: + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 74947 + timestamp: 1662888915427 +- 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: 105382 + timestamp: 1597616576726 +- 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 + depends: + - ncurses >=6.2,<7.0.0a0 + license: BSD-2-Clause + license_family: BSD + size: 96607 + timestamp: 1597616630749 +- kind: conda + name: libedit + version: 3.1.20191231 + build: he28a2e2_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + depends: + - libgcc-ng >=7.5.0 + - ncurses >=6.2,<7.0.0a0 + license: BSD-2-Clause + license_family: BSD + size: 123878 + timestamp: 1597616541093 +- 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 + size: 106663 + timestamp: 1702146352558 +- kind: conda + 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 + 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 + size: 112766 + timestamp: 1702146165126 +- kind: conda + name: libevent + version: 2.1.10 + build: h28343ad_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2 + sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a + md5: 4a049fc560e00e43151dc51368915fdd + depends: + - libgcc-ng >=9.4.0 + - openssl >=3.0.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1169108 + timestamp: 1633489266107 +- 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 + 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 + 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 + 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: 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 + 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 + 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 + 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: libflac + version: 1.4.3 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda + sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d + md5: ee48bf17cc83a00f59ca1494d5646869 + depends: + - gettext >=0.21.1,<1.0a0 + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 394383 + timestamp: 1687765514062 +- 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 + size: 770506 + timestamp: 1706819192021 +- kind: conda + name: libgcrypt + version: 1.10.3 + build: h49d49c5_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgcrypt-1.10.3-h49d49c5_0.conda + sha256: 34e23c3e0baf53adbcbe5f160b901d94e3f3edc23894274c8248658e9a80f455 + md5: 9a87bef20f74258ff46f8deefd2842d6 + depends: + - libgpg-error >=1.47,<2.0a0 + license: LGPL-2.1-or-later AND GPL-2.0-or-later + license_family: GPL + size: 548308 + timestamp: 1701384022322 +- kind: conda + name: libgcrypt + version: 1.10.3 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgcrypt-1.10.3-h93a5062_0.conda + sha256: 420cf4c920de90d66d0f4d1df8496a08e15193c1c39ab961e6fdc1d42e7bb436 + md5: f34c7930dcef689658226d4fbf7b3b41 + depends: + - libgpg-error >=1.47,<2.0a0 + license: LGPL-2.1-or-later AND GPL-2.0-or-later + license_family: GPL + size: 512161 + timestamp: 1701384009878 +- kind: conda + name: libgcrypt + version: 1.10.3 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda + sha256: d1bd47faa29fec7288c7b212198432b07f890d3d6f646078da93b059c2e9daff + md5: 32d16ad533c59bb0a3c5ffaf16110829 + depends: + - libgcc-ng >=12 + - libgpg-error >=1.47,<2.0a0 + license: LGPL-2.1-or-later AND GPL-2.0-or-later + license_family: GPL + size: 634887 + timestamp: 1701383493365 +- kind: conda + name: libgfortran + version: 5.0.0 + build: 13_2_0_h97931a8_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda + sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d + md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5 + depends: + - libgfortran5 13.2.0 h2873a65_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 110106 + timestamp: 1707328956438 +- kind: conda + name: libgfortran + version: 5.0.0 + build: 13_2_0_hd922786_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda + sha256: 44e541b4821c96b28b27fef5630883a60ce4fee91fd9c79f25a199f8f73f337b + md5: 4a55d9e169114b2b90d3ec4604cd7bbf + depends: + - libgfortran5 13.2.0 hf226fd6_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 110233 + timestamp: 1707330749033 +- kind: conda + name: libgfortran-ng + version: 13.2.0 + build: h69a702a_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: e73e9cfd1191783392131e6238bdb3e9 + depends: + - libgfortran5 13.2.0 ha4646dd_5 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 23829 + timestamp: 1706819413770 +- kind: conda + name: libgfortran5 + version: 13.2.0 + build: h2873a65_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b + md5: e4fb4d23ec2870ff3c40d10afe305aec + depends: + - llvm-openmp >=8.0.0 + constrains: + - libgfortran 5.0.0 13_2_0_*_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1571379 + timestamp: 1707328880361 +- kind: conda + name: libgfortran5 + version: 13.2.0 + build: ha4646dd_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 7a6bd7a12a4bd359e2afe6c0fa1acace + depends: + - libgcc-ng >=13.2.0 + constrains: + - libgfortran-ng 13.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1442769 + timestamp: 1706819209473 +- kind: conda + name: libgfortran5 + version: 13.2.0 + build: hf226fd6_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda + sha256: bafc679eedb468a86aa4636061c55966186399ee0a04b605920d208d97ac579a + md5: 66ac81d54e95c534ae488726c1f698ea + depends: + - llvm-openmp >=8.0.0 + constrains: + - libgfortran 5.0.0 13_2_0_*_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 997381 + timestamp: 1707330687590 +- kind: conda + name: libglib + version: 2.78.1 + build: h6d9ecee_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.78.1-h6d9ecee_0.conda + sha256: b16bc30db9688d17b5d1cd9e93d0640d02a862145b072a63af6e45e91da6795c + md5: 0282868f1debc145b732276b2fe40397 + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - libcxx >=16.0.6 + - libffi >=3.4,<4.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre2 >=10.40,<10.41.0a0 + constrains: + - glib 2.78.1 *_0 + license: LGPL-2.1-or-later + size: 2487882 + timestamp: 1699278098380 +- kind: conda + name: libglib + version: 2.78.1 + build: hd9b11f9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.78.1-hd9b11f9_0.conda + sha256: e18656fc4c9ecfd28382c0f84286a37daf3b33544f50c046bcf93e874a6c1ec0 + md5: 4e4a9c1cf849de0f9e8b36af65f6f291 + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - libcxx >=16.0.6 + - libffi >=3.4,<4.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre2 >=10.40,<10.41.0a0 + constrains: + - glib 2.78.1 *_0 + license: LGPL-2.1-or-later + size: 2440063 + timestamp: 1699278143585 +- kind: conda + name: libglib + version: 2.78.1 + build: hebfc3b9_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.1-hebfc3b9_0.conda + sha256: 44c5f58593b074886436db7d13fdfcba2fe3731867ea52237f049b8400341a2b + md5: ddd09e8904fde46b85f41896621803e6 + depends: + - gettext >=0.21.1,<1.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libiconv >=1.17,<2.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - pcre2 >=10.40,<10.41.0a0 + constrains: + - glib 2.78.1 *_0 + license: LGPL-2.1-or-later + size: 2688566 + timestamp: 1699278005640 +- kind: conda + name: libglib + version: 2.80.0 + build: h39d0aa6_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.80.0-h39d0aa6_1.conda + sha256: 326fb2d1c8789660cec01eda3eec2fa15dd816d291126df13f1c34d80ffda6aa + md5: 6160439f169ec670951460024751b2ae + depends: + - libffi >=3.4,<4.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre2 >=10.43,<10.44.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - glib 2.80.0 *_1 + license: LGPL-2.1-or-later + size: 2805065 + timestamp: 1710939443433 +- 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: + - _libgcc_mutex 0.1 conda_forge + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 419751 + timestamp: 1706819107383 +- kind: conda + name: libgpg-error + version: '1.48' + build: h29b4ebe_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgpg-error-1.48-h29b4ebe_0.conda + sha256: ac468527fa3e52e075facf717e0f7bc2d250708341ffbb969a864e1fccccda75 + md5: ca280b4ab3b4cf0d4335b7869a835d93 + depends: + - gettext >=0.21.1,<1.0a0 + - libcxx >=16 + license: GPL-2.0-only + license_family: GPL + size: 255233 + timestamp: 1708706797391 +- kind: conda + name: libgpg-error + version: '1.48' + build: h71f35ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.48-h71f35ed_0.conda + sha256: c448c6d86d27e10b9e844172000540e9cbfe9c28f968db87f949ba05add9bd50 + md5: 4d18d86916705d352d5f4adfb7f0edd3 + depends: + - gettext >=0.21.1,<1.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: GPL-2.0-only + license_family: GPL + size: 266447 + timestamp: 1708702470365 +- kind: conda + name: libgpg-error + version: '1.48' + build: h91a1ebb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgpg-error-1.48-h91a1ebb_0.conda + sha256: 74b738a3e606870c9412d3177690681321b38733f1e592a0c273192f1422f5ef + md5: 63e8c65e9782a6580b116e56ec185502 + depends: + - gettext >=0.21.1,<1.0a0 + - libcxx >=16 + license: GPL-2.0-only + license_family: GPL + size: 252955 + timestamp: 1708702798637 +- kind: conda + name: libhwloc + version: 2.9.3 + build: default_haede6df_1009 + build_number: 1009 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.3-default_haede6df_1009.conda + sha256: 2e8c4bb7173f281a8e13f333a23c9fb7a1c86d342d7dccdd74f2eb583ddde450 + md5: 87da045f6d26ce9fe20ad76a18f6a18a + depends: + - libxml2 >=2.11.5,<3.0.0a0 + - pthreads-win32 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 2578462 + timestamp: 1694533393675 +- 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 + size: 676469 + timestamp: 1702682458114 +- kind: conda + 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: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only + size: 636146 + timestamp: 1702682547199 +- kind: conda + 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: + - libgcc-ng >=12 + license: LGPL-2.1-only + size: 705775 + timestamp: 1702682170569 +- 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 + size: 666538 + timestamp: 1702682713201 +- kind: conda + name: liblapack + version: 3.9.0 + build: 21_linux64_openblas + build_number: 21 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-21_linux64_openblas.conda + sha256: 64b5c35dce00dd6f9f53178b2fe87116282e00967970bd6551a5a42923806ded + md5: 1a42f305615c3867684e049e85927531 + depends: + - libblas 3.9.0 21_linux64_openblas + constrains: + - liblapacke 3.9.0 21_linux64_openblas + - libcblas 3.9.0 21_linux64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14599 + timestamp: 1705979579648 +- kind: conda + name: liblapack + version: 3.9.0 + build: 21_osx64_openblas + build_number: 21 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-21_osx64_openblas.conda + sha256: 5d0ef4743e8684ad436e31bd3c378d48642815a20c260d358668ba29cd80987a + md5: cf0e4d82cfca6cd9d6c9ed3df45907c9 + depends: + - libblas 3.9.0 21_osx64_openblas + constrains: + - libcblas 3.9.0 21_osx64_openblas + - liblapacke 3.9.0 21_osx64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14738 + timestamp: 1705979734819 +- kind: conda + name: liblapack + version: 3.9.0 + build: 21_osxarm64_openblas + build_number: 21 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-21_osxarm64_openblas.conda + sha256: a917e99f26d205df1ec22d7a9fff0d2f2f3c7ba06ea2be886dc220a8340d5917 + md5: a4510e3913ef552d69ab2080a0048523 + depends: + - libblas 3.9.0 21_osxarm64_openblas + constrains: + - libcblas 3.9.0 21_osxarm64_openblas + - blas * openblas + - liblapacke 3.9.0 21_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14829 + timestamp: 1705980215575 +- kind: conda + name: liblapack + version: 3.9.0 + build: 21_win64_mkl + build_number: 21 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-21_win64_mkl.conda + sha256: 3fa7c08dd4edf59cb0907d2e5b74e6be890e0671f845e1bae892d212d118a7e9 + md5: c4740f091cb75987390087934354a621 + depends: + - libblas 3.9.0 21_win64_mkl + constrains: + - blas * mkl + - libcblas 3.9.0 21_win64_mkl + - liblapacke 3.9.0 21_win64_mkl + license: BSD-3-Clause + license_family: BSD + size: 5017043 + timestamp: 1705980523462 +- kind: conda + name: liblief + version: 0.12.3 + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/liblief-0.12.3-h27087fc_0.tar.bz2 + sha256: d7e5b39bcbc144463ca938c8cdb1dc73d2d204fb78c5aea200c07037517aebba + md5: 2ed926c822a091c21d467429d1eaa92c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 2249665 + timestamp: 1667375991818 +- kind: conda + name: liblief + version: 0.12.3 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/liblief-0.12.3-h63175ca_0.tar.bz2 + sha256: 4cbdf696b1024cdfc138b64ed2ac23d01cb3f998c72bfecdce2760aa94f51eba + md5: 37f670590cc40b69393894cca459e346 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 4636596 + timestamp: 1667376372585 +- kind: conda + name: liblief + version: 0.12.3 + build: hb7217d7_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblief-0.12.3-hb7217d7_0.tar.bz2 + sha256: d57c45d22cf57adb89a97a2ff9b5bee01bae02c4410369624de82dfc88ad0f75 + md5: 558976bbaff410e8097211f62c241368 + depends: + - libcxx >=14.0.4 + license: Apache-2.0 + license_family: Apache + size: 1965148 + timestamp: 1667376562082 +- kind: conda + name: liblief + version: 0.12.3 + build: hf0c8a7f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/liblief-0.12.3-hf0c8a7f_0.tar.bz2 + sha256: 709ab8458cacfe3d55e20632e22465f4e47d587cc278ea7c2defbfccdfca25b0 + md5: 82ccbb9725d912138cda0fa890146c55 + depends: + - libcxx >=14.0.4 + license: Apache-2.0 + license_family: Apache + size: 2055095 + timestamp: 1667376948162 +- kind: conda + name: libllvm13 + version: 13.0.1 + build: h64f94b2_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm13-13.0.1-h64f94b2_2.tar.bz2 + sha256: ea05949ee38b51fd6391c57ec8365e41737108d24e5ff2266da3c6d3b20c3a23 + md5: bac1c6f12f44f40e19274e6e04e9bad5 + depends: + - libcxx >=12.a0 + - libzlib >=1.2.11,<1.3.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26511951 + timestamp: 1645610043967 +- kind: conda + name: libllvm14 + version: 14.0.6 + build: hd1a9a77_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_4.conda + sha256: 6f603914fe8633a615f0d2f1383978eb279eeb552079a78449c9fbb43f22a349 + md5: 9f3dce5d26ea56a9000cd74c034582bd + depends: + - libcxx >=15 + - libzlib >=1.2.13,<1.3.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20571387 + timestamp: 1690559110016 +- kind: conda + name: libllvm15 + version: 15.0.7 + build: h62b9111_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h62b9111_1.conda + sha256: bea5ffab87e658ceb1baf51b59113248ffc713701fc4164e26fbb04322dbde2f + md5: c505f61ee9f2192139d7a301ba7935a1 + depends: + - libcxx >=14 + - libxml2 >=2.10.3,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21941835 + timestamp: 1678863820717 +- kind: conda + name: libllvm15 + version: 15.0.7 + build: h7001e86_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-h7001e86_1.conda + sha256: ac8753c8027552ac7a7c5e42505e8e7110f84691f40bd5c64b6da57d247c42f4 + md5: 08b115ea2f982d5f68a054694d5bacbe + depends: + - libcxx >=14 + - libxml2 >=2.10.3,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23930053 + timestamp: 1678865934285 +- kind: conda + name: libllvm15 + version: 15.0.7 + build: hadd5161_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_1.conda + sha256: f649fac60cb122bf0d85c4955725d94c353fdbd768bcd44f0444979b363cc9ab + md5: 17d91085ccf5934ce652cb448d0cb65a + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.10.3,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 33016652 + timestamp: 1678862492181 +- kind: conda + name: libmamba + version: 1.4.2 + build: h7d1d596_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-1.4.2-h7d1d596_0.conda + sha256: ff5b74275dc1a66bf3c6c1640a29b1a35d2f50d7b9939a4efb5022b04bacede7 + md5: d7eab87c05033d40a0cb20fb19200d2e + depends: + - fmt >=9.1.0,<10.0a0 + - libarchive >=3.6.2,<3.7.0a0 + - libcurl >=7.88.1,<9.0a0 + - libcxx >=14.0.6 + - libsolv >=0.7.23,<0.8.0a0 + - openssl >=3.1.0,<4.0a0 + - reproc-cpp >=14.2,<15.0a0 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1137389 + timestamp: 1680792639920 +- kind: conda + name: libmamba + version: 1.4.2 + build: h8a7d157_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmamba-1.4.2-h8a7d157_0.conda + sha256: dd317c80914384a610ea8da32b566d1857379f2e1aeb0aaeb104b98e53bbf60c + md5: beac6b9e25bbaf8d22b13df786891192 + depends: + - fmt >=9.1.0,<10.0a0 + - libarchive >=3.6.2,<3.7.0a0 + - libcurl >=7.88.1,<9.0a0 + - libsolv >=0.7.23,<0.8.0a0 + - openssl >=3.1.0,<4.0a0 + - reproc-cpp >=14.2,<15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3254428 + timestamp: 1680792029549 +- kind: conda + name: libmamba + version: 1.4.2 + build: h9d281b0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmamba-1.4.2-h9d281b0_0.conda + sha256: efe3762451c0744a46d03b18be7b90f10c564a7c19ba5a6fabd4c2c1073cca04 + md5: f7963359f4abf1ee8b569106aa5325e7 + depends: + - fmt >=9.1.0,<10.0a0 + - libarchive >=3.6.2,<3.7.0a0 + - libcurl >=7.88.1,<9.0a0 + - libcxx >=14.0.6 + - libsolv >=0.7.23,<0.8.0a0 + - openssl >=3.1.0,<4.0a0 + - reproc-cpp >=14.2,<15.0a0 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1254985 + timestamp: 1680792727209 +- kind: conda + name: libmamba + version: 1.4.2 + build: hcea66bb_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.4.2-hcea66bb_0.conda + sha256: e035ceb6c54245bc147cc4a710b63a29c45c8748bcabf1310fcfc56bc84e8c8f + md5: 0b3b4c833ea1ec555063479e2ac259dc + depends: + - fmt >=9.1.0,<10.0a0 + - libarchive >=3.6.2,<3.7.0a0 + - libcurl >=7.88.1,<9.0a0 + - libgcc-ng >=12 + - libsolv >=0.7.23,<0.8.0a0 + - libstdcxx-ng >=12 + - openssl >=3.1.0,<4.0a0 + - reproc-cpp >=14.2,<15.0a0 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1497947 + timestamp: 1680791652667 +- kind: conda + name: libmambapy + version: 1.4.2 + build: py311h1f88262_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.4.2-py311h1f88262_0.conda + sha256: fcb9f48c8be9622598efd9716a8a430f74bbc66954f4908e4fdf4a184831964a + md5: 178d22489c16ff3eefe33330ec9ccec9 + depends: + - fmt >=9.1.0,<10.0a0 + - libgcc-ng >=12 + - libmamba 1.4.2 hcea66bb_0 + - libstdcxx-ng >=12 + - openssl >=3.1.0,<4.0a0 + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 267585 + timestamp: 1680791732678 +- kind: conda + name: libmambapy + version: 1.4.2 + build: py311h29ee5fe_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-1.4.2-py311h29ee5fe_0.conda + sha256: 30d0ea6a00f4f58b59c9a3be20f07f379e9bccc298c53fb01c0d8a2e065b97eb + md5: 1d07b16b07e0b3fa5d2e145b221e4f1d + depends: + - fmt >=9.1.0,<10.0a0 + - libmamba 1.4.2 h8a7d157_0 + - openssl >=3.1.0,<4.0a0 + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 297780 + timestamp: 1680792315104 +- kind: conda + name: libmambapy + version: 1.4.2 + build: py311hcc19a12_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-1.4.2-py311hcc19a12_0.conda + sha256: 6d227a008c0901f4117be69b6c54096bf3778e57a8c940a5b4c6a0129752b1ca + md5: 8c03cef57bc55e0153406fe89149fe9e + depends: + - fmt >=9.1.0,<10.0a0 + - libcxx >=14.0.6 + - libmamba 1.4.2 h9d281b0_0 + - openssl >=3.1.0,<4.0a0 + - pybind11-abi 4 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 241005 + timestamp: 1680793321659 +- kind: conda + name: libmambapy + version: 1.4.2 + build: py311hf90d2e5_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-1.4.2-py311hf90d2e5_0.conda + sha256: ed2201e0ac43fd37fe9252f807198ae804b98b28b6cdadb2a2be9f53aba66495 + md5: 565274c37dfc1e4c09deddb914969c1f + depends: + - fmt >=9.1.0,<10.0a0 + - libcxx >=14.0.6 + - libmamba 1.4.2 h7d1d596_0 + - openssl >=3.1.0,<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.7.0,<0.8.0a0 + license: BSD-3-Clause + license_family: BSD + size: 221716 + timestamp: 1680792799304 +- kind: conda + name: libnetcdf + version: 4.9.1 + build: nompi_h232cb48_101 + build_number: 101 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.1-nompi_h232cb48_101.conda + sha256: c323f46838d6b113d037b7a1f4bfe0f84a29998b9c5b7d269034c5618651000b + md5: 87dd4b0e9fe52d1b43bf0d5e7be28fc3 + depends: + - bzip2 >=1.0.8,<2.0a0 + - curl + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - jpeg >=9e,<10a + - libcxx >=14.0.6 + - libxml2 >=2.10.3,<3.0.0a0 + - libzip >=1.9.2,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: MIT + license_family: MIT + size: 656191 + timestamp: 1677277976416 +- kind: conda + name: libnetcdf + version: 4.9.1 + build: nompi_h34a3ff0_101 + build_number: 101 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.1-nompi_h34a3ff0_101.conda + sha256: 4e985512e2abadfb59e12d14a98e1b0bd9e63d6f4fabe80d9b04a79963c5c971 + md5: 9ce7f5bde721be2f82da9f861c57f1b3 + depends: + - bzip2 >=1.0.8,<2.0a0 + - curl + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - jpeg >=9e,<10a + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.10.3,<3.0.0a0 + - libzip >=1.9.2,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: MIT + license_family: MIT + size: 811612 + timestamp: 1677277442334 +- kind: conda + name: libnetcdf + version: 4.9.1 + build: nompi_h56690a0_101 + build_number: 101 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.1-nompi_h56690a0_101.conda + sha256: c53024a2cf3420e778af50095b2c218a9de0cc28b374c2b2d7845a0d4298ff9f + md5: 47f469ea7abef24fe25d7ea8f3c57e2a + depends: + - bzip2 >=1.0.8,<2.0a0 + - curl + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - jpeg >=9e,<10a + - libcxx >=14.0.6 + - libxml2 >=2.10.3,<3.0.0a0 + - libzip >=1.9.2,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: MIT + license_family: MIT + size: 722642 + timestamp: 1677278132589 +- kind: conda + name: libnetcdf + version: 4.9.2 + build: nompi_h5902ca5_107 + build_number: 107 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_h5902ca5_107.conda + sha256: f4226628bf38a19c84693d451b64003aea03324d1c225c3da68e158041fdf825 + md5: 0950c77b05f5b6a0e75a3a2a0d2028dc + depends: + - blosc >=1.21.4,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.1,<1.14.2.0a0 + - libaec >=1.0.6,<2.0a0 + - libcurl >=8.1.2,<9.0a0 + - libxml2 >=2.11.4,<3.0.0a0 + - libzip >=1.9.2,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.2,<1.6.0a0 + license: MIT + license_family: MIT + size: 625042 + timestamp: 1688601381001 +- kind: conda + name: libnghttp2 + version: 1.58.0 + build: h47da74e_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_0.conda + sha256: 151b18e4f92dcca263a6d23e4beb0c4e2287aa1c7d0587ff71ef50035ed34aca + md5: 9b13d5ee90fc9f09d54fd403247342b4 + depends: + - c-ares >=1.21.0,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.4,<4.0a0 + license: MIT + license_family: MIT + size: 631397 + timestamp: 1699440427647 +- kind: conda + name: libnghttp2 + version: 1.58.0 + build: h64cf6d3_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_0.conda + sha256: b2b94cdaffa0d4fddd73c04262fdb1d1bcd6f8783979281ccfdb832e159cac4e + md5: 864e23fba3678000154f53bbf6d476a2 + depends: + - __osx >=10.9 + - c-ares >=1.21.0,<2.0a0 + - libcxx >=16.0.6 + - libev >=4.33,<4.34.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.4,<4.0a0 + license: MIT + license_family: MIT + size: 598870 + timestamp: 1699440920465 +- kind: conda + name: libnghttp2 + version: 1.58.0 + build: ha4dd798_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_0.conda + sha256: 3597032667444f91ae59343c553da6e93f2b3359bc2c0dd6b7f8260e41572e9c + md5: b93d94874cfd44bc96496c2ee69f82a9 + depends: + - __osx >=10.9 + - c-ares >=1.21.0,<2.0a0 + - libcxx >=16.0.6 + - libev >=4.33,<4.34.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.4,<4.0a0 + license: MIT + license_family: MIT + size: 564395 + timestamp: 1699440818837 +- 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: libogg + version: 1.3.4 + build: h27ca646_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.4-h27ca646_1.tar.bz2 + sha256: 916bbd5b7da6c922d6a16dd7d396b8a4e862edaca045671692e35add58aace64 + md5: fb211883ad5716e398b974a9cde9d78e + license: BSD-3-Clause + license_family: BSD + size: 207390 + timestamp: 1610382137160 +- kind: conda + name: libogg + version: 1.3.4 + build: h35c211d_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2 + sha256: e3cec0c66d352d822b7a90db8edbc62f237fca079b6044e5b27f6ca529f7d9d9 + md5: a7ab4b53ef18c598ffaa597230bc3ba1 + license: BSD-3-Clause + license_family: BSD + size: 207262 + timestamp: 1610382038748 +- kind: conda + name: libogg + version: 1.3.4 + build: h7f98852_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + md5: 6e8cc2173440d77708196c5b93771680 + depends: + - libgcc-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 210550 + timestamp: 1610382007814 +- kind: conda + name: libogg + version: 1.3.4 + build: h8ffe710_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 + sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 + md5: 04286d905a0dcb7f7d4a12bdfe02516d + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 35187 + timestamp: 1610382533961 +- kind: conda + name: libopenblas + version: 0.3.26 + build: openmp_h6c19121_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.26-openmp_h6c19121_0.conda + sha256: 2a59b92c412fd0f59a8079dfa21c561ae17e72e72e47d4d7aee474bf6fd642e1 + md5: 000970261d954431ccca3cce68d873d8 + depends: + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - llvm-openmp >=16.0.6 + constrains: + - openblas >=0.3.26,<0.3.27.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2917606 + timestamp: 1704950245195 +- kind: conda + name: libopenblas + version: 0.3.26 + build: openmp_hfef2a42_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.26-openmp_hfef2a42_0.conda + sha256: 4a5994cc608708eca19b90b642a144bb073e4a1cd27b824281dfcae67917204e + md5: 9df60162aea811087267b515f359536c + depends: + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - llvm-openmp >=16.0.6 + constrains: + - openblas >=0.3.26,<0.3.27.0a0 + license: BSD-3-Clause + license_family: BSD + size: 6044576 + timestamp: 1704951566923 +- kind: conda + name: libopenblas + version: 0.3.26 + build: pthreads_h413a1c8_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.26-pthreads_h413a1c8_0.conda + sha256: b626954b5a1113dafec8df89fa8bf18ce9b4701464d9f084ddd7fc9fac404bbd + md5: 760ae35415f5ba8b15d09df5afe8b23a + depends: + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=12.3.0 + constrains: + - openblas >=0.3.26,<0.3.27.0a0 + license: BSD-3-Clause + license_family: BSD + size: 5578031 + timestamp: 1704950143521 +- kind: conda + name: libopus + version: 1.3.1 + build: h27ca646_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 + sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a + md5: 3d0dbee0ccd2f6d6781d270313627b62 + license: BSD-3-Clause + license_family: BSD + size: 252854 + timestamp: 1606823635137 +- kind: conda + name: libopus + version: 1.3.1 + build: h7f98852_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + md5: 15345e56d527b330e1cacbdf58676e8f + depends: + - libgcc-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 260658 + timestamp: 1606823578035 +- kind: conda + name: libopus + version: 1.3.1 + build: hc929b4f_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 + md5: 380b9ea5f6a7a277e6c1ac27d034369b + license: BSD-3-Clause + license_family: BSD + size: 279983 + timestamp: 1606823633642 +- kind: conda + name: libpng + version: 1.6.43 + build: h091b4b1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.43-h091b4b1_0.conda + sha256: 66c4713b07408398f2221229a1c1d5df57d65dc0902258113f2d9ecac4772495 + md5: 77e684ca58d82cae9deebafb95b1a2b8 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: zlib-acknowledgement + size: 264177 + timestamp: 1708780447187 +- kind: conda + name: libpng + version: 1.6.43 + build: h19919ed_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.43-h19919ed_0.conda + sha256: 6ad31bf262a114de5bbe0c6ba73b29ed25239d0f46f9d59700310d2ea0b3c142 + md5: 77e398acc32617a0384553aea29e866b + depends: + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: zlib-acknowledgement + size: 347514 + timestamp: 1708780763195 +- kind: conda + name: libpng + version: 1.6.43 + build: h2797004_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda + sha256: 502f6ff148ac2777cc55ae4ade01a8fc3543b4ffab25c4e0eaa15f94e90dd997 + md5: 009981dd9cfcaa4dbfa25ffaed86bcae + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: zlib-acknowledgement + size: 288221 + timestamp: 1708780443939 +- kind: conda + name: libpng + version: 1.6.43 + build: h92b6c6a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda + sha256: 13e646d24b5179e6b0a5ece4451a587d759f55d9a360b7015f8f96eff4524b8f + md5: 65dcddb15965c9de2c0365cb14910532 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: zlib-acknowledgement + size: 268524 + timestamp: 1708780496420 +- kind: conda + name: libpq + version: '15.3' + build: h7126958_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.3-h7126958_1.conda + sha256: 4529f6bd6308df510ebb7493fbbfba533a13f77bdee9785b0b029e4cef194519 + md5: ae13d3547e9d21beb88e42afd0c820cf + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<3.2.0a0 + license: PostgreSQL + size: 2415588 + timestamp: 1684452698134 +- kind: conda + name: libpq + version: '15.3' + build: h9dc22bb_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libpq-15.3-h9dc22bb_1.conda + sha256: bb084c127f22e486731704f0a515bd823ec20dc717c7d219263f244ee5b13a62 + md5: 571aa9141d1a823202bb4cd794c939b0 + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<3.2.0a0 + license: PostgreSQL + size: 2351517 + timestamp: 1684452440426 +- kind: conda + name: libpq + version: '15.3' + build: ha9684e8_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libpq-15.3-ha9684e8_1.conda + sha256: 04ff073aa9ea3df666676d610b18559ba4929b91e2b4cd92ef10f509b4b777ff + md5: 593fbdd2cd79f98a97cd79cf6115032a + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<3.2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: PostgreSQL + size: 3378185 + timestamp: 1684452936617 +- kind: conda + name: libpq + version: '15.3' + build: hbcd7760_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libpq-15.3-hbcd7760_1.conda + sha256: 96031c853d1a8b32c50c04b791aa199508ab1f0fa879ab7fcce175ee24620f78 + md5: 8afb2a97d256ffde95b91a6283bc598c + depends: + - krb5 >=1.20.1,<1.21.0a0 + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.0,<3.2.0a0 + license: PostgreSQL + size: 2530642 + timestamp: 1684451981378 +- kind: conda + name: libsndfile + version: 1.2.2 + build: hc60ed4a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda + sha256: f709cbede3d4f3aee4e2f8d60bd9e256057f410bd60b8964cb8cf82ec1457573 + md5: ef1910918dd895516a769ed36b5b3a4e + depends: + - lame >=3.100,<3.101.0a0 + - libflac >=1.4.3,<1.5.0a0 + - libgcc-ng >=12 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + - libvorbis >=1.3.7,<1.4.0a0 + - mpg123 >=1.32.1,<1.33.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 354372 + timestamp: 1695747735668 +- 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 + size: 324912 + timestamp: 1605135878892 +- 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 + depends: + - libgcc-ng >=7.5.0 + license: ISC + size: 374999 + timestamp: 1605135674116 +- 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 + size: 528765 + timestamp: 1605135849110 +- kind: conda + name: libsolv + version: 0.7.28 + build: h1059232_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.28-h1059232_1.conda + sha256: aa7f4d65116a7c80807b6c90d2294056f7a6ba7a877629ca68a7851dcac1462a + md5: 816b766780f09240349b373209c66026 + depends: + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 386126 + timestamp: 1711379523116 +- kind: conda + name: libsolv + version: 0.7.28 + build: h12be248_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.28-h12be248_1.conda + sha256: 25b350f0aa8b8bb764673684b7781109553f0a12576a0228aa3871e6281772f6 + md5: 65f73b0a282c463535d17a2ef8d8bb42 + depends: + - 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 + size: 429220 + timestamp: 1711379773742 +- kind: conda + name: libsolv + version: 0.7.28 + build: h2d185b6_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.28-h2d185b6_1.conda + sha256: 8d710885d38080f6ac9b2b92e62ad790e6e04932ae326f5d4fc31e56ca49a093 + md5: 9b0dddcfdaa868197742a0590b42e67c + depends: + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 415510 + timestamp: 1711379470742 +- kind: conda + name: libsolv + version: 0.7.28 + build: hfc55251_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.28-hfc55251_1.conda + sha256: dcddda4248b3b04272de8b03675b3d41ac3eff4e306bef7b3a6749277fd7359b + md5: 84271c00f5804bbc1ef7c525d1e4f405 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 469332 + timestamp: 1711379345255 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h091b4b1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.2-h091b4b1_0.conda + sha256: 7c234320a1a2132b9cc972aaa06bb215bb220a5b1addb0bed7a5a321c805920e + md5: 9d07427ee5bd9afd1e11ce14368a48d6 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 825300 + timestamp: 1710255078823 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h2797004_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 866983a220e27a80cb75e85cb30466a1 + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 857489 + timestamp: 1710254744982 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h92b6c6a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 086f56e13a96a6cfb1bf640505ae6b70 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 902355 + timestamp: 1710254991672 +- kind: conda + name: libsqlite + version: 3.45.2 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.2-hcfcfb64_0.conda + sha256: 4bb24b986550275a6d02835150d943c4c675808d05c0efc5c2a22154d007a69f + md5: f95359f8dc5abf7da7776ece9ef10bc5 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense + size: 869606 + timestamp: 1710255095740 +- 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 + 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 + 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 + 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 + 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 + size: 3834139 + timestamp: 1706819252496 +- kind: conda + name: libsystemd0 + version: '253' + build: h8c4010b_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-253-h8c4010b_1.conda + sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a + md5: 9176b1e2cb8beca37a7510b0e801e38f + depends: + - __glibc >=2.17,<3.0.a0 + - libcap >=2.67,<2.68.0a0 + - libgcc-ng >=12 + - libgcrypt >=1.10.1,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: LGPL-2.1-or-later + size: 380557 + timestamp: 1677532757148 +- kind: conda + name: libtiff + version: 4.4.0 + build: h6268bbc_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-h6268bbc_5.conda + sha256: 7ccfb5aba44657875ff18d27654d84a5c7f6daf8cd840b5524359c7926b02e7a + md5: 551fc78ba147767ea5905d0746e2fbb5 + depends: + - jpeg >=9e,<10a + - lerc >=4.0.0,<5.0a0 + - libcxx >=14.0.6 + - libdeflate >=1.14,<1.15.0a0 + - libwebp-base >=1.2.4,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: HPND + size: 453311 + timestamp: 1671300830301 +- kind: conda + name: libtiff + version: 4.4.0 + build: h82bc61c_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h82bc61c_5.conda + sha256: f81d38e7458c6ba2fcf93bef4ed2c12c2977e89ca9a7f936ce53a3338a88352f + md5: e712a63a21f9db647982971dc121cdcf + depends: + - jpeg >=9e,<10a + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.14,<1.15.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libwebp-base >=1.2.4,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: HPND + size: 484764 + timestamp: 1671300678072 +- kind: conda + name: libtiff + version: 4.4.0 + build: hc4f729c_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.4.0-hc4f729c_5.conda + sha256: dfa7f848f1e4bb24ed800968984638b2353728c439e4964f597aa9f31733370b + md5: fe00c2f95c1215e355c34094b00480d7 + depends: + - jpeg >=9e,<10a + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.14,<1.15.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: HPND + size: 806281 + timestamp: 1671301044886 +- kind: conda + name: libtiff + version: 4.4.0 + build: heb92581_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-heb92581_5.conda + sha256: 585ec0cea99f86320c2d6cf1c3d13538e617bd48200902d64154363a92d89162 + md5: fb564626ea319252c2b3a5edc2f7640f + depends: + - jpeg >=9e,<10a + - lerc >=4.0.0,<5.0a0 + - libcxx >=14.0.6 + - libdeflate >=1.14,<1.15.0a0 + - libwebp-base >=1.2.4,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: HPND + size: 431146 + timestamp: 1671300873940 +- kind: conda + name: libtool + version: 2.4.7 + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda + sha256: 345b3b580ef91557a82425ea3f432a70a8748c040deb14570b9f4dca4af3e3d1 + md5: f204c8ba400ec475452737094fb81d52 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 411817 + timestamp: 1672361825713 +- kind: conda + name: libtool + version: 2.4.7 + build: hb7217d7_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtool-2.4.7-hb7217d7_0.conda + sha256: efe50471d2baea151f2a93f1f99c05553f8c88e3f0065cdc267e1aa2e8c42449 + md5: fe8efc3385f58f0055e8100b07225055 + license: GPL-2.0-or-later + license_family: GPL + size: 408403 + timestamp: 1672362003513 +- kind: conda + name: libtool + version: 2.4.7 + build: hf0c8a7f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libtool-2.4.7-hf0c8a7f_0.conda + sha256: 0827bcf84a243ca6dd47901caa607262a0184d6048a7cf444b26aa8ee80eb066 + md5: 1f87b8f56ae1210c77f6133705ef24af + license: GPL-2.0-or-later + license_family: GPL + size: 407170 + timestamp: 1672362058438 +- kind: conda + name: libudev1 + version: '253' + build: h0b41bf4_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libudev1-253-h0b41bf4_1.conda + sha256: 1419fc6dc85f9aad95df733af4e442feb27da90ed74b9b67dbdc090151bdec24 + md5: bb38b19a41bb94e8a19dbfb062d499c7 + depends: + - __glibc >=2.17,<3.0.a0 + - libcap >=2.67,<2.68.0a0 + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 118700 + timestamp: 1677532765365 +- kind: conda + name: libudunits2 + version: 2.2.28 + build: h40f5838_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libudunits2-2.2.28-h40f5838_3.conda + sha256: c4b80ddcddc015ec696e53605e045954e4fe27e79aba65b754803a05ef4e3fe2 + md5: 4bdace082e911a3e1f1f0b721bed5b56 + depends: + - libexpat >=2.5.0,<3.0a0 + - libgcc-ng >=12 + constrains: + - udunits2 2.2.28.* + license: LicenseRef-BSD-UCAR + size: 81441 + timestamp: 1696525535662 +- kind: conda + name: libudunits2 + version: 2.2.28 + build: h516ac8c_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libudunits2-2.2.28-h516ac8c_3.conda + sha256: bda462878c04b8df0b5a4f67181be00bef9277c43a9941a16f3c6ea9b40179a5 + md5: 7bad8a5b7c165d90df2ae1a59cbc5175 + depends: + - libexpat >=2.5.0,<3.0a0 + constrains: + - udunits2 2.2.28.* + license: LicenseRef-BSD-UCAR + size: 79320 + timestamp: 1696525855464 +- kind: conda + name: libudunits2 + version: 2.2.28 + build: h5f3f34b_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libudunits2-2.2.28-h5f3f34b_3.conda + sha256: 24ae5bf095a15de3a6d9b6a80e313bd7996671045e9ac3d58b376bcba3f9fb25 + md5: 033eab02473b094c801a599f3e35b241 + depends: + - libexpat >=2.5.0,<3.0a0 + constrains: + - udunits2 2.2.28.* + license: LicenseRef-BSD-UCAR + size: 78487 + timestamp: 1696525801576 +- kind: conda + name: libudunits2 + version: 2.2.28 + build: hfda9870_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libudunits2-2.2.28-hfda9870_3.conda + sha256: 0b911f9545934d192f209bc4158dadbda99ab86004f356b7e8044c00aa63faf8 + md5: 528685735279bf54fee178ea57bf8417 + depends: + - libexpat >=2.5.0,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - udunits2 2.2.28.* + license: LicenseRef-BSD-UCAR + size: 72011 + timestamp: 1696526247362 +- 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: libvorbis + version: 1.3.7 + build: h046ec9c_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 + sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7 + md5: fbbda1fede0aadaa252f6919148c4ce1 + depends: + - libcxx >=11.0.0 + - libogg >=1.3.4,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 254208 + timestamp: 1610609857389 +- kind: conda + name: libvorbis + version: 1.3.7 + build: h0e60522_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 + sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a + md5: e1a22282de0169c93e4ffe6ce6acc212 + depends: + - libogg >=1.3.4,<1.4.0a0 + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 273721 + timestamp: 1610610022421 +- kind: conda + name: libvorbis + version: 1.3.7 + build: h9c3ff4c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + md5: 309dec04b70a3cc0f1e84a4013683bc0 + depends: + - libgcc-ng >=9.3.0 + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 286280 + timestamp: 1610609811627 +- kind: conda + name: libvorbis + version: 1.3.7 + build: h9f76cd9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2 + sha256: 60457217e20d8b24a8390c81338a8fa69c8656b440c067cd82f802a09da93cb9 + md5: 92a1a88d1a1d468c19d9e1659ac8d3df + depends: + - libcxx >=11.0.0 + - libogg >=1.3.4,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 254839 + timestamp: 1610609991029 +- kind: conda + name: libwebp + version: 1.2.4 + build: h328b37c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h328b37c_0.tar.bz2 + sha256: cb50b3337ed39a33861ab7aff50883239d5c373c7caf5dff6684ebba6477d0e6 + md5: 194c8df68e6966f8e012cd326e42c31d + depends: + - giflib >=5.2.1,<5.3.0a0 + - jpeg >=9e,<10a + - libpng >=1.6.37,<1.7.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base 1.2.4.* + - libwebp-base >=1.2.4,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 86136 + timestamp: 1660329717009 +- kind: conda + name: libwebp + version: 1.2.4 + build: h522a892_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h522a892_0.tar.bz2 + sha256: 56520354bc39baeab8df964138639110eafa6069e34e9545f8818c8abd742f32 + md5: 802e43f480122a85ae6a34c1909f8f98 + depends: + - giflib >=5.2.1,<5.3.0a0 + - jpeg >=9e,<10a + - libgcc-ng >=12 + - libpng >=1.6.37,<1.7.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base 1.2.4.* + - libwebp-base >=1.2.4,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 89553 + timestamp: 1660329322502 +- kind: conda + name: libwebp + version: 1.2.4 + build: hfa4350a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-hfa4350a_0.tar.bz2 + sha256: c6a856ac02735726e85cc30fc4c47576e9fd175891359d320a2d8de3eca5dbe9 + md5: d3b5a56369701e6a11bf300ba3394391 + depends: + - giflib >=5.2.1,<5.3.0a0 + - jpeg >=9e,<10a + - libpng >=1.6.37,<1.7.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base 1.2.4.* + - libwebp-base >=1.2.4,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 86478 + timestamp: 1660329723547 +- kind: conda + name: libwebp + version: 1.3.2 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.2-hcfcfb64_1.conda + sha256: 7b4f95d1e9756fe81186309113188195fbac164687b96ad443a243a0ca59ec8f + md5: 6202a1ba6be2713084cf0452d4e8c10c + depends: + - libwebp-base 1.3.2.* + - libwebp-base >=1.3.2,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 71143 + timestamp: 1696116489561 +- kind: conda + name: libwebp-base + version: 1.2.4 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2 + sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 + md5: ac2ccf7323d21f2994e4d1f5da664f37 + depends: + - libgcc-ng >=12 + constrains: + - libwebp 1.2.4 + license: BSD-3-Clause + license_family: BSD + size: 413389 + timestamp: 1659984002215 +- kind: conda + name: libwebp-base + version: 1.2.4 + build: h1a8c8d9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda + sha256: aba1657df54c0847b80a42acf33bf19dc8e601408f99f8d2934cb5680b600a1e + md5: 480b5b992632e7d17778abf01bad473b + constrains: + - libwebp 1.2.4 + license: BSD-3-Clause + license_family: BSD + size: 263418 + timestamp: 1678664706077 +- kind: conda + name: libwebp-base + version: 1.2.4 + build: h775f41a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2 + sha256: ca3eb817054ac2942802b6b51dc671ab2af6564da329bebcb2538cdb31b59fa1 + md5: 28807bef802a354f9c164e7ab242c5cb + constrains: + - libwebp 1.2.4 + license: BSD-3-Clause + license_family: BSD + size: 393830 + timestamp: 1659984180146 +- kind: conda + name: libwebp-base + version: 1.3.2 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.2-hcfcfb64_0.conda + sha256: af1453fab10d1fb8b379c61a78882614051a8bac37307d7ac4fb58eac667709e + md5: dcde8820959e64378d4e06147ffecfdd + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libwebp 1.3.2 + license: BSD-3-Clause + license_family: BSD + size: 268870 + timestamp: 1694709461733 +- kind: conda + name: libxcb + version: '1.13' + build: '0' + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-0.tar.bz2 + sha256: f5ff08c291ebc0d9b76826a844e32c2fa92c0bff312745e903a4155552eff68e + md5: 6a1b49c7676520be18f7b74c4fdb87d6 + depends: + - xorg-libxau + - xorg-libxdmcp + arch: x86_64 + platform: win + license: MIT + license_family: MIT + size: 2349546 +- kind: conda + name: libxcb + version: '1.13' + build: h0d85af4_1004 + build_number: 1004 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2 + sha256: 00e962ea91deae3dbed221c960c3bffab4172d87bc883b615298333fe336a5c6 + md5: eb7860935e14aec936065cbc21a1a962 + depends: + - pthread-stubs + - xorg-libxau + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 312424 + timestamp: 1636659262210 +- kind: conda + name: libxcb + version: '1.13' + build: h7f98852_1004 + build_number: 1004 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2 + sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 + md5: b3653fdc58d03face9724f602218a904 + depends: + - libgcc-ng >=9.4.0 + - pthread-stubs + - xorg-libxau + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 399895 + timestamp: 1636658924671 +- kind: conda + name: libxcb + version: '1.13' + build: h9b22ae9_1004 + build_number: 1004 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2 + sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb + md5: 6b3457a192f8091cb413962f65740ac4 + depends: + - pthread-stubs + - xorg-libxau + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 353124 + timestamp: 1636659450212 +- kind: conda + name: libxcb + version: '1.13' + build: hcd874cb_1004 + build_number: 1004 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2 + sha256: a6fe7468ed3b9898f7beaa75f7e3adff9c7b96b39a36a3f8399c37223ec6a9e8 + md5: a6d7fd030532378ecb6ba435cd9f8234 + depends: + - m2w64-gcc-libs + - pthread-stubs + - xorg-libxau + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 1340194 + timestamp: 1636659621965 +- 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: libxkbcommon + version: 1.5.0 + build: h79f4944_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.5.0-h79f4944_1.conda + sha256: f57aa3eeeb4abbeeafb6e61fbffa6f89fa2434e914c1eb65551e6e0905b363aa + md5: 04a39cdd663f295653fc143851830563 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxcb >=1.13,<1.14.0a0 + - libxml2 >=2.10.3,<3.0.0a0 + - xkeyboard-config + license: MIT/X11 Derivative + license_family: MIT + size: 563179 + timestamp: 1678659270113 +- kind: conda + name: libxml2 + version: 2.10.3 + build: h201ad9d_4 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-h201ad9d_4.conda + sha256: e87dcf8c9af3451dad6c7cb2936a3d9843ee25561a3e25277e7ec835c0efe9c4 + md5: 2101dd548f0601be252e27e48fa532fa + depends: + - icu >=70.1,<71.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: 635729 + timestamp: 1679341737730 +- kind: conda + name: libxml2 + version: 2.10.3 + build: h67585b2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda + sha256: c558d297f34ca1481359e805804559d351882b5130b1dc9c9c3a603bb54a24eb + md5: 3b3f67d1c9d66e873ca91c87640a1d1b + depends: + - icu >=70.1,<71.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: 597937 + timestamp: 1679341827706 +- kind: conda + name: libxml2 + version: 2.10.3 + build: hca2bb57_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda + sha256: d4170f1fe356768758b13a51db123f990bff81b0eae0d5a0ba11c7ca6b9536f4 + md5: bb808b654bdc3c783deaf107a2ffb503 + depends: + - icu >=70.1,<71.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 + size: 713891 + timestamp: 1679341466192 +- kind: conda + name: libxml2 + version: 2.12.6 + build: hc3477c8_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.6-hc3477c8_1.conda + sha256: 1846c1318a5987e7315ca3648b55b38e5cfd9853370803a0f5159bc0071609c1 + md5: eb9f59dd51f50f5aa369813fa63ba569 + 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: 1640801 + timestamp: 1711318467301 +- kind: conda + name: libxmlsec1 + version: 1.2.37 + build: h4dfa09a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxmlsec1-1.2.37-h4dfa09a_0.conda + sha256: d3f77468199c4a18cb0d43053750f3aab90f4269fb0589207a542071b5e398d8 + md5: cfaf14aa42bde06a10462da8d9276e67 + depends: + - icu >=70.1,<71.0a0 + - libgcrypt >=1.10.1,<2.0a0 + - libgpg-error >=1.45,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libtool >=2.4.6,<3.0a0 + - libxml2 >=2.10.3,<3.0.0a0 + - libxslt >=1.1.37,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.7,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zlib >=1.2.13,<2.0a0 + license: MIT and MPL-1.1 + license_family: MIT + size: 287237 + timestamp: 1669687514837 +- kind: conda + name: libxmlsec1 + version: 1.2.37 + build: h927ea9a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxmlsec1-1.2.37-h927ea9a_0.conda + sha256: 3f1750710326ecccbc78ba1631381486ef784281c222ee37eb281ccac23e7220 + md5: 4bb198602e137838d43a7e8bbc05a9e1 + depends: + - icu >=70.1,<71.0a0 + - libgcc-ng >=12 + - libgcrypt >=1.10.1,<2.0a0 + - libgpg-error >=1.45,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libtool >=2.4.6,<3.0a0 + - libxml2 >=2.10.3,<3.0.0a0 + - libxslt >=1.1.37,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.7,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zlib >=1.2.13,<2.0a0 + license: MIT and MPL-1.1 + license_family: MIT + size: 358254 + timestamp: 1669687136743 +- kind: conda + name: libxmlsec1 + version: 1.2.37 + build: h967a3f3_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxmlsec1-1.2.37-h967a3f3_0.conda + sha256: 602847e48e71286952f025d12e3db9f372adf6f64f5dd8012625d45c8df3c29a + md5: d67f53799baf50621cc638350b1cf6cf + depends: + - icu >=70.1,<71.0a0 + - libgcrypt >=1.10.1,<2.0a0 + - libgpg-error >=1.45,<2.0a0 + - libiconv >=1.17,<2.0a0 + - libtool >=2.4.6,<3.0a0 + - libxml2 >=2.10.3,<3.0.0a0 + - libxslt >=1.1.37,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.7,<4.0a0 + - xz >=5.2.6,<6.0a0 + - zlib >=1.2.13,<2.0a0 + license: MIT and MPL-1.1 + license_family: MIT + size: 287902 + timestamp: 1669687196627 +- kind: conda + name: libxslt + version: 1.1.37 + build: h1bd8bc4_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.37-h1bd8bc4_0.tar.bz2 + sha256: af16c4a1c4e9a05478864d825169ddf434a78f2229f20bc5485f97cc30f6f430 + md5: 4747f57c89c82bcd05a785dc928c6a99 + depends: + - libxml2 >=2.10.3,<3.0.0a0 + license: MIT + license_family: MIT + size: 236080 + timestamp: 1666902671637 +- kind: conda + name: libxslt + version: 1.1.37 + build: h5d22bc9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.37-h5d22bc9_0.tar.bz2 + sha256: 7e913f313f928bb86a5f3572de66e990d0653e251aee55b9985cd9aad4446765 + md5: 532015104e2167790a59430b5e10dd7f + depends: + - libxml2 >=2.10.3,<3.0.0a0 + license: MIT + license_family: MIT + size: 241900 + timestamp: 1666902529719 +- kind: conda + name: libxslt + version: 1.1.37 + build: h873f0b0_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.37-h873f0b0_0.tar.bz2 + sha256: b2e1396c98fe1b3eb30a1f6d592a3275dc4260f6173270ab8a0ff9d7bf0025e7 + md5: ed0d77d947ddeb974892de8df7224d12 + depends: + - libgcc-ng >=12 + - libxml2 >=2.10.3,<3.0.0a0 + license: MIT + license_family: MIT + size: 257534 + timestamp: 1666902324685 +- kind: conda + name: libxslt + version: 1.1.39 + build: h3df6e99_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda + sha256: 6e3d99466d2076c35e7ac8dcdfe604da3d593f55b74a5b8e96c2b2ff63c247aa + md5: 279ee338c9b34871d578cb3c7aa68f70 + depends: + - libxml2 >=2.12.1,<3.0.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 418542 + timestamp: 1701629338549 +- kind: conda + name: libzip + version: 1.10.1 + build: h1d365fa_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libzip-1.10.1-h1d365fa_3.conda + sha256: 221698b52dd7a3dcfc67ff9460e9c8649fc6c86506a2a2ab6f57b97e7489bb9f + md5: 5c629cd12d89e2856c17b1dc5fcf44a4 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 146434 + timestamp: 1694417117772 +- kind: conda + name: libzip + version: 1.10.1 + build: h2629f0a_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda + sha256: 84e93f189072dcfcbe77744f19c7e4171523fbecfaba7352e5a23bbe014574c7 + md5: ac79812548e7e8cf61f7b0abdef01d3b + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 107198 + timestamp: 1694416433629 +- kind: conda + name: libzip + version: 1.10.1 + build: ha0bc3c6_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.10.1-ha0bc3c6_3.conda + sha256: fb42f34c2275523a06bc8464454fa57f2417203524cabb7aacca4e5de6cfeb69 + md5: e37c0da207079e488709043634d6a711 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 128244 + timestamp: 1694416824668 +- kind: conda + name: libzip + version: 1.10.1 + build: hc158999_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda + sha256: 0689e4a6e67e80027e43eefb8a365273405a01f5ab2ece97319155b8be5d64f6 + md5: 6112b3173f3aa2f12a8f40d07a77cc35 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 127599 + timestamp: 1694416738467 +- 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 + 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 + size: 59404 + timestamp: 1686575566695 +- kind: conda + name: libzlib + version: 1.2.13 + build: hcfcfb64_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + depends: + - 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 + size: 55800 + timestamp: 1686575452215 +- kind: conda + name: libzlib + version: 1.2.13 + build: hd590300_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: f36c115f1ee199da648e0597ec2047ad + depends: + - libgcc-ng >=12 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 61588 + timestamp: 1686575217516 +- kind: conda + name: llvm-openmp + version: 18.1.2 + build: hb6ac08f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: e7f7e91cfabd8c7172c9ae405214dd68 + constrains: + - openmp 18.1.2|18.1.2.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 300480 + timestamp: 1711010792383 +- kind: conda + name: llvm-openmp + version: 18.1.2 + build: hcd81f8e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-18.1.2-hcd81f8e_0.conda + sha256: 2ed8ae5a4c6122d542564a9bb9d4961ed7d2fb9581f0ea8bd81e3a83e614b110 + md5: 34646dc152f3949a2f8a67136d406dce + constrains: + - openmp 18.1.2|18.1.2.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 276238 + timestamp: 1711010656300 +- kind: conda + name: lxml + version: 4.9.2 + build: py311h14a6109_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lxml-4.9.2-py311h14a6109_0.conda + sha256: 6c7b4f360218f26e1dcec7528a06c02ca768e6deef4310c374c95a0f40691646 + md5: cad902ff23dfa44e54e6daa046593a17 + depends: + - libgcc-ng >=12 + - libxml2 >=2.10.3,<3.0.0a0 + - libxslt >=1.1.37,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause and GPL-2.0-only and ZPL-2.0 and LicenseRef-ElementTree + size: 1437819 + timestamp: 1671013714432 +- kind: conda + name: lxml + version: 4.9.2 + build: py311h246f609_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-4.9.2-py311h246f609_0.conda + sha256: c5ec82e7f691356d95c1f4bbfda384bbe16880ad6a53d476f595a747199a59b1 + md5: 21d2ac3f71229f9ffd4eb5e21faed03e + depends: + - libxml2 >=2.10.3,<3.0.0a0 + - libxslt >=1.1.37,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause and GPL-2.0-only and ZPL-2.0 and LicenseRef-ElementTree + size: 1261429 + timestamp: 1671014245929 +- kind: conda + name: lxml + version: 4.9.2 + build: py311h9f2bb26_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lxml-4.9.2-py311h9f2bb26_0.conda + sha256: 303d9a0f1b911076dbaf5d53aa220fb9fc2ff3c57b71ede20dce2344270a0d06 + md5: b7ffe2b1cf4647d84fa841b272dd25cd + depends: + - libxml2 >=2.10.3,<3.0.0a0 + - libxslt >=1.1.37,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause and GPL-2.0-only and ZPL-2.0 and LicenseRef-ElementTree + size: 1311340 + timestamp: 1671013958855 +- kind: conda + name: lxml + version: 5.1.0 + build: py311h064e5ff_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/lxml-5.1.0-py311h064e5ff_0.conda + sha256: 7b7ca15be89bd56708bb6504168dbb4b7e7c3a5f9b5d08288388ffbb815d3512 + md5: a467e9bc8399a76a705352ab7c6f24ae + depends: + - libxml2 >=2.12.3,<3.0.0a0 + - libxslt >=1.1.39,<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: BSD-3-Clause and MIT-CMU + size: 1111835 + timestamp: 1704724965701 +- kind: conda + name: lz4-c + version: 1.9.4 + build: hb7217d7_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 + size: 141188 + timestamp: 1674727268278 +- kind: conda + 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: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 143402 + timestamp: 1674727076728 +- 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 + size: 134235 + timestamp: 1674728465431 +- kind: conda + 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: + - libcxx >=14.0.6 + license: BSD-2-Clause + license_family: BSD + size: 156415 + timestamp: 1674727335352 +- kind: conda + name: lzo + version: '2.10' + build: h516909a_1000 + build_number: 1000 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 + sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 + md5: bb14fcb13341b81d5eb386423b9d2bac + depends: + - libgcc-ng >=7.5.0 + license: GPL v2+ + license_family: GPL2 + 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 + size: 157236 + timestamp: 1597683217947 +- 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 + size: 194278 + timestamp: 1597682686489 +- 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 + 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 + size: 6961 + timestamp: 1696161055254 +- 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 + depends: + - m2-conda-epoch 20230914 *_x86_64 + - m2-conda-epoch 20230914.* + license: GPL + size: 131871 + timestamp: 1702359665130 +- kind: conda + 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: + - m2w64-gcc-libs-core + - msys2-conda-epoch ==20160418 + license: GPL, LGPL, FDL, custom + size: 350687 + timestamp: 1608163451316 +- 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 + 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 +- kind: conda + 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: m2w64-gmp + version: 6.1.0 + build: '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 + depends: + - 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: mako + version: 1.3.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mako-1.3.2-pyhd8ed1ab_0.conda + sha256: 5f21876a83bcc040196d7f3950d576eb492bf0f6293eacd55e48e2c58a069bce + md5: a6b5f0124bc6d061350edd6d7f96dd05 + depends: + - importlib-metadata + - markupsafe >=0.9.2 + - python >=3.6 + license: MIT + license_family: MIT + size: 67033 + timestamp: 1706629481759 +- kind: conda + name: mamba + version: 1.4.2 + build: py311h3072747_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mamba-1.4.2-py311h3072747_0.conda + sha256: 2600479dfa1cf9cc44c2fcdc04294051c3de1fe3e8f00e7f970d177f3277e8be + md5: e18f16d3d5b6c17edd412919da4ca559 + depends: + - conda >=4.14,<23.4 + - libmambapy 1.4.2 py311h1f88262_0 + - openssl >=3.1.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 65171 + timestamp: 1680792138553 +- kind: conda + name: mamba + version: 1.4.2 + build: py311h8082e30_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mamba-1.4.2-py311h8082e30_0.conda + sha256: 7ff7b97d094f1ef7a2df4a25635356cfc55de34d902a67e599673c52c5168f5e + md5: ec6b2a4cd27737c34604c9faf5ac0f2e + depends: + - conda >=4.14,<23.4 + - libmambapy 1.4.2 py311hcc19a12_0 + - openssl >=3.1.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 64918 + timestamp: 1680793888009 +- kind: conda + name: mamba + version: 1.4.2 + build: py311h8cb466b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/mamba-1.4.2-py311h8cb466b_0.conda + sha256: 769d3a5c71a3fe8637dbcb1f58119bed4ea3e3293e3c00748bbabd4cb9bbb7f8 + md5: 5eea8bf32794bfd136e989e12dd5a908 + depends: + - conda >=4.14,<23.4 + - libmambapy 1.4.2 py311h29ee5fe_0 + - openssl >=3.1.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 81970 + timestamp: 1680792912166 +- kind: conda + name: mamba + version: 1.4.2 + build: py311hb045da1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mamba-1.4.2-py311hb045da1_0.conda + sha256: 9ddae227f392bd447db1078313df5dc6443e02ed7d2425ea6fcd6cf09be642b2 + md5: 56e9589a71101ef69b036f062306e12e + depends: + - conda >=4.14,<23.4 + - libmambapy 1.4.2 py311hf90d2e5_0 + - openssl >=3.1.0,<4.0a0 + - 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 + size: 65848 + timestamp: 1680793423482 +- kind: conda + name: markdown + version: '3.6' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda + sha256: fce1fde00359696983989699c00f9891194c4ebafea647a8d21b7e2e3329b56e + md5: 06e9bebf748a0dea03ecbe1f0e27e909 + depends: + - importlib-metadata >=4.4 + - python >=3.6 + license: BSD-3-Clause + license_family: BSD + size: 78331 + timestamp: 1710435316163 +- kind: conda + name: markdown-it-py + version: 3.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 + md5: 93a8e71256479c62074356ef6ebf501b + depends: + - mdurl >=0.1,<1 + - python >=3.8 + license: MIT + license_family: MIT + size: 64356 + timestamp: 1686175179621 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py311h05b510d_0.conda + sha256: 3f2127bd8788dc4b7c3d6d65ae4b7d2f8c7d02a246fc17b819390edeca53fd93 + md5: a27177455a9d29f4ac9d687a489e5d52 + depends: + - 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 + size: 26578 + timestamp: 1706900556332 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda + sha256: 14912e557a6576e03f65991be89e9d289c6e301921b6ecfb4e7186ba974f453d + md5: a322b4185121935c871d201ae00ac143 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 27502 + timestamp: 1706900084436 +- kind: conda + name: markupsafe + version: 2.1.5 + build: py311ha68e1ae_0 + subdir: win-64 + 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 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 30011 + timestamp: 1706900632904 +- kind: conda + 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 + size: 26155 + timestamp: 1706900211496 +- kind: conda + name: matplotlib + version: 3.8.3 + build: py311h1ea47a8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-3.8.3-py311h1ea47a8_0.conda + sha256: ba6c75f66f9463501fe49f3d0fe3ab2c80b2b5ea1233fa7c6ec1cbdcc0342a37 + md5: 76fa41f6762c45b213e63432a2672ca8 + depends: + - matplotlib-base >=3.8.3,<3.8.4.0a0 + - pyqt >=5.10 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tornado >=5 + license: PSF-2.0 + license_family: PSF + size: 8824 + timestamp: 1708027411731 +- kind: conda + name: matplotlib + version: 3.8.3 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.8.3-py311h38be061_0.conda + sha256: e3c4aed587c91fdd1ecc2a8ba50a774e1edc7ed4dd4451fcd59bf74f07b58b97 + md5: 0452c2cca94bdda38a16cf7b84edcd27 + depends: + - matplotlib-base >=3.8.3,<3.8.4.0a0 + - pyqt >=5.10 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tornado >=5 + license: PSF-2.0 + license_family: PSF + size: 8535 + timestamp: 1708026784226 +- kind: conda + name: matplotlib + version: 3.8.3 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-3.8.3-py311h6eed73b_0.conda + sha256: 029214f70506c5acd18377c74644b921a34d2b454bbd976787c46e668b11931c + md5: 30bdee405877d3291c38ffa5819e3166 + depends: + - matplotlib-base >=3.8.3,<3.8.4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tornado >=5 + license: PSF-2.0 + license_family: PSF + size: 8613 + timestamp: 1708027016401 +- kind: conda + name: matplotlib + version: 3.8.3 + build: py311ha1ab1f8_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.8.3-py311ha1ab1f8_0.conda + sha256: 45183aaecb83400b0e435ae9c309844c50a83836a27946fd8c618888c79ae624 + md5: 2aea37eb7fb61fdf23356864d79a8720 + depends: + - matplotlib-base >=3.8.3,<3.8.4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tornado >=5 + license: PSF-2.0 + license_family: PSF + size: 8665 + timestamp: 1708027249910 +- kind: conda + name: matplotlib-base + version: 3.8.3 + build: py311h54ef318_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.3-py311h54ef318_0.conda + sha256: 3b1d85d61b2c88e72449c1fb2fb0893522512d0924a50aca608ba58663253907 + md5: 014c115be880802d2372ac6ed665f526 + depends: + - certifi >=2020.06.20 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - numpy >=1.21,<2 + - numpy >=1.23.5,<2.0a0 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + - tk >=8.6.13,<8.7.0a0 + license: PSF-2.0 + license_family: PSF + size: 7927557 + timestamp: 1708026755428 +- kind: conda + name: matplotlib-base + version: 3.8.3 + build: py311h6e989c2_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.3-py311h6e989c2_0.conda + sha256: f94ddc2f6e2009563797e14621e010210bf5ce00f2ca03096912945eff19288f + md5: 47fb1d03ff14dcf37bed939b9bf6b72b + depends: + - certifi >=2020.06.20 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - numpy >=1.21,<2 + - numpy >=1.23.5,<2.0a0 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: PSF-2.0 + license_family: PSF + size: 7848740 + timestamp: 1708027375396 +- kind: conda + name: matplotlib-base + version: 3.8.3 + build: py311h6ff1f5f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.8.3-py311h6ff1f5f_0.conda + sha256: 8b317ebb64621325aa56630989a500c67dedc7512eec892de85fe9c676eadf9a + md5: 34a8ced9af5c6c771d5c18213151a639 + depends: + - __osx >=10.12 + - certifi >=2020.06.20 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libcxx >=16 + - numpy >=1.21,<2 + - numpy >=1.23.5,<2.0a0 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + license: PSF-2.0 + license_family: PSF + size: 7806156 + timestamp: 1708026973946 +- kind: conda + name: matplotlib-base + version: 3.8.3 + build: py311hb58f1d1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.8.3-py311hb58f1d1_0.conda + sha256: 03a67cafc8a54b0b78170e6a770981aa7d0e657478a4ff394afd78cafe2a197f + md5: 2a92e691e859ebdd98d60a9664d42074 + depends: + - certifi >=2020.06.20 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libcxx >=16 + - numpy >=1.21,<2 + - numpy >=1.23.5,<2.0a0 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + license: PSF-2.0 + license_family: PSF + size: 7773555 + timestamp: 1708027200046 +- kind: conda + name: mccabe + version: 0.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_0.tar.bz2 + sha256: 0466ad9490b761e9a8c57fab574fc099136b45fa19a0746ce33acdeb2a84766b + md5: 34fc335fc50eef0b5ea708f2b5f54e0c + depends: + - python >=3.6 + license: MIT + license_family: MIT + size: 10909 + timestamp: 1643049714491 +- kind: conda + name: mdurl + version: 0.1.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + sha256: 64073dfb6bb429d52fff30891877b48c7ec0f89625b1bf844905b66a81cce6e1 + md5: 776a8dd9e824f77abac30e6ef43a8f7a + depends: + - python >=3.6 + license: MIT + license_family: MIT + size: 14680 + timestamp: 1704317789138 +- kind: conda + name: menuinst + version: 1.4.20 + build: py311h12c1d0e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-1.4.20-py311h12c1d0e_0.conda + sha256: 8e628e6a86a55917779534007869d9697a9d7207b10647d20213073852066c26 + md5: f399257bb7f5a53a2759eb149af52ccc + 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-3-Clause + license_family: BSD + size: 109334 + timestamp: 1699352694356 +- kind: conda + name: menuinst + version: 2.0.2 + build: py311h12c1d0e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.0.2-py311h12c1d0e_0.conda + sha256: f9d8546d20e200934c403a87f027f773bc7cbcbb2918da92982f36ce364c5b1e + md5: 9e5d86b86c77cf619ae7ffc86111e983 + 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-3-Clause AND MIT + size: 130105 + timestamp: 1705068968341 +- kind: conda + name: menuinst + version: 2.0.2 + build: py311h267d04e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.0.2-py311h267d04e_0.conda + sha256: c6d56c01c944b9928b162e200f645e0a2acb3a5dc4e768bb32e3de2c5a0d3978 + md5: f3897e70c66899a3c9eb1d5c26db5708 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause AND MIT + size: 163901 + timestamp: 1705068885875 +- kind: conda + name: menuinst + version: 2.0.2 + build: py311h38be061_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.0.2-py311h38be061_0.conda + sha256: 2b24fb1d1cfff4842e11fe2a7e4039f6d3cd278ae6f2a2f0ddd31256830ec4c8 + md5: 0f8411bb84953be39017f87223307cb8 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause AND MIT + size: 162568 + timestamp: 1705068487489 +- kind: conda + name: menuinst + version: 2.0.2 + build: py311h6eed73b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.0.2-py311h6eed73b_0.conda + sha256: fec460c320d91aa94e80c1fd39826be15fd22ba149a4d82294791547da384691 + md5: 31e2783cf835bf8a461ad295a55aa1e1 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause AND MIT + size: 163655 + timestamp: 1705068621155 +- kind: conda + name: metpy + version: 1.6.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/metpy-1.6.1-pyhd8ed1ab_0.conda + sha256: f805285d3a468bd40844be7fc2b28642e120818fdc09372adc737db9d4531a79 + md5: fdfc73cf6c37e3af737b8169418699db + depends: + - cartopy >=0.17.0 + - matplotlib-base >=3.5.0 + - numpy >=1.20 + - pandas >=1.4.0 + - pint >=0.17.0 + - pooch >=1.2.0 + - pyproj >=3.0.0 + - python >=3.9 + - scipy >=1.8.0 + - traitlets >=5.0.5 + - xarray >=0.21.0 + license: BSD-3-Clause + license_family: BSD + size: 339784 + timestamp: 1704930270826 +- kind: conda + name: mkl + version: 2024.0.0 + build: h66d3029_49657 + build_number: 49657 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.0.0-h66d3029_49657.conda + sha256: 928bed978827e4c891d0879d79ecda6c9104ed7df1f1d4e2e392c9c80b471be7 + md5: 006b65d9cd436247dfe053df772e041d + depends: + - intel-openmp 2024.* + - tbb 2021.* + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 108505947 + timestamp: 1701973497498 +- kind: conda + name: mock + version: 5.1.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mock-5.1.0-pyhd8ed1ab_0.conda + sha256: c83ca0a2f3bdcaa3cec5d7b5c796748f66de530f7a2f1bdb27d3de424fb5b304 + md5: 926c67c0310094cf421ad13f7d3f38e5 + depends: + - python >=3.6 + license: BSD-2-Clause + license_family: BSD + size: 33581 + timestamp: 1689092227859 +- 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 + size: 54469 + timestamp: 1704738585811 +- kind: conda + name: mpg123 + version: 1.32.4 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.4-h59595ed_0.conda + sha256: 512f4ad7eda3b2c9a1cc9f7931932aefa6e79567e35b76de03895e769cb3b43c + md5: 3f1017b4141e943d9bc8739237f749e8 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LGPL-2.1-only + license_family: LGPL + size: 491061 + timestamp: 1704980200966 +- kind: conda + name: msys2-conda-epoch + version: '20160418' + build: '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 +- kind: conda + name: multidict + version: 6.0.5 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.5-py311h459d7ec_0.conda + sha256: aa20fb2d8ecb16099126ec5607fc12082de4111b5e4882e944f4b6cd846178d9 + md5: 4288ea5cbe686d1b18fc3efb36c009a5 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 61944 + timestamp: 1707040860316 +- kind: conda + name: multidict + version: 6.0.5 + build: py311h5547dcb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.5-py311h5547dcb_0.conda + sha256: 6bb2acb8f4c1c25e4bb61421f654559c044af98d409c794cd84ae9fbac031ded + md5: 163d2cb37b054606283917075809c5be + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 55414 + timestamp: 1707040997198 +- kind: conda + name: multidict + version: 6.0.5 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.5-py311ha68e1ae_0.conda + sha256: 2c293ae0eea6a117f307ac19cc2f3a8ffa0489f91e836bc5e573112e8e24915a + md5: 524a0b4313bfc6986a9ab28d5aed5d1e + 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: Apache-2.0 + license_family: APACHE + size: 56996 + timestamp: 1707041405260 +- kind: conda + name: multidict + version: 6.0.5 + build: py311he2be06e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.0.5-py311he2be06e_0.conda + sha256: 4cec39a59647f2ed4c43e3ce67367bf9114782cbc6c6901c17aa9f9fa2c18174 + md5: da67ca4f3cc3f0bf140643d5e03cabe5 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 56038 + timestamp: 1707041092018 +- kind: conda + name: munkres + version: 1.1.4 + build: pyh9f0ad1d_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + depends: + - python + license: Apache-2.0 + license_family: Apache + size: 12452 + timestamp: 1600387789153 +- kind: conda + name: mysql-common + version: 8.0.33 + build: h1d20c9b_6 + build_number: 6 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.0.33-h1d20c9b_6.conda + sha256: b6b18aeed435d4075b4aac3559a070a6caa5a174a339e8de87785fca2f8f57a6 + md5: ad07fbd8dc7992e5e004f7bdfdee246d + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - openssl >=3.1.4,<4.0a0 + size: 763190 + timestamp: 1698938422063 +- kind: conda + name: mysql-common + version: 8.0.33 + build: hf1915f5_6 + build_number: 6 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_6.conda + sha256: c8b2c5c9d0d013a4f6ef96cb4b339bfdc53a74232d8c61ed08178e5b1ec4eb63 + md5: 80bf3b277c120dd294b51d404b931a75 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.1.4,<4.0a0 + size: 753467 + timestamp: 1698937026421 +- kind: conda + name: mysql-common + version: 8.0.33 + build: hf9e6398_6 + build_number: 6 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-common-8.0.33-hf9e6398_6.conda + sha256: 9d60d7779c9c2e6c783521922ab715964fc966d827493877c3b6844dacf2b140 + md5: 5c969a77f976c028192f8120483e2f4d + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - openssl >=3.1.4,<4.0a0 + size: 751501 + timestamp: 1698939564933 +- kind: conda + name: mysql-libs + version: 8.0.33 + build: hca2cd23_6 + build_number: 6 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_6.conda + sha256: 78c905637dac79b197395065c169d452b8ca2a39773b58e45e23114f1cb6dcdb + md5: e87530d1b12dd7f4e0f856dc07358d60 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - mysql-common 8.0.33 hf1915f5_6 + - openssl >=3.1.4,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + size: 1530126 + timestamp: 1698937116126 +- kind: conda + name: mysql-libs + version: 8.0.33 + build: he3dca8b_6 + build_number: 6 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-libs-8.0.33-he3dca8b_6.conda + sha256: 1544f64334c1d87a83df21b93d5b61429db4a9317ddb8b5e09ad3384adf88ad1 + md5: 98bbd77933bb5d947dce7ca552744871 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - libzlib >=1.2.13,<1.3.0a0 + - mysql-common 8.0.33 hf9e6398_6 + - openssl >=3.1.4,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + size: 1510603 + timestamp: 1698939692982 +- kind: conda + name: mysql-libs + version: 8.0.33 + build: hed35180_6 + build_number: 6 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.0.33-hed35180_6.conda + sha256: 87d754167fddf342b894e377fdcaac096c93c941773267ad9c89bb7b64924a33 + md5: c27fddc4d3c2d471d1d706b243570f37 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - libzlib >=1.2.13,<1.3.0a0 + - mysql-common 8.0.33 h1d20c9b_6 + - openssl >=3.1.4,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + size: 1493906 + timestamp: 1698938538673 +- kind: conda + name: nco + version: 5.1.5 + build: h2649ec8_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nco-5.1.5-h2649ec8_0.conda + sha256: b627d7949807382f4206f0d28f9d6b56d2764e5be28320ea81d98e07137c52ff + md5: 6d268bff56339809f72004e81ed7160f + depends: + - _openmp_mutex >=4.5 + - curl + - esmf + - expat >=2.5.0,<3.0a0 + - gsl >=2.7,<2.8.0a0 + - hdf5 >=1.12.2,<1.12.3.0a0 + - krb5 >=1.20.1,<1.21.0a0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - tempest-remap !=2.1.2,!=2.1.3 + - udunits2 + license: BSD-3-Clause + license_family: BSD + size: 1787914 + timestamp: 1678827346 +- kind: conda + name: nco + version: 5.1.5 + build: hbf1a90d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nco-5.1.5-hbf1a90d_0.conda + sha256: 9d43fce610dbc2139331d3e6e78499a53ac16c39c8daeb2e948ce2a6008c3522 + md5: ec598366113b1ed12c34365459a150ab + depends: + - curl + - esmf + - expat >=2.5.0,<3.0a0 + - gsl >=2.7,<2.8.0a0 + - hdf5 >=1.12.2,<1.12.3.0a0 + - krb5 >=1.20.1,<1.21.0a0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=14.0.6 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - llvm-openmp >=14.0.6 + - tempest-remap !=2.1.2,!=2.1.3 + - udunits2 + license: BSD-3-Clause + license_family: BSD + size: 1934144 + timestamp: 1678827897116 +- kind: conda + name: nco + version: 5.1.5 + build: hc0c834f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nco-5.1.5-hc0c834f_0.conda + sha256: 8face1647513a4d61a9458c37ae358a7cc25ece13c0c172ca5a621286b63669f + md5: 394ff5fe833697ebad63c5f0641c5022 + depends: + - curl + - esmf + - expat >=2.5.0,<3.0a0 + - gsl >=2.7,<2.8.0a0 + - hdf5 >=1.12.2,<1.12.3.0a0 + - krb5 >=1.20.1,<1.21.0a0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=14.0.6 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - llvm-openmp >=14.0.6 + - tempest-remap !=2.1.2,!=2.1.3 + - udunits2 + license: BSD-3-Clause + license_family: BSD + size: 1860158 + timestamp: 1678827674594 +- kind: conda + name: nco + version: 5.1.7 + build: hbd9a884_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/nco-5.1.7-hbd9a884_0.conda + sha256: e14ed28d77c31ac66ce4b7e8ca20446076d34fbf9d4ae7d1a2fe8f1907841e12 + md5: 1a64667734ef74d17154853e57d02f85 + depends: + - curl + - expat + - gsl >=2.7,<2.8.0a0 + - hdf5 >=1.14.1,<1.14.2.0a0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libexpat >=2.5.0,<3.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - udunits2 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 1274536 + timestamp: 1690408492651 +- 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 + 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 + 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 + size: 823010 + timestamp: 1710866856626 +- kind: conda + name: netcdf-fortran + version: 4.6.0 + build: nompi_h1701096_103 + build_number: 103 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf-fortran-4.6.0-nompi_h1701096_103.conda + sha256: ae07d220ebb7b6ca13a25f64438aa6ed5e1ae6df9ae7fbe45646de59ed3cc543 + md5: d0afe8569d67deddeec10f730657e105 + depends: + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - libgfortran 5.* + - libgfortran5 >=11.3.0 + - libnetcdf * nompi_* + - libnetcdf >=4.9.1,<4.9.2.0a0 + license: NetCDF + size: 403222 + timestamp: 1677073136528 +- kind: conda + name: netcdf-fortran + version: 4.6.0 + build: nompi_h6cf5fa2_103 + build_number: 103 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.0-nompi_h6cf5fa2_103.conda + sha256: 3af5caf8b3c5ebeb72d842e0d7636bff6b442be46edbb5fae27eb7bd8fa5d68a + md5: 1a9b4f36a62094d56a5308f520640bb7 + depends: + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - libgfortran 5.* + - libgfortran5 >=11.3.0 + - libnetcdf * nompi_* + - libnetcdf >=4.9.1,<4.9.2.0a0 + license: NetCDF + size: 389510 + timestamp: 1677073075887 +- kind: conda + name: netcdf-fortran + version: 4.6.0 + build: nompi_heb5813c_103 + build_number: 103 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.0-nompi_heb5813c_103.conda + sha256: 6881afe5de19a0250bac090112a754128086c7c32a788214353051810d747dd4 + md5: e8ad9834a77b1b819287fdc175da3360 + depends: + - hdf5 * nompi_* + - hdf5 >=1.12.2,<1.12.3.0a0 + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=11.3.0 + - libnetcdf * nompi_* + - libnetcdf >=4.9.1,<4.9.2.0a0 + license: NetCDF + size: 416579 + timestamp: 1677072715166 +- kind: conda + name: netcdf4 + version: 1.6.3 + build: nompi_py311h40498cf_100 + build_number: 100 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf4-1.6.3-nompi_py311h40498cf_100.conda + sha256: 3cdcfe21109ab308da64a123bc74120101d7a901398246f6b70d817fa89ea13a + md5: dbf7f699d214a5c7a89d23957372c245 + depends: + - cftime + - hdf5 >=1.12.2,<1.12.3.0a0 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - setuptools + license: MIT + license_family: MIT + size: 433147 + timestamp: 1678140083904 +- kind: conda + name: netcdf4 + version: 1.6.3 + build: nompi_py311ha396515_100 + build_number: 100 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.6.3-nompi_py311ha396515_100.conda + sha256: 6c07bcee0aec104942d490d66dcd8b0021b6f4377f1c46b252020e4b0fea52dc + md5: 04fe29346cb9f44217884d327190071f + depends: + - cftime + - hdf5 >=1.12.2,<1.12.3.0a0 + - libgcc-ng >=12 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + license: MIT + license_family: MIT + size: 493497 + timestamp: 1678139333334 +- kind: conda + name: netcdf4 + version: 1.6.3 + build: nompi_py311he6f34b2_100 + build_number: 100 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.6.3-nompi_py311he6f34b2_100.conda + sha256: ca2f0e3d6656be6c63505c35670e56dcc9017634ce1df6992606837adf2ded38 + md5: 0cc4c6eb51ff7a2f78921b9547bb2d3c + depends: + - cftime + - hdf5 >=1.12.2,<1.12.3.0a0 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + license: MIT + license_family: MIT + size: 447101 + timestamp: 1678139699026 +- kind: conda + name: netcdf4 + version: 1.6.4 + build: nompi_py311h91f5014_101 + build_number: 101 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/netcdf4-1.6.4-nompi_py311h91f5014_101.conda + sha256: 533a2706364dc7b3ef1c2588f56450b3dcf46df3a4c10a0f1569e064755a62da + md5: fe2636e7ffb5fcacda8a869489cd508c + depends: + - certifi + - cftime + - hdf5 >=1.14.1,<1.14.2.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 369506 + timestamp: 1687962523802 +- kind: conda + name: nspr + version: '4.35' + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda + sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c + md5: da0ec11a6454ae19bff5b02ed881a2b1 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MPL-2.0 + license_family: MOZILLA + size: 226848 + timestamp: 1669784948267 +- kind: conda + name: nspr + version: '4.35' + build: hb7217d7_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda + sha256: 35959d36ea9e8a2c422db9f113ee0ac91a9b0c19c51b05f75d0793c3827cfa3a + md5: f81b5ec944dbbcff3dd08375eb036efa + depends: + - libcxx >=14.0.6 + license: MPL-2.0 + license_family: MOZILLA + size: 220745 + timestamp: 1669785182058 +- kind: conda + name: nspr + version: '4.35' + build: hea0b92c_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda + sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de + md5: a9e56c98d13d8b7ce72bf4357317c29b + depends: + - libcxx >=14.0.6 + license: MPL-2.0 + license_family: MOZILLA + size: 230071 + timestamp: 1669785313586 +- kind: conda + name: nss + version: '3.98' + build: h1d7d5a4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda + sha256: a9bc94d03df48014011cf6caaf447f2ef86a5edf7c70d70002ec4b59f5a4e198 + md5: 54b56c2fdf973656b748e0378900ec13 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libsqlite >=3.45.1,<4.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - nspr >=4.35,<5.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 2019716 + timestamp: 1708065114928 +- kind: conda + name: nss + version: '3.98' + build: h5ce2875_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.98-h5ce2875_0.conda + sha256: eecb5718c43dd68cf8150b1e75c91518dae457348828361034639e9e2ea82c82 + md5: db0d8f4d11186e4cb3f1a3e0385ca075 + depends: + - libcxx >=16 + - libsqlite >=3.45.1,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - nspr >=4.35,<5.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 1809748 + timestamp: 1708065511899 +- kind: conda + name: nss + version: '3.98' + build: ha05da47_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.98-ha05da47_0.conda + sha256: 3d99dd976aeb8678e4ac5fcbd574e1de50cdc57b742e22855f294c8047d5c68e + md5: 79d062716d8e1f77cf806c6fe0f4405c + depends: + - libcxx >=16 + - libsqlite >=3.45.1,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - nspr >=4.35,<5.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 1908769 + timestamp: 1708065399315 +- kind: conda + name: numpy + version: 1.26.4 + build: py311h0b4df5a_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 + md5: 7b240edd44fd7a0991aa409b07cee776 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7104093 + timestamp: 1707226459646 +- kind: conda + name: numpy + version: 1.26.4 + build: py311h64a7726_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 + md5: a502d7aad449a1206efb366d6a12c52d + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 8065890 + timestamp: 1707225944355 +- kind: conda + name: numpy + version: 1.26.4 + build: py311h7125741_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda + sha256: 160a52a01fea44fe9753a2ed22cf13d7b55c8a89ea0b8738546fdbf4795d6514 + md5: 3160b93669a0def35a7a8158ebb33816 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=16 + - liblapack >=3.9.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 6652352 + timestamp: 1707226297967 +- kind: conda + name: numpy + version: 1.26.4 + build: py311hc43a94b_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py311hc43a94b_0.conda + sha256: dc9628197125ee1d02b2e7a859a769d26291d747ed79337309b8a9e67a8b8e00 + md5: bb02b8801d17265160e466cf8bbf28da + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=16 + - liblapack >=3.9.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7504319 + timestamp: 1707226235372 +- kind: conda + name: openjpeg + version: 2.5.0 + build: h5d0d7b0_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h5d0d7b0_1.tar.bz2 + sha256: 8e8851daf6eabf553e0bdf7cbdd3011b86e579d742852d2d757389f97a463b45 + md5: be533cc782981a0ec5eed28aa618470a + depends: + - libcxx >=13.0.1 + - libpng >=1.6.37,<1.7.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libzlib >=1.2.12,<1.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 515543 + timestamp: 1660347964446 +- kind: conda + name: openjpeg + version: 2.5.0 + build: h5d4e404_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h5d4e404_1.tar.bz2 + sha256: 3f7fcbc048a489ed0530d3342b0b61f080071011f6df61a021f80954853e42e9 + md5: 4d65dff04bceb645c98a514c52df217f + depends: + - libcxx >=13.0.1 + - libpng >=1.6.37,<1.7.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libzlib >=1.2.12,<1.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 402402 + timestamp: 1660347945608 +- kind: conda + name: openjpeg + version: 2.5.0 + build: h7d73246_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2 + sha256: a715cba5649f12a1dca53dfd72fc49577152041f033d7595cf4b6a655a5b93b6 + md5: a11b4df9271a8d7917686725aa04c8f2 + depends: + - libgcc-ng >=12 + - libpng >=1.6.37,<1.7.0a0 + - libstdcxx-ng >=12 + - libtiff >=4.4.0,<4.5.0a0 + - libzlib >=1.2.12,<1.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 546164 + timestamp: 1660347757945 +- kind: conda + name: openjpeg + version: 2.5.0 + build: hc9384bd_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-hc9384bd_1.tar.bz2 + sha256: 20bca4de8475314dc20561435ca0f6186d03502ff9914ac27be69826885dde48 + md5: a6834096f8d834339eca7ef4d23bcc44 + depends: + - libpng >=1.6.37,<1.7.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libzlib >=1.2.12,<1.3.0a0 + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: BSD-2-Clause + license_family: BSD + size: 262527 + timestamp: 1660348164930 +- kind: conda + name: openssl + version: 3.1.5 + build: h0d3ecfb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.5-h0d3ecfb_0.conda + sha256: 4bbe811bdf42cddd7bcf58c69951463c75de0b2fd505216f3b863550334aea3a + md5: b0c17f6573cad81dbb35478b136f9c24 + depends: + - ca-certificates + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2152498 + timestamp: 1706631552476 +- kind: conda + name: openssl + version: 3.1.5 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.5-hcfcfb64_0.conda + sha256: e2ef8bd57a9b2fa46a80589e2ca988a7ef947b547e79b352acda9992987748ae + md5: 52b195d405023a270ab99448685f5f82 + 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 + size: 7458975 + timestamp: 1706633605333 +- kind: conda + name: openssl + version: 3.1.5 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.5-hd590300_0.conda + sha256: 7f526336b39354c6ce18ead094efa0cb30b5747f252658cda3b23d0c9659e84e + md5: a6057a9b8f0bba4ab6ee3347a9b26b94 + depends: + - ca-certificates + - libgcc-ng >=12 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2653880 + timestamp: 1706631433595 +- kind: conda + name: openssl + version: 3.1.5 + build: hd75f5a5_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.5-hd75f5a5_0.conda + sha256: 3808dfed712d797940c3d500292d0f023079a37104d4c1cdd0b294ed8d3e366f + md5: 15ec6b74c8c13b4fe3e261358b025b35 + depends: + - ca-certificates + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2324287 + timestamp: 1706632413632 +- kind: conda + name: owslib + version: 0.30.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/owslib-0.30.0-pyhd8ed1ab_0.conda + sha256: 4b20ce4372cca014d7f858ddf7abdd2a8938a5a02a2a1d78532f0acd182c5e3e + md5: 003ee5a041a878daa8fbcfcf12b388a8 + depends: + - dataclasses + - lxml + - python >=3.8 + - python-dateutil >=1.5 + - pytz + - pyyaml + - requests >=1.0 + license: BSD-3-Clause + license_family: BSD + size: 139478 + timestamp: 1710176364941 +- 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 + size: 49832 + timestamp: 1710076089469 +- kind: conda + name: pandas + version: 2.2.1 + build: py311h320fe9a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.1-py311h320fe9a_0.conda + sha256: ce9e6dab534466e04c5d09cc341a5e2ee6b0ef8eaa05052b22484582919cd38c + md5: aac8d7137fedc2fd5f8320bf50e4204c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.11.* *_cp311 + - pytz >=2020.1 + license: BSD-3-Clause + license_family: BSD + size: 15775689 + timestamp: 1708709340605 +- kind: conda + name: pandas + version: 2.2.1 + build: py311h8f6166a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.1-py311h8f6166a_0.conda + sha256: 455f1fd9e78a0c411529d81fac40a874af464ad2a0aae33f3fa8767f4ab7be7b + md5: bc816098a39b339c3d09da63405478bf + depends: + - libcxx >=16 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.11.* *_cp311 + - pytz >=2020.1 + license: BSD-3-Clause + license_family: BSD + size: 14908279 + timestamp: 1708709866292 +- kind: conda + name: pandas + version: 2.2.1 + build: py311hf63dbb6_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.1-py311hf63dbb6_0.conda + sha256: a7412a48e94301b8905fb5f088bfcd2943a6f22c97ede28744df35a2be206b12 + md5: e9200441ab9c7d4d9d0aa85339d49efe + depends: + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.11.* *_cp311 + - pytz >=2020.1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 14483759 + timestamp: 1708710137385 +- kind: conda + name: pandas + version: 2.2.1 + build: py311hfbe21a1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.1-py311hfbe21a1_0.conda + sha256: 28988f63b34689cb46ba7c60e365dc3592c6dda253c5dfdeaf474f227f0a913d + md5: a3acae82e25855fc012c0fa025dff34d + depends: + - libcxx >=16 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.11.* *_cp311 + - pytz >=2020.1 + license: BSD-3-Clause + license_family: BSD + size: 14748104 + timestamp: 1708709831625 +- kind: conda + name: paramiko + version: 3.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda + sha256: 2e66359261954a79b66858c30e69ea6dd4380bf8bd733940527386b25e31dd13 + md5: a5e792523b028b06d7ce6e65a6cd4a33 + depends: + - bcrypt >=3.2 + - cryptography >=3.3 + - pynacl >=1.5 + - python >=3.6 + license: LGPL-2.1-or-later + license_family: LGPL + size: 160045 + timestamp: 1703016056314 +- kind: conda + name: passlib + version: 1.7.4 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/passlib-1.7.4-pyhd8ed1ab_1.conda + sha256: 22b0c524eb3f5d63ef7fbc7bff5a636b14d21abeaf9541c1781087c4099bfec7 + md5: b227694201828eba9a4c6b6d289a72dd + depends: + - argon2-cffi >=19.2.0 + - bcrypt >=3.1.0 + - cryptography + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 387513 + timestamp: 1700648582273 +- 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 + 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 + 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 + size: 135993 + timestamp: 1612446691250 +- kind: conda + name: patchelf + version: 0.17.2 + build: h58526e2_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + sha256: eb355ac225be2f698e19dba4dcab7cb0748225677a9799e9cc8e4cadc3cb738f + md5: ba76a6a448819560b5f8b08a9c74f415 + depends: + - libgcc-ng >=7.5.0 + - libstdcxx-ng >=7.5.0 + license: GPL-3.0-or-later + license_family: GPL + size: 94048 + timestamp: 1673473024463 +- kind: conda + name: pcre2 + version: '10.40' + build: h1c4e4bc_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2 + sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a + md5: e0f80c8f3a0352a54eddfe59cd2b25b1 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.12,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2552113 + timestamp: 1665563254214 +- kind: conda + name: pcre2 + version: '10.40' + build: hb34f9b4_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 + sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe + md5: 721b7288270bafc83586b0f01c2a67f2 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.12,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1161688 + timestamp: 1665563317371 +- kind: conda + name: pcre2 + version: '10.40' + build: hc3806b6_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 + sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a + md5: 69e2c796349cd9b273890bee0febfe1b + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libzlib >=1.2.12,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2412495 + timestamp: 1665562915343 +- kind: conda + name: pcre2 + version: '10.43' + build: h17e33f8_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.43-h17e33f8_0.conda + sha256: 9a82c7d49c4771342b398661862975efb9c30e7af600b5d2e08a0bf416fda492 + md5: d0485b8aa2cedb141a7bd27b4efa4c9c + depends: + - bzip2 >=1.0.8,<2.0a0 + - 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 + size: 818317 + timestamp: 1708118868321 +- kind: conda + name: perl + version: 5.32.1 + build: 7_h10d778d_perl5 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-7_h10d778d_perl5.conda + sha256: 8ebd35e2940055a93135b9fd11bef3662cecef72d6ee651f68d64a2f349863c7 + md5: dc442e0885c3a6b65e61c61558161a9e + license: GPL-1.0-or-later OR Artistic-1.0-Perl + size: 12334471 + timestamp: 1703311001432 +- kind: conda + name: perl + version: 5.32.1 + build: 7_h4614cfb_perl5 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/perl-5.32.1-7_h4614cfb_perl5.conda + sha256: b0c55040d2994fd6bf2f83786561d92f72306d982d6ea12889acad24a9bf43b8 + md5: ba3cbe93f99e896765422cc5f7c3a79e + license: GPL-1.0-or-later OR Artistic-1.0-Perl + size: 14439531 + timestamp: 1703311335652 +- kind: conda + name: perl + version: 5.32.1 + build: 7_hd590300_perl5 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda + sha256: 9ec32b6936b0e37bcb0ed34f22ec3116e75b3c0964f9f50ecea5f58734ed6ce9 + md5: f2cfec9406850991f4e3d960cc9e3321 + depends: + - libgcc-ng >=12 + - libxcrypt >=4.4.36 + license: GPL-1.0-or-later OR Artistic-1.0-Perl + size: 13344463 + timestamp: 1703310653947 +- kind: conda + name: pillow + version: 9.2.0 + build: py311h09de4a2_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.2.0-py311h09de4a2_3.tar.bz2 + sha256: fadbf872eff98aa5149a69b6388fa809810c1c4f659c158a21ac559cf5d3102b + md5: 8fd90886cf932298fe5e2f1a9f8d37ad + depends: + - freetype >=2.12.1,<3.0a0 + - jpeg >=9e,<10a + - lcms2 >=2.12,<3.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base >=1.2.4,<2.0a0 + - libxcb >=1.13,<1.14.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - tk >=8.6.12,<8.7.0a0 + license: LicenseRef-PIL + size: 47533409 + timestamp: 1666921010731 +- kind: conda + name: pillow + version: 9.2.0 + build: py311h9461556_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py311h9461556_3.tar.bz2 + sha256: 0931e054b346139ca8ca5d0cea67f159fb68336470bdfc539f8ff2edfe3b7e37 + md5: 03ff0e369f200145f55f94a7a5be1cc4 + depends: + - freetype >=2.12.1,<3.0a0 + - jpeg >=9e,<10a + - lcms2 >=2.12,<3.0a0 + - libgcc-ng >=12 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base >=1.2.4,<2.0a0 + - libxcb >=1.13,<1.14.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tk >=8.6.12,<8.7.0a0 + license: LicenseRef-PIL + size: 47659026 + timestamp: 1666920698917 +- kind: conda + name: pillow + version: 9.2.0 + build: py311h97bb24d_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pillow-9.2.0-py311h97bb24d_3.tar.bz2 + sha256: e0fb789de5c94248167a2119860f0493744352b6864441141f5de6b1f76b9246 + md5: 4387c195c89548640148b908b8195c6f + depends: + - freetype >=2.12.1,<3.0a0 + - jpeg >=9e,<10a + - lcms2 >=2.12,<3.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base >=1.2.4,<2.0a0 + - libxcb >=1.13,<1.14.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tk >=8.6.12,<8.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: LicenseRef-PIL + size: 47666141 + timestamp: 1666921159105 +- kind: conda + name: pillow + version: 9.2.0 + build: py311he7df5c9_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py311he7df5c9_3.tar.bz2 + sha256: 3f21179f5cc5a5eaf5dea88e13ce341a8532bcfd5c9f9efd811a07f87bc27939 + md5: 98a9590d51ca20ae722ae5f850ddc6ca + depends: + - freetype >=2.12.1,<3.0a0 + - jpeg >=9e,<10a + - lcms2 >=2.12,<3.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - libwebp-base >=1.2.4,<2.0a0 + - libxcb >=1.13,<1.14.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tk >=8.6.12,<8.7.0a0 + license: LicenseRef-PIL + size: 47558779 + timestamp: 1666920939956 +- kind: conda + name: pint + version: '0.23' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pint-0.23-pyhd8ed1ab_0.conda + sha256: c26dfa2094949782db6ddbce2b6e03aff1e9e64c808fef68f66cfea72be18e1d + md5: d47f9170e3933e53368e0d447c16856f + depends: + - python >=3.9 + - typing_extensions + license: BSD-3-Clause + license_family: BSD + size: 237333 + timestamp: 1702077087692 +- kind: conda + name: pixman + version: 0.43.2 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda + sha256: 366d28e2a0a191d6c535e234741e0cd1d94d713f76073d8af4a5ccb2a266121e + md5: 71004cbf7924e19c02746ccde9fd7123 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 386826 + timestamp: 1706549500138 +- 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 + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 28142 + timestamp: 1709561205511 +- 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 + 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: 20210 + timestamp: 1706713564353 +- 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 + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 23384 + timestamp: 1706116931972 +- kind: conda + name: ply + version: '3.11' + build: py_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + md5: 7205635cd71531943440fbfe3b6b5727 + depends: + - python + license: BSD 3-clause + license_family: BSD + size: 44837 + timestamp: 1530963184592 +- kind: conda + name: pooch + version: 1.8.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.1-pyhd8ed1ab_0.conda + sha256: 63f95e626754f5e05e74f39c0f4866aa8bd40b933eef336077978d365d66ca7b + md5: d15917f33140f8d2ac9ca44db7ec8a25 + depends: + - packaging >=20.0 + - platformdirs >=2.5.0 + - python >=3.7 + - requests >=2.19.0 + license: BSD-3-Clause + license_family: BSD + size: 52720 + timestamp: 1708448699261 +- kind: conda + name: proj + version: 9.1.1 + build: h3863b3b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/proj-9.1.1-h3863b3b_0.conda + sha256: 29e5c3625369b134dd5469e67a168da2089692030ff4b0afbb23b70a7f4d4038 + md5: ab638e89b7021d3a494526ef5cbe58c7 + depends: + - libcurl >=7.86.0,<9.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - sqlite + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2584531 + timestamp: 1669910972495 +- kind: conda + name: proj + version: 9.1.1 + build: h3bdf472_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.1.1-h3bdf472_0.conda + sha256: b492ef19461bd2239997a68fa65ce0c56e4e8b20eb766e4a36e8ba39f3ff1aac + md5: 9aaa25768b23f4cf0d35f248bae91946 + depends: + - libcurl >=7.86.0,<9.0a0 + - libcxx >=14.0.6 + - libsqlite >=3.40.0,<4.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2535358 + timestamp: 1669911374736 +- kind: conda + name: proj + version: 9.1.1 + build: h93bde94_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.1-h93bde94_0.conda + sha256: 8373296bdd8f46b0dcf5315880af95e74ee78adac7f1c173d64bdc2c6d25fbf2 + md5: f24d7bedeaa2dcdf4aee8698a9c28154 + depends: + - libcurl >=7.86.0,<9.0a0 + - libgcc-ng >=12 + - libsqlite >=3.40.0,<4.0a0 + - libstdcxx-ng >=12 + - libtiff >=4.4.0,<4.5.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2903949 + timestamp: 1669910791139 +- kind: conda + name: proj + version: 9.1.1 + build: hcbd9701_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.1.1-hcbd9701_0.conda + sha256: 3ad016acbc6bff44aa0290ebeb7092e4972927abef53bc4073b684b339e85243 + md5: 6e4dc5c6ec6c4b21e67da81886e95a09 + depends: + - libcurl >=7.86.0,<9.0a0 + - libcxx >=14.0.6 + - libsqlite >=3.40.0,<4.0a0 + - libtiff >=4.4.0,<4.5.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2611758 + timestamp: 1669911480928 +- kind: conda + name: prompt-toolkit + version: 3.0.42 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda + sha256: 58525b2a9305fb154b2b0d43a48b9a6495441b80e4fbea44f2a34a597d2cef16 + md5: 0bf64bf10eee21f46ac83c161917fa86 + depends: + - python >=3.7 + - wcwidth + constrains: + - prompt_toolkit 3.0.42 + license: BSD-3-Clause + license_family: BSD + size: 270398 + timestamp: 1702399557137 +- kind: conda + name: prompt_toolkit + version: 3.0.42 + build: hd8ed1ab_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.42-hd8ed1ab_0.conda + sha256: fd2185d501bf34cb4c121f2f5ade9157ac75e1644a9da81355c4c8f9c1b82d4d + md5: 85a2189ecd2fcdd86e92b2d4ea8fe461 + depends: + - prompt-toolkit >=3.0.42,<3.0.43.0a0 + license: BSD-3-Clause + license_family: BSD + size: 6846 + timestamp: 1702399567048 +- kind: conda + name: property-cached + version: 1.6.4 + build: py_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/property-cached-1.6.4-py_0.tar.bz2 + sha256: 254317875bd3cc89b55ca5988612bce43df4e93ac38cdd19d60e231538b4bc80 + md5: a2595eeb1eb6d3ea08c657c69db60cd4 + depends: + - python >=3.5 + - setuptools >=39.2 + license: BSD-3-Clause + license_family: BSD + size: 9179 + timestamp: 1583522791709 +- kind: conda + name: psutil + version: 5.9.8 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py311h05b510d_0.conda + sha256: 2b6e485c761fa3e7271c44a070c0d08e79a6758ac4d7a660eaff0ed0a60c6f2b + md5: 970ef0edddc6c2cfeb16b7225a28a1f4 + 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 + size: 513415 + timestamp: 1705722847446 +- kind: conda + name: psutil + version: 5.9.8 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py311h459d7ec_0.conda + sha256: 467788418a2c71fb3df9ac0a6282ae693d1070a6cb47cb59bdb529b53acaee1c + md5: 9bc62d25dcf64eec484974a3123c9d57 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 505516 + timestamp: 1705722586221 +- kind: conda + name: psutil + version: 5.9.8 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py311ha68e1ae_0.conda + sha256: 77760f2ce0d2be9339d94d0fb5b3d102659355563f5b6471a1231525e63ff581 + md5: 17e48538806e7c682d2ffcbd5c9f9aa0 + 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-3-Clause + license_family: BSD + size: 520242 + timestamp: 1705723070638 +- kind: conda + name: psutil + version: 5.9.8 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py311he705e18_0.conda + sha256: fcff83f4d265294b54821656a10be62421da377885ab2e9811a80eb76419b3fe + md5: 31aa294c58b3058c179a7a9593e99e18 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 513371 + timestamp: 1705722716862 +- kind: conda + name: psycopg2 + version: 2.9.6 + build: py311h68d4568_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/psycopg2-2.9.6-py311h68d4568_0.conda + sha256: ceb2802e871494555ed3ef8e991b9307333a8e677365832ce04d8699f3d08813 + md5: d8dde12822064af1472a4693d75444b9 + depends: + - libgcc-ng >=12 + - libpq >=15.3,<16.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-3.0-or-later + license_family: LGPL + size: 189004 + timestamp: 1688999225513 +- kind: conda + name: psycopg2 + version: 2.9.6 + build: py311h9d5d566_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psycopg2-2.9.6-py311h9d5d566_0.conda + sha256: 37580ce504464e4e4fb2228fa7be650b331604379162ed4eb690a792f00a9527 + md5: ec2cb3de2ba3eaa0b3045f3664ca3477 + depends: + - libpq >=15.3,<16.0a0 + - openssl >=3.1.1,<4.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-3.0-or-later + license_family: LGPL + size: 171767 + timestamp: 1688999638046 +- kind: conda + name: psycopg2 + version: 2.9.6 + build: py311hb12f294_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/psycopg2-2.9.6-py311hb12f294_0.conda + sha256: 87364bf1921b0c606167b990277a68e2b9a83ef05888e78c53b1cca36f1440fd + md5: 37a6f43c24ab9b5d8f430e9b2c1cb5b5 + depends: + - libpq >=15.3,<16.0a0 + - openssl >=3.1.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: LGPL-3.0-or-later + license_family: LGPL + size: 171542 + timestamp: 1688999729067 +- kind: conda + name: psycopg2 + version: 2.9.6 + build: py311he0dd62d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/psycopg2-2.9.6-py311he0dd62d_0.conda + sha256: 8c19430d79941901264dc52646b85d806a09511eb87b11db398068e355b68cd8 + md5: ac65c09b2281db8b6971e56b505f033f + depends: + - libpq >=15.3,<16.0a0 + - openssl >=3.1.1,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-3.0-or-later + license_family: LGPL + size: 165995 + timestamp: 1688999428342 +- kind: conda + name: pthread-stubs + version: '0.4' + build: h27ca646_1001 + build_number: 1001 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2 + sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 + md5: d3f26c6494d4105d4ecb85203d687102 + license: MIT + license_family: MIT + size: 5696 + timestamp: 1606147608402 +- kind: conda + name: pthread-stubs + version: '0.4' + build: h36c2ea0_1001 + build_number: 1001 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 + sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff + md5: 22dad4df6e8630e8dff2428f6f6a7036 + depends: + - libgcc-ng >=7.5.0 + license: MIT + license_family: MIT + size: 5625 + timestamp: 1606147468727 +- kind: conda + name: pthread-stubs + version: '0.4' + build: hc929b4f_1001 + build_number: 1001 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 + sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 + md5: addd19059de62181cd11ae8f4ef26084 + license: MIT + license_family: MIT + size: 5653 + timestamp: 1606147699844 +- kind: conda + name: pthread-stubs + version: '0.4' + build: hcd874cb_1001 + build_number: 1001 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 + sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a + md5: a1f820480193ea83582b13249a7e7bd9 + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 6417 + timestamp: 1606147814351 +- kind: conda + name: pthreads-win32 + version: 2.9.1 + build: hfa6e2cd_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 + sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005 + md5: e2da8758d7d51ff6aa78a14dfb9dbed4 + depends: + - vc 14.* + license: LGPL 2 + size: 144301 + timestamp: 1537755684331 +- kind: conda + name: pulseaudio + version: '16.1' + build: hcb278e6_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-16.1-hcb278e6_3.conda + sha256: 59f58bbe5ead04537ffcd6262674daf71e9702e88d1c142a38dcd641b4eab936 + md5: 8b452ab959166d91949af4c2d28f81db + depends: + - libgcc-ng >=12 + - pulseaudio-client 16.1 h5195f5e_3 + - pulseaudio-daemon 16.1 ha8d29e2_3 + license: LGPL-2.1-or-later + license_family: LGPL + size: 16628 + timestamp: 1679504551442 +- kind: conda + name: pulseaudio-client + version: '16.1' + build: h5195f5e_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-h5195f5e_3.conda + sha256: da289229ca472fa17f5c194c86362354f6dc66311502bb44959a93e7bb88e320 + md5: caeb3302ef1dc8b342b20c710a86f8a9 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libsndfile >=1.2.0,<1.3.0a0 + - libsystemd0 >=253 + constrains: + - pulseaudio 16.1 *_3 + license: LGPL-2.1-or-later + license_family: LGPL + size: 752233 + timestamp: 1679504427309 +- kind: conda + name: pulseaudio-daemon + version: '16.1' + build: ha8d29e2_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-daemon-16.1-ha8d29e2_3.conda + sha256: ce549c137b7d2711a6fe65d07ca9926fe267143d1c72c3f75d058470391c2ed2 + md5: 34d9d75ca896f5919c372a34e25f23ea + depends: + - alsa-lib >=1.2.8,<1.2.9.0a0 + - dbus >=1.13.6,<2.0a0 + - fftw >=3.3.10,<4.0a0 + - gstreamer-orc >=0.4.33,<0.5.0a0 + - jack >=1.9.22,<1.10.0a0 + - libcap >=2.67,<2.68.0a0 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libsndfile >=1.2.0,<1.3.0a0 + - libsystemd0 >=253 + - libtool >=2.4.7,<3.0a0 + - libudev1 >=253 + - openssl >=3.1.0,<4.0a0 + - pulseaudio-client 16.1 h5195f5e_3 + constrains: + - pulseaudio 16.1 *_3 + license: GPL-2.0-or-later + license_family: GPL + size: 848588 + timestamp: 1679504539092 +- kind: conda + name: py + version: 1.11.0 + build: pyh6c4a22f_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 + sha256: 268be33a290e3d51467ab29cbb5a80cf79f69dade2f2dead25d7f80d76c3543a + md5: b4613d7e7a493916d867842a6a148054 + depends: + - python >=2.7 + license: MIT + license_family: MIT + size: 76038 + timestamp: 1636301988765 +- kind: conda + name: py-lief + version: 0.12.3 + build: py311h12c1d0e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/py-lief-0.12.3-py311h12c1d0e_0.tar.bz2 + sha256: 51430af4289db873abd0d7fd541e57a700a9b42ba5cf5f5a877320aeb180f399 + md5: e3bbee7381ef4ed51db5832641c26893 + depends: + - liblief 0.12.3 h63175ca_0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 2180376 + timestamp: 1667379662798 +- kind: conda + name: py-lief + version: 0.12.3 + build: py311h814d153_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/py-lief-0.12.3-py311h814d153_0.tar.bz2 + sha256: dd11708da83302fd5ef287dc33fe87637ccfba42b3135faefc8e1762a885c6ab + md5: cdd3df753cc25aebf41024db69bc585d + depends: + - libcxx >=14.0.4 + - liblief 0.12.3 hf0c8a7f_0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1391152 + timestamp: 1667385408508 +- kind: conda + name: py-lief + version: 0.12.3 + build: py311ha362b79_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/py-lief-0.12.3-py311ha362b79_0.tar.bz2 + sha256: 27ce92dd38df41394fa23a48c5e9f16a2e598de2a0803b6154e3efa8bb2af1a1 + md5: adbe6a080737fa9fa60fd655bd3afb39 + depends: + - libgcc-ng >=12 + - liblief 0.12.3 h27087fc_0 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1800174 + timestamp: 1667380166886 +- kind: conda + name: py-lief + version: 0.12.3 + build: py311ha397e9f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-lief-0.12.3-py311ha397e9f_0.tar.bz2 + sha256: 60b8d5818ce72edf1e0a38c1b96660eee66a95b8e3b852640848a9cd4e7eded2 + md5: 23d84c9b03eec673ad6b2fd50efb7a23 + depends: + - libcxx >=14.0.4 + - liblief 0.12.3 hb7217d7_0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1332920 + timestamp: 1667378153679 +- 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 + size: 9906 + timestamp: 1610372835205 +- kind: conda + name: pycodestyle + version: 2.11.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.11.1-pyhd8ed1ab_0.conda + sha256: 1bd1199c16514cfbc92c0fdc143a00fc55a3deaf800a62a09ac79294606e567e + md5: 29ff12b36df16bb66fdccd4206aaebfb + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 34318 + timestamp: 1697203012487 +- 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 + 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 + 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 + 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 + size: 85652 + timestamp: 1696356197481 +- kind: conda + name: pycountry + version: 22.3.5 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pycountry-22.3.5-pyhd8ed1ab_0.tar.bz2 + sha256: 5e0a6df6136a59db743a6bd0b05296119506d7fd0be2a097ed4d9cba0b7d7540 + md5: 5a93e0da3b82e1464867b46492c3a035 + depends: + - python >=3.6,<4.0 + - setuptools + license: LGPL-2.1-or-later + license_family: LGPL + size: 6834296 + timestamp: 1668531640772 +- kind: conda + name: pycparser + version: '2.21' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + md5: 076becd9e05608f8dc72757d5f3a91ff + depends: + - python ==2.7.*|>=3.4 + license: BSD-3-Clause + license_family: BSD + size: 102747 + timestamp: 1636257201998 +- kind: conda + name: pyflakes + version: 3.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.2.0-pyhd8ed1ab_0.conda + sha256: b1582410fcfa30b3597629e39b688ead87833c4a64f7c4637068f80aa1411d49 + md5: 0cf7fef6aa123df28adb21a590065e3d + depends: + - python ==2.7.*|>=3.5 + license: MIT + license_family: MIT + size: 58654 + timestamp: 1704424729210 +- kind: conda + name: pygeoif + version: '0.7' + build: py_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pygeoif-0.7-py_1.tar.bz2 + sha256: f231245423fdb32d599c8aa3e8e0d8ddcc561c40c1de7d6d8ca9f12f77cc8080 + md5: 65329083826e3bac0a9fb81a7137ae4f + depends: + - python + license: LGPL-2.1 + size: 18149 + timestamp: 1530898430198 +- kind: conda + name: pygments + version: 2.17.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + sha256: af5f8867450dc292f98ea387d4d8945fc574284677c8f60eaa9846ede7387257 + md5: 140a7f159396547e9799aa98f9f0742e + depends: + - python >=3.7 + license: BSD-2-Clause + license_family: BSD + size: 860425 + timestamp: 1700608076927 +- 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 + size: 24906 + timestamp: 1706895211122 +- kind: conda + name: pymysql + version: 1.1.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pymysql-1.1.0-pyhd8ed1ab_0.conda + sha256: 100b6588bd71fd6f9e65c5ff4320cda8af7361ba8d2027e1d87635ebfc86c00a + md5: 9f470663de99381f1a27fa30b01e0c42 + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 44360 + timestamp: 1687787923661 +- 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 + 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 + 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 + 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 + size: 1150034 + timestamp: 1695545290049 +- kind: conda + name: pynco + version: 1.1.0 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pynco-1.1.0-pyhd8ed1ab_1.conda + sha256: ca713b99de316a09f767cede84d96369c95e89b259a84cc096b087de0296c483 + md5: 269d087d7f2d0343455406564e86537f + depends: + - nco + - numpy + - packaging + - python >=3.7 + license: MIT + license_family: MIT + size: 16035 + timestamp: 1678070230694 +- kind: conda + name: pyopenssl + version: 24.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-24.0.0-pyhd8ed1ab_0.conda + sha256: bacd1d38585f447e2809e7621283661da7c97cfa20f545edb0ac5838356ed87b + md5: b50aec2c744a5c493c09cce9e2e7533e + depends: + - cryptography >=41.0.5,<43 + - python >=3.7 + license: Apache-2.0 + license_family: Apache + size: 127070 + timestamp: 1706660212326 +- kind: conda + name: pyparsing + version: 3.1.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda + sha256: 06c77cb03e5dde2d939b216c99dd2db52ea93a4c7c599f3882f136005c359c7b + md5: b9a4dacf97241704529131a0dfc0494f + depends: + - python >=3.6 + license: MIT + license_family: MIT + size: 89455 + timestamp: 1709721146886 +- kind: conda + name: pyproj + version: 3.5.0 + build: py311h36482e4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyproj-3.5.0-py311h36482e4_0.conda + sha256: 70973cbfa409b2cf42578723d90fedaf662c5351b439e7d9a8c44372df30da61 + md5: 7465ee2d6186a346444c9bc90b394f3c + depends: + - certifi + - proj >=9.1.1,<9.1.2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 406119 + timestamp: 1680038116401 +- kind: conda + name: pyproj + version: 3.5.0 + build: py311h945b3ca_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.5.0-py311h945b3ca_0.conda + sha256: 586d3691c7a0cfb8916df5ddc0bfa0960cb6751e0c135a2bc3e4775a6ac46f53 + md5: 724cfa3aa075419404177d3e9eca2a8b + depends: + - certifi + - libgcc-ng >=12 + - proj >=9.1.1,<9.1.2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 472179 + timestamp: 1680037769678 +- kind: conda + name: pyproj + version: 3.5.0 + build: py311hdc3c720_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.5.0-py311hdc3c720_0.conda + sha256: c6d4d46d26ce85f867ea0b0a3111119051109583ee64f3d44b95379fbfc038b5 + md5: 4ab5671f269490793fe84e585bbeeea4 + depends: + - certifi + - proj >=9.1.1,<9.1.2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 425374 + timestamp: 1680038206965 +- kind: conda + name: pyproj + version: 3.5.0 + build: py311hef8691e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.5.0-py311hef8691e_0.conda + sha256: de7b08617dbbd1cf7331de624b95781b87a62d43fb5b00787c101a187a71e98b + md5: 4598487e6c8d5fdea84f6cef190fc198 + depends: + - certifi + - proj >=9.1.1,<9.1.2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 423634 + timestamp: 1680038259626 +- kind: conda + name: pyqt + version: 5.15.9 + build: py311h125bc19_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyqt-5.15.9-py311h125bc19_5.conda + sha256: 4608b9caafc4fa16d887f5af08e1bafe95f4cb07596ca8f5af184bf5de8f2c4c + md5: 29d36acae7ccbcb1f0ec4a39841b3197 + depends: + - pyqt5-sip 12.12.2 py311h12c1d0e_5 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.8,<5.16.0a0 + - sip >=6.7.11,<6.8.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-3.0-only + license_family: GPL + size: 3906427 + timestamp: 1695422270104 +- kind: conda + name: pyqt + version: 5.15.9 + build: py311h5b1a2bc_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyqt-5.15.9-py311h5b1a2bc_5.conda + sha256: 995ccdbe3784968e138e086799b3d4a94ba23df32662937475d53bf47676e8d6 + md5: 8cc18fe7d8016c47021c2629f8882785 + depends: + - libcxx >=15.0.7 + - pyqt5-sip 12.12.2 py311h46b81f0_5 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.8,<5.16.0a0 + - sip >=6.7.11,<6.8.0a0 + constrains: + - __osx >=10.13 + license: GPL-3.0-only + license_family: GPL + size: 4096527 + timestamp: 1695422132108 +- kind: conda + name: pyqt + version: 5.15.9 + build: py311hc49b008_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyqt-5.15.9-py311hc49b008_5.conda + sha256: 6521f2dd88c9ede7faf7ae41f234e97280b62e76c0c4d88373d81f73230d745f + md5: 11be30376524bb858197d6ef0ca95959 + depends: + - libcxx >=15.0.7 + - pyqt5-sip 12.12.2 py311ha891d26_5 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.8,<5.16.0a0 + license: GPL-3.0-only + license_family: GPL + size: 3919652 + timestamp: 1695421881652 +- kind: conda + name: pyqt + version: 5.15.9 + build: py311hf0fb5b6_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.9-py311hf0fb5b6_5.conda + sha256: 74fcdb8772c7eaf654b32922f77d9a8a1350b3446111c69a32ba4d15be74905a + md5: ec7e45bc76d9d0b69a74a2075932b8e8 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - pyqt5-sip 12.12.2 py311hb755f60_5 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.8,<5.16.0a0 + - sip >=6.7.11,<6.8.0a0 + license: GPL-3.0-only + license_family: GPL + size: 5315719 + timestamp: 1695420475603 +- kind: conda + name: pyqt5-sip + version: 12.12.2 + build: py311h12c1d0e_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyqt5-sip-12.12.2-py311h12c1d0e_5.conda + sha256: 7130493794e4c65f4e78258619a6ef9d022ba9f9b0f61e70d2973d9bc5f10e11 + md5: 1b53a20f311bd99a1e55b31b7219106f + depends: + - packaging + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - sip + - toml + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-3.0-only + license_family: GPL + size: 79724 + timestamp: 1695418442619 +- kind: conda + name: pyqt5-sip + version: 12.12.2 + build: py311h46b81f0_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyqt5-sip-12.12.2-py311h46b81f0_5.conda + sha256: de388bc1c6dcbccc04250b1a085e306905df02b4112296e1e7bc33b01467b541 + md5: 922f2e1968737a9323507bc7eb21fe6c + depends: + - libcxx >=15.0.7 + - packaging + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 74911 + timestamp: 1695418163407 +- kind: conda + name: pyqt5-sip + version: 12.12.2 + build: py311ha891d26_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyqt5-sip-12.12.2-py311ha891d26_5.conda + sha256: 6a376dee486c040d90c3658a2f7ad3a98c35a34cdc27f5f417dc4b1f98855e30 + md5: 0561a45bfdf8843c56f3b931ebd6b631 + depends: + - libcxx >=15.0.7 + - packaging + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 75332 + timestamp: 1695418376150 +- kind: conda + name: pyqt5-sip + version: 12.12.2 + build: py311hb755f60_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.12.2-py311hb755f60_5.conda + sha256: cf6936273d92e5213b085bfd9ce1a37defb46b317b6ee991f2712bf4a25b8456 + md5: e4d262cc3600e70b505a6761d29f6207 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - packaging + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 85162 + timestamp: 1695418076285 +- kind: conda + name: pyreadline3 + version: 3.4.1 + build: py311h1ea47a8_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyreadline3-3.4.1-py311h1ea47a8_3.conda + sha256: c5d81c392bf2f7309eff87ac744de4beee4fb9d69073b27573741b6aa14afee4 + md5: e86fc6f567494744bf987c6fcd7478d3 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 207350 + timestamp: 1696532213432 +- kind: conda + name: pysaml2 + version: 7.5.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pysaml2-7.5.0-pyhd8ed1ab_0.conda + sha256: 55e38146c368060b34c74085bfc7738f5095bd2ccecc746ecac0a645b4d3a4a7 + md5: 3a8ec8a5036a568bc0d67ae3cd4d9d20 + depends: + - cryptography >=3.1 + - defusedxml + - importlib-metadata >=1.7.0 + - importlib-resources + - importlib_resources + - pyopenssl + - python >=3.6 + - python-dateutil + - pytz + - requests >=2.0.0,<3.0.0 + - setuptools + - six + - xmlschema >=2.0.0,<3.0.0 + license: Apache-2.0 + license_family: APACHE + size: 267235 + timestamp: 1706622128554 +- kind: conda + name: pyshp + version: 2.3.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pyshp-2.3.1-pyhd8ed1ab_0.tar.bz2 + sha256: 41eced0d5e855bc52018f200b239d627daa38ad78a655ffa2f1efd95b07b6bce + md5: 92a889dc236a5197612bc85bee6d7174 + depends: + - python >=3.6 + license: MIT + license_family: MIT + size: 964060 + timestamp: 1659003065197 +- 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 + 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 + size: 18981 + timestamp: 1661604969727 +- kind: conda + name: pytest + version: 8.1.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + sha256: 3c481d6b54af1a33c32a3f3eaa3e0971955431e7023db55808740cd062271c73 + md5: 94ff09cdedcb7b17e9cd5097ee2cfcff + depends: + - colorama + - exceptiongroup >=1.0.0rc8 + - iniconfig + - packaging + - pluggy <2.0,>=1.4 + - python >=3.8 + - tomli >=1 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + size: 255523 + timestamp: 1709992719691 +- kind: conda + name: pytest-cov + version: 5.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-5.0.0-pyhd8ed1ab_0.conda + sha256: 218306243faf3c36347131c2b36bb189daa948ac2e92c7ab52bb26cc8c157b3c + md5: c54c0107057d67ddf077751339ec2c63 + depends: + - coverage >=5.2.1 + - pytest >=4.6 + - python >=3.8 + - toml + license: MIT + license_family: MIT + size: 25507 + timestamp: 1711411153367 +- kind: conda + name: pytest-qt + version: 4.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-qt-4.4.0-pyhd8ed1ab_0.conda + sha256: 3bc5ca8197d8642116eb401e5d91eab9b4248e6a648cf05206aad59f6aadb3f8 + md5: 86652e18a2eed57943c39610a39974b9 + depends: + - pluggy >=1.1 + - pytest + - python >=3.8 + license: MIT + license_family: MIT + size: 37615 + timestamp: 1707349889624 +- kind: conda + name: pytest-reverse + version: 1.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-reverse-1.7.0-pyhd8ed1ab_0.conda + sha256: cc5dfaad9e3a4a68996b02b1c0af86bdbe490c036bdd3c3f5df3232ee2f28199 + md5: 3fa428f9a6c904daad4e094fb79bc2e9 + depends: + - pytest + - python >=3.6 + license: MIT + license_family: MIT + size: 10097 + timestamp: 1692724254373 +- kind: conda + name: pytest-timeout + version: 2.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-timeout-2.2.0-pyhd8ed1ab_0.conda + sha256: 1c3baaa6762aabc503c37aba7bfa6bb92e1e323ba7412e735b642e0ad83ce89c + md5: 29039d5c3c5dea77ba64b8dfccd641a3 + depends: + - pytest >=5.0.0 + - python >=3.7 + license: MIT + license_family: MIT + size: 18355 + timestamp: 1696770193274 +- kind: conda + name: pytest-xdist + version: 3.5.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.5.0-pyhd8ed1ab_0.conda + sha256: 8dc1d422e48e5a80eb72e26ed0135bb4843cf508d3b1cb006c3257c8639784d1 + md5: d5f595da2daead898ca958ac62f0307b + depends: + - execnet >=1.1 + - pytest >=6.2.0 + - python >=3.7 + constrains: + - psutil >=3.0 + license: MIT + license_family: MIT + size: 36516 + timestamp: 1700593072448 +- kind: conda + name: python + version: 3.11.6 + build: h2628c8c_0_cpython + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.6-h2628c8c_0_cpython.conda + sha256: 7fb38fda8296b2651ef727bb57603f0952c07fc533b172044395744a2641a00a + md5: 80b761856b20383615a3fe8b1b13eef8 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<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 + size: 18121128 + timestamp: 1696329396864 +- kind: conda + name: python + version: 3.11.6 + build: h30d4d87_0_cpython + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.6-h30d4d87_0_cpython.conda + sha256: e3ed331204fbeb03a9a2c2fa834e74997ad4f732ba2124b36f327d38b0cded93 + md5: 4d66c5fc01e9be526afe5d828d4de24d + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.1.3,<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 + size: 15393521 + timestamp: 1696330855485 +- kind: conda + name: python + version: 3.11.6 + build: h47c9636_0_cpython + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.6-h47c9636_0_cpython.conda + sha256: 77054fa9a8fc30f71a18f599ee2897905a3c515202b614fa0f793add7a04a155 + md5: 2271df1db9534f5cac7c2d0820c3359d + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.1.3,<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 + size: 14626958 + timestamp: 1696329727433 +- kind: conda + name: python + version: 3.11.6 + build: hab00c5b_0_cpython + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.6-hab00c5b_0_cpython.conda + sha256: 84f13bd70cff5dcdaee19263b2d4291d5793856a718efc1b63a9cfa9eb6e2ca1 + md5: b0dfbe2fcbfdb097d321bfd50ecddab1 + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.0,<2.1.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.1.3,<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 + size: 30720625 + timestamp: 1696331287478 +- 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 + size: 222742 + timestamp: 1709299922152 +- kind: conda + name: python-engineio + version: 4.8.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.8.2-pyhd8ed1ab_0.conda + sha256: 79cda67b834ec235be5a8a875d681d2fe1637c09bd056a303b5423f10676ed99 + md5: 517918f17b050da47a8ccad8e31a91e7 + depends: + - python >=3.6 + - simple-websocket >=0.10.0 + license: MIT + license_family: MIT + size: 38730 + timestamp: 1704578423103 +- 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 + 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 + 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 + 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 + size: 71391 + timestamp: 1709829060640 +- kind: conda + name: python-slugify + version: 8.0.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/python-slugify-8.0.4-pyhd8ed1ab_0.conda + sha256: a1270bfd4f1d648766c8f95403f208e50d34af94761bc553a960102c6bff9fa0 + md5: 4b11845622b3c3178c0e989235b53975 + depends: + - python >=3.7 + - text-unidecode >=1.3 + constrains: + - slugify <0 + - awesome-slugify <0 + - unidecode >=1.1.1 + license: MIT + license_family: MIT + size: 15127 + timestamp: 1707425775664 +- kind: conda + name: python-socketio + version: 5.11.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda + sha256: 620ccfb5a976b120940ad2a90c9c5d302804762617d5f60014ba83dd5a022373 + md5: 08c4689825cdf902fc643a6a0934068e + depends: + - bidict >=0.21.0 + - python >=3.8 + - python-engineio >=4.8.0 + license: MIT + license_family: MIT + size: 43237 + timestamp: 1711286542648 +- kind: conda + name: python-tzdata + version: '2024.1' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda + sha256: 9da9a849d53705dee450b83507df1ca8ffea5f83bd21a215202221f1c492f8ad + md5: 98206ea9954216ee7540f0c773f2104d + depends: + - python >=3.6 + license: Apache-2.0 + license_family: APACHE + size: 144024 + timestamp: 1707747742930 +- 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 + 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 + 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 + 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 + size: 6755 + timestamp: 1695147711935 +- 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 + size: 188538 + timestamp: 1706886944988 +- kind: conda + name: pywin32-ctypes + version: 0.2.2 + build: py311h1ea47a8_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pywin32-ctypes-0.2.2-py311h1ea47a8_1.conda + sha256: 75a80bda3a87ae9387e8860be7a5271a67846d8929fe8c99799ed40eb085130a + md5: e1270294a55b716f9b76900340e8fc82 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 57331 + timestamp: 1695395348158 +- 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 + 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 + 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/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 + size: 175469 + timestamp: 1695374086205 +- kind: conda + 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.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 + size: 187795 + timestamp: 1695373829282 +- kind: conda + name: qt + version: 5.15.8 + build: h13919d0_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/qt-5.15.8-h13919d0_0.conda + sha256: 02286b451def82b6c929f237e901cd6cac90b3d52b469568b51489585f8ff113 + md5: 4a019b7c87feb224bafd7666ebe9f725 + depends: + - qt-main 5.15.8.* + - qt-webengine 5.15.8.* + license: LGPL-3.0-only + license_family: LGPL + size: 17061 + timestamp: 1678901486274 +- kind: conda + name: qt + version: 5.15.8 + build: h91493d7_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/qt-5.15.8-h91493d7_0.conda + sha256: f3538099ee807f66dbbb68ea3363dd02f958ef2915c20016d77a4e105646e52c + md5: 3ee08475530e70379071f0638d19c8c1 + depends: + - qt-main 5.15.8.* + - qt-webengine 5.15.8.* + license: LGPL-3.0-only + license_family: LGPL + size: 17305 + timestamp: 1678899501879 +- kind: conda + name: qt + version: 5.15.8 + build: h93fa01e_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/qt-5.15.8-h93fa01e_0.conda + sha256: c0e5142329c47d8a66252b6f7d8e469a3506c99aecf361e432004f3b1206b137 + md5: 372007ce17c137b8d744f092e4e8c39e + depends: + - qt-main 5.15.8.* + - qt-webengine 5.15.8.* + license: LGPL-3.0-only + license_family: LGPL + size: 16990 + timestamp: 1678899884724 +- kind: conda + name: qt + version: 5.15.8 + build: hf11cfaa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/qt-5.15.8-hf11cfaa_0.conda + sha256: 1e0adb02c84cc7bd484486f1874a4b88e8440c602c674a43d62e40a0a8217078 + md5: 07b16a5678dd6c4de2c7b0c6dac23a73 + depends: + - qt-main 5.15.8.* + - qt-webengine 5.15.8.* + license: LGPL-3.0-only + license_family: LGPL + size: 17093 + timestamp: 1678899120050 +- kind: conda + name: qt-main + version: 5.15.8 + build: h1d3b3f8_6 + build_number: 6 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/qt-main-5.15.8-h1d3b3f8_6.conda + sha256: 794bfc6b63dbeace768cfbed787d96de3d10112fe9ded1ec013e795c88d09e30 + md5: 5d816352174169f7ab45fb54a0fba4ed + depends: + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - icu >=70.1,<71.0a0 + - jpeg >=9e,<10a + - krb5 >=1.20.1,<1.21.0a0 + - libclang 13.* + - libclang >=13.0.1,<14.0a0 + - libcxx >=13.0.1 + - libglib >=2.74.1,<3.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libpq >=15.1,<16.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - mysql-libs >=8.0.31,<8.1.0a0 + - nspr >=4.35,<5.0a0 + - nss >=3.78,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + constrains: + - qt 5.15.8 + - __osx >=10.13 + license: LGPL-3.0-only + license_family: LGPL + size: 45413333 + timestamp: 1675842163722 +- kind: conda + name: qt-main + version: 5.15.8 + build: h5d23da1_6 + build_number: 6 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda + sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 + md5: 59c73debd9405771690ddbbad6c57b69 + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.8,<1.2.9.0a0 + - dbus >=1.13.6,<2.0a0 + - expat >=2.5.0,<3.0a0 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - harfbuzz >=6.0.0,<7.0a0 + - icu >=70.1,<71.0a0 + - jpeg >=9e,<10a + - krb5 >=1.20.1,<1.21.0a0 + - libclang >=15.0.7,<16.0a0 + - libclang13 >=15.0.7 + - libcups >=2.3.3,<2.4.0a0 + - libevent >=2.1.10,<2.1.11.0a0 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libpq >=15.1,<16.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libstdcxx-ng >=12 + - libxcb >=1.13,<1.14.0a0 + - libxkbcommon >=1.0.3,<2.0a0 + - libxml2 >=2.10.3,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - mysql-libs >=8.0.32,<8.1.0a0 + - nspr >=4.35,<5.0a0 + - nss >=3.82,<4.0a0 + - openssl >=3.0.8,<4.0a0 + - pulseaudio >=16.1,<16.2.0a0 + - xcb-util + - xcb-util-image + - xcb-util-keysyms + - xcb-util-renderutil + - xcb-util-wm + - zstd >=1.5.2,<1.6.0a0 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 52472654 + timestamp: 1675839238854 +- kind: conda + name: qt-main + version: 5.15.8 + build: h720456b_6 + build_number: 6 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h720456b_6.conda + sha256: d02981a157c43694b0ada9913959fdc7ecefcf1ff70b3ee5e157b22752605b71 + md5: 3047b05190091b66cf60017b8968a562 + depends: + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - icu >=70.1,<71.0a0 + - jpeg >=9e,<10a + - krb5 >=1.20.1,<1.21.0a0 + - libclang >=15.0.7,<16.0a0 + - libclang13 >=15.0.7 + - libglib >=2.74.1,<3.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.8,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + - zstd >=1.5.2,<1.6.0a0 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 60384186 + timestamp: 1675843288542 +- kind: conda + name: qt-main + version: 5.15.8 + build: hfe8d25c_6 + build_number: 6 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/qt-main-5.15.8-hfe8d25c_6.conda + sha256: a716c069cf4b734173bfa231f869812a3598df7ce916393f6203f2c38bdcab73 + md5: 92f8662c1ea1d186b8b67a0069269cfa + depends: + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - icu >=70.1,<71.0a0 + - jpeg >=9e,<10a + - krb5 >=1.20.1,<1.21.0a0 + - libclang >=14.0.6,<15.0a0 + - libclang13 >=14.0.6 + - libcxx >=14.0.6 + - libglib >=2.74.1,<3.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libpq >=15.1,<16.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - mysql-libs >=8.0.31,<8.1.0a0 + - nspr >=4.35,<5.0a0 + - nss >=3.78,<4.0a0 + - zstd >=1.5.2,<1.6.0a0 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 50661455 + timestamp: 1675844142119 +- kind: conda + name: qt-webengine + version: 5.15.8 + build: h5b1ea0b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/qt-webengine-5.15.8-h5b1ea0b_0.tar.bz2 + sha256: cf1e81025f75c46754649c823754cedd47689df281807ffbbfc6e4bdf5582de8 + md5: df6e5e96e08d7934169367b27c2f4eee + depends: + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - libiconv >=1.17,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libwebp + - libwebp-base >=1.2.4,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - qt-main >=5.15.8,<5.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + constrains: + - qt 5.15.3|5.15.4|5.15.6|5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 65088638 + timestamp: 1676615928847 +- kind: conda + name: qt-webengine + version: 5.15.8 + build: h77d6d84_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/qt-webengine-5.15.8-h77d6d84_0.tar.bz2 + sha256: 267a6bddcd19872a33a15b833792059a341fc284a1457cddda3ebb427ed277f4 + md5: 080f2cd92144c917ce0a505484fefdcd + depends: + - __glibc >=2.17,<3.0.a0 + - dbus >=1.13.6,<2.0a0 + - expat >=2.5.0,<3.0a0 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - libcups >=2.3.3,<2.4.0a0 + - libevent >=2.1.10,<2.1.11.0a0 + - libgcc-ng >=12 + - libglib >=2.74.1,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libstdcxx-ng >=12 + - libwebp + - libwebp-base >=1.2.4,<2.0a0 + - libxcb >=1.13,<1.14.0a0 + - libxkbcommon >=1.5.0,<2.0a0 + - libxml2 >=2.10.3,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - nspr >=4.35,<5.0a0 + - nss >=3.88,<4.0a0 + - pulseaudio >=16.1,<16.2.0a0 + - qt-main >=5.15.8,<5.16.0a0 + constrains: + - qt 5.15.3|5.15.4|5.15.6|5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 58921468 + timestamp: 1676709497544 +- kind: conda + name: qt-webengine + version: 5.15.8 + build: h78108cb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/qt-webengine-5.15.8-h78108cb_0.conda + sha256: 61ab77f2758304fde5cc55b98d9ddbe0a23b4eb640f1ec34da04d63594965b74 + md5: f55038211d065919f3b9186d39cbfa60 + depends: + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - libcxx >=14.0.6 + - libiconv >=1.17,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libwebp + - libwebp-base >=1.2.4,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - nspr >=4.35,<5.0a0 + - nss >=3.88,<4.0a0 + - qt-main >=5.15.8,<5.16.0a0 + constrains: + - qt 5.15.3|5.15.4|5.15.6|5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 44785244 + timestamp: 1676883237837 +- kind: conda + name: qt-webengine + version: 5.15.8 + build: h84e7aee_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/qt-webengine-5.15.8-h84e7aee_0.conda + sha256: db239d252021655055faac3ceae70c4dbb5095fcc99eb25501d906e6f0ba52f5 + md5: 88a97963c13ec0bacb35d9b871166aa2 + depends: + - gst-plugins-base >=1.22.0,<1.23.0a0 + - gstreamer >=1.22.0,<1.23.0a0 + - libcxx >=14.0.6 + - libiconv >=1.17,<2.0a0 + - libpng >=1.6.39,<1.7.0a0 + - libsqlite >=3.40.0,<4.0a0 + - libwebp + - libwebp-base >=1.2.4,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - nspr >=4.35,<5.0a0 + - nss >=3.88,<4.0a0 + - qt-main >=5.15.8,<5.16.0a0 + constrains: + - qt 5.15.3|5.15.4|5.15.6|5.15.8 + - __osx >=10.13 + license: LGPL-3.0-only + license_family: LGPL + size: 54453025 + timestamp: 1676777793114 +- 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' + 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' + 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: referencing + version: 0.34.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.34.0-pyhd8ed1ab_0.conda + sha256: 2e631e9e1d49280770573f7acc7441b70181b2dc21948bb1be15eaae80550672 + md5: e4492c22e314be5c75db3469e3bbf3d9 + depends: + - attrs >=22.2.0 + - python >=3.8 + - rpds-py >=0.7.0 + license: MIT + license_family: MIT + size: 42071 + timestamp: 1710763821612 +- kind: conda + name: reproc + version: 14.2.4.post0 + build: h10d778d_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.4.post0-h10d778d_1.conda + sha256: 41c7fb3ef17684c98c1d2c50d0eaba388beed400dbc4cc099a9f31a2819ef594 + md5: d7c3258e871481be5bbaf28b4729e29f + license: MIT + license_family: MIT + size: 32403 + timestamp: 1698242540515 +- kind: conda + name: reproc + version: 14.2.4.post0 + build: h93a5062_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.4.post0-h93a5062_1.conda + sha256: e12534c909613b56c539eed6f4cd55da2eb03086435101fad79c383a9c3df527 + md5: ef7ae6d7bb50c8c735551d825e1ea287 + license: MIT + license_family: MIT + size: 32026 + timestamp: 1698242638367 +- kind: conda + name: reproc + version: 14.2.4.post0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.4.post0-hcfcfb64_1.conda + sha256: b0febe375de5a98d6371225d4599b7e4c1a6f70d3e4e2eb50b14ec9efb19f02c + md5: 887478162e563ea09451b19c22b1605b + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 36752 + timestamp: 1698242941460 +- kind: conda + name: reproc + version: 14.2.4.post0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4.post0-hd590300_1.conda + sha256: bb2e4e0ce93bc61bc7c03c4f66abcb8161b0a4f1c41b5156cf1e5e17892b05d8 + md5: 82ca53502dfd5a64a80dee76dae14685 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 33928 + timestamp: 1698242272153 +- kind: conda + name: reproc-cpp + version: 14.2.4.post0 + build: h59595ed_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4.post0-h59595ed_1.conda + sha256: 8f0c6852471c0f2b02ab21d7c2877e30fc7f4d7d8034ca90bd9fdc3a22277fe9 + md5: 715e1d720ec1a03715bebd237972fca5 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - reproc 14.2.4.post0 hd590300_1 + license: MIT + license_family: MIT + size: 25379 + timestamp: 1698242302911 +- kind: conda + name: reproc-cpp + version: 14.2.4.post0 + build: h63175ca_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.4.post0-h63175ca_1.conda + sha256: c9b5274eca644ba52420bbdf49f654534b47719a761e15764e0d2e5b6634a7d2 + md5: 12fcd53cef836a4128c65c464ebb09d7 + depends: + - reproc 14.2.4.post0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 29917 + timestamp: 1698243016234 +- kind: conda + name: reproc-cpp + version: 14.2.4.post0 + build: h93d8f39_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.4.post0-h93d8f39_1.conda + sha256: dfdf987c7584d61a690a390872f89f968fb25ba44c76a9417f73e09bba1da3bc + md5: a32e95ada0ee860c91e87266700970c3 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - reproc 14.2.4.post0 h10d778d_1 + license: MIT + license_family: MIT + size: 24313 + timestamp: 1698242598504 +- kind: conda + name: reproc-cpp + version: 14.2.4.post0 + build: h965bd2d_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.4.post0-h965bd2d_1.conda + sha256: 83736a55ff9cf3a54591aa44c3ee1181cd570c0a452b8d8a2ab113f3e0b0974b + md5: f81d00496e13ee828f84b3ef17e41346 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - reproc 14.2.4.post0 h93a5062_1 + license: MIT + license_family: MIT + size: 24527 + timestamp: 1698242706531 +- kind: conda + name: requests + version: 2.31.0 + 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 + 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 + size: 56690 + timestamp: 1684774408600 +- kind: conda + name: rich + version: 13.7.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + sha256: 2b26d58aa59e46f933c3126367348651b0dab6e0bf88014e857415bb184a4667 + md5: ba445bf767ae6f0d959ff2b40c20912b + depends: + - markdown-it-py >=2.2.0 + - pygments >=2.13.0,<3.0.0 + - python >=3.7.0 + - typing_extensions >=4.0.0,<5.0.0 + license: MIT + license_family: MIT + size: 184347 + timestamp: 1709150578093 +- kind: conda + name: ripgrep + version: 11.0.2 + build: '1' + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ripgrep-11.0.2-1.tar.bz2 + sha256: 048cf905d58cf7d378432c23831d44ba199820f72b83e02ccdd1a31ada9ae185 + md5: 0d378c300ba9005d03ce4ce5481b240b + license: MIT + license_family: MIT + size: 1774347 + timestamp: 1568181408225 +- kind: conda + name: ripgrep + version: 14.1.0 + build: h11a7dfb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ripgrep-14.1.0-h11a7dfb_0.conda + sha256: 169febe7b502d3102cb605963bfe8e3ce713708b7565942d7c17526949a3f58e + md5: 2855f2c4247e531eed2c955c47992ce0 + constrains: + - __osx >=10.12 + license: MIT + license_family: MIT + size: 1579403 + timestamp: 1705521312619 +- kind: conda + name: ripgrep + version: 14.1.0 + build: h5ef7bb8_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ripgrep-14.1.0-h5ef7bb8_0.conda + sha256: 9a44c36b8d26fee6efee90bb4c2976ea3f9d29ed028f0188fb51b36525635f75 + md5: e24b0b5c662ec0ba685c5ce7cb38ef42 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 1420792 + timestamp: 1705521277663 +- kind: conda + name: ripgrep + version: 14.1.0 + build: he8a937b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ripgrep-14.1.0-he8a937b_0.conda + sha256: 4fcf37724b87440765cb3c6cf573e99d12fc631001426a0309d132f495c3d62a + md5: 5a476f7033a8a1b9175626b5ebf86d1d + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 1683808 + timestamp: 1705520837423 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py311h46250e7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.0-py311h46250e7_0.conda + sha256: 37d8f344b080ddceb5f1c6224049c2123e65c5d10eddd5b6e6284c8ac6044bb1 + md5: 688a1190531dc4e8c00e25d0d1de4135 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 915849 + timestamp: 1707923007711 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py311ha958965_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.18.0-py311ha958965_0.conda + sha256: 6734fd0acdd0aecd2031203cd0c1a14daceeae1f7d7e0ddfc480eaa4d652a26d + md5: a09d4882adda9bf36446f5c571738fef + depends: + - 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 + size: 292610 + timestamp: 1707923327146 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py311hc37eb10_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.0-py311hc37eb10_0.conda + sha256: 46766bb9b8df78ef7c8125f5a51f2cd77ddfbdc622a7db1a5c19c41b8d034965 + md5: 9851ab425910f099cc2d512996fc01ce + 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 + size: 203072 + timestamp: 1707923793999 +- kind: conda + name: rpds-py + version: 0.18.0 + build: py311hd64b9fd_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.18.0-py311hd64b9fd_0.conda + sha256: 4183fe5ebf84a707efe71abcb6e6f78646483dcb1a6958bf182eca771196a7d2 + md5: 18f9280b452bd1557e98147d53cd4276 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=10.12 + license: MIT + license_family: MIT + size: 299213 + timestamp: 1707923391834 +- kind: conda + name: ruamel.yaml + version: 0.17.40 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.17.40-py311h05b510d_0.conda + sha256: bf44774cbd03eb8d396a078b4af1b194f8600f8ca7ea7ca0e3d61dc16b400cb4 + md5: 640b6933c680860877b32a4c11076ab9 + 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 + - setuptools + license: MIT + license_family: MIT + size: 276178 + timestamp: 1698139045095 +- kind: conda + name: ruamel.yaml + version: 0.17.40 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.17.40-py311h459d7ec_0.conda + sha256: b33e0e83f834b948ce5c77c0df727b6cd027a388c3b4e4498b34b83751ba7c05 + md5: 59518a18bdf00ee4379797459d2c76ee + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 + - setuptools + license: MIT + license_family: MIT + size: 275662 + timestamp: 1698138796303 +- kind: conda + name: ruamel.yaml + version: 0.17.40 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.17.40-py311ha68e1ae_0.conda + sha256: 8a47b17309f93cde528b442cd06fc60bc8c69c2706fba3ccf280226a21e1c111 + md5: c9a48654bb72886709df9318320a0985 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 + - setuptools + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 276507 + timestamp: 1698139008212 +- kind: conda + name: ruamel.yaml + version: 0.17.40 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.17.40-py311he705e18_0.conda + sha256: 0260c295cdfae417f107fe2fae66bae4eb260195885d81d8b1cd4fc6d81c849b + md5: 4796cc1d45c88ace8f5bb7950167a568 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ruamel.yaml.clib >=0.1.2 + - setuptools + license: MIT + license_family: MIT + size: 277064 + timestamp: 1698138918002 +- 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 + 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 + 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 + 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 + size: 117859 + timestamp: 1707314957390 +- kind: conda + name: scipy + version: 1.12.0 + build: py311h0b4df5a_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.12.0-py311h0b4df5a_2.conda + sha256: 0519e3a4988d56e689a37d2a79b3d5cb15591d4e9428b3a66fdb607310295f1f + md5: eeccea26a9e7819b4ab9e69e4d7b9b44 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - numpy >=1.23.5,<1.28 + - numpy >=1.23.5,<2.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: BSD-3-Clause + license_family: BSD + size: 15968999 + timestamp: 1706043936628 +- kind: conda + name: scipy + version: 1.12.0 + build: py311h4f9446f_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.12.0-py311h4f9446f_2.conda + sha256: 860fb4a7ad739f7f8bf79d67cd86ae207dfb3ad89b7c2e4c873753e426bfdc69 + md5: a125c9d1b3972291b6c27b22e40d2027 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=15 + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - numpy >=1.23.5,<1.28 + - numpy >=1.23.5,<2.0a0 + - 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 + size: 15535360 + timestamp: 1706043503868 +- kind: conda + name: scipy + version: 1.12.0 + build: py311h64a7726_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.12.0-py311h64a7726_2.conda + sha256: e5aca4c5e63314848600d6da7360e0701c512f70d1783610eed5c1f7ecf58a57 + md5: 24ca5107ab75c5521067b8ba505dfae5 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=12.3.0 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + - numpy >=1.23.5,<1.28 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 17270207 + timestamp: 1706042776987 +- kind: conda + name: scipy + version: 1.12.0 + build: py311h86d0cd9_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.12.0-py311h86d0cd9_2.conda + sha256: 01035edbfed56239bff4b3845c0cef9b5e6a44c397c9ba131387df24ad7d36b8 + md5: 9a70728fa81071937bbd1ebc3b986f44 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=15 + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - numpy >=1.23.5,<1.28 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 16759101 + timestamp: 1706043392398 +- kind: conda + name: secretstorage + version: 3.3.3 + build: py311h38be061_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/secretstorage-3.3.3-py311h38be061_2.conda + sha256: 45e7d85a3663993e8bffdb7c6040561923c848e3262228b163042663caa4485e + md5: 30a57eaa8e72cb0c2c84d6d7db32010c + depends: + - cryptography + - dbus + - jeepney >=0.6 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 32421 + timestamp: 1695551942931 +- kind: conda + name: setuptools + version: 69.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: da214ecd521a720a9d521c68047682dc + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 471183 + timestamp: 1710344615844 +- kind: conda + name: sgp4 + version: '2.22' + build: py311h12feb9d_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/sgp4-2.22-py311h12feb9d_0.conda + sha256: a409c5b5536c62e55468adcd34e564ac4636452784832714cbab2bed8a246d21 + md5: c5597a2a022aa76b7fe8239dc2d579ae + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 193848 + timestamp: 1682617345624 +- kind: conda + name: sgp4 + version: '2.22' + build: py311h92ebd52_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/sgp4-2.22-py311h92ebd52_0.conda + sha256: 1b2d12d51203b34554699cd733276b8b7bdc8a7875792ec8ea243440e338d243 + md5: fa3bc01a6d45545a87c719b66b6107e2 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 202358 + timestamp: 1682616965375 +- kind: conda + name: sgp4 + version: '2.22' + build: py311hd5c4f45_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sgp4-2.22-py311hd5c4f45_0.conda + sha256: aa7bb780bf5b3df459e43a5efe73d544a6849e97d61c9ce8564d026485eb2046 + md5: a2f96a899ee396532127f0e093c112a3 + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 190976 + timestamp: 1682617354449 +- kind: conda + name: sgp4 + version: '2.22' + build: py311hddbb800_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sgp4-2.22-py311hddbb800_0.conda + sha256: 3fa355f9e7c8e7f5d5957e8c17c8e2a7d5eefa68402e944843283377f5bda550 + md5: b3315e59b53d1bc01ee9bc22483dffd9 + depends: + - libcxx >=15.0.7 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 193073 + timestamp: 1682617355559 +- kind: conda + name: shapely + version: 2.0.3 + build: py311h0815064_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/shapely-2.0.3-py311h0815064_0.conda + sha256: 7c56481532a32eb995edc684f419053748d91fc16eab2873206c8e4b69023fed + md5: 6a848b607029b286dc3313444ebc8465 + depends: + - geos >=3.12.1,<3.12.2.0a0 + - numpy >=1.23.5,<2.0a0 + - 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 + size: 540937 + timestamp: 1708368538531 +- kind: conda + name: shapely + version: 2.0.3 + build: py311h16bee0b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/shapely-2.0.3-py311h16bee0b_0.conda + sha256: aa4b7813988242077662572877f4f7e5ffa37a37c196e37f87100b956658271f + md5: 6607a6a5212fe40b9026bfda4269edc2 + depends: + - geos >=3.12.1,<3.12.2.0a0 + - numpy >=1.23.5,<2.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: BSD-3-Clause + license_family: BSD + size: 545971 + timestamp: 1708368682223 +- kind: conda + name: shapely + version: 2.0.3 + build: py311h2032efe_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/shapely-2.0.3-py311h2032efe_0.conda + sha256: b2766384c3f79a1b71224e06608b2e7a6ba8a0da0fb4981cbc36bc929acfefc9 + md5: e982956906078eeac9feb3b8db10d011 + depends: + - geos >=3.12.1,<3.12.2.0a0 + - libgcc-ng >=12 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 575357 + timestamp: 1708368112125 +- kind: conda + name: shapely + version: 2.0.3 + build: py311h4c12f3d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/shapely-2.0.3-py311h4c12f3d_0.conda + sha256: 1bc3a40e9989c1a773b536223433c96c2ae975db4a2f058f4799577f0dcb4ba2 + md5: a58eb162e082a968b0ba8ec61f1c51d0 + depends: + - geos >=3.12.1,<3.12.2.0a0 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 543769 + timestamp: 1708368311172 +- kind: conda + name: sigtool + version: 0.1.3 + build: h44b9a77_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 + sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff + md5: 4a2cac04f86a4540b8c9b8d8f597848f + depends: + - openssl >=3.0.0,<4.0a0 + license: MIT + license_family: MIT + size: 210264 + timestamp: 1643442231687 +- kind: conda + name: sigtool + version: 0.1.3 + build: h88f4db0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 + sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf + md5: fbfb84b9de9a6939cb165c02c69b1865 + depends: + - openssl >=3.0.0,<4.0a0 + license: MIT + license_family: MIT + size: 213817 + timestamp: 1643442169866 +- kind: conda + name: simple-websocket + version: 1.0.0 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda + sha256: a8b745f3e1e9940e9c3c79182e84b7c5d9ae23a88d56a53c2a780b235a1b1e01 + md5: 4e9136be6c66312f63b3a8ef60443389 + depends: + - python >=3.7 + - wsproto + license: MIT + license_family: MIT + size: 15368 + timestamp: 1696533492314 +- kind: conda + name: sip + version: 6.7.12 + build: py311h12c1d0e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/sip-6.7.12-py311h12c1d0e_0.conda + sha256: 1129ac093d0c04ca07603fab9dfd2ee1e9a760eb94b31450e2cef1ffffa6a31a + md5: c29f20b2860d1824535135d76d022394 + depends: + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tomli + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-3.0-only + license_family: GPL + size: 595071 + timestamp: 1697300986959 +- kind: conda + name: sip + version: 6.7.12 + build: py311hb755f60_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.12-py311hb755f60_0.conda + sha256: 71a0ee22522b232bf50d4d03d012e53cd5d1251d09dffc1c72d7c33a1086fe6f + md5: 02336abab4cb5dd794010ef53c54bd09 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tomli + license: GPL-3.0-only + license_family: GPL + size: 585197 + timestamp: 1697300605264 +- kind: conda + name: sip + version: 6.7.12 + build: py311hd39e593_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sip-6.7.12-py311hd39e593_0.conda + sha256: b08412ca84bb219a5cec2b12040a42e764a185f784c9e631aa64ff8adf19973f + md5: 1ece78d403bd99aa434d899c287412ef + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tomli + license: GPL-3.0-only + license_family: GPL + size: 573640 + timestamp: 1697300780749 +- kind: conda + name: sip + version: 6.8.3 + build: py311h92babd0_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sip-6.8.3-py311h92babd0_0.conda + sha256: 0c4e09b43e4edd56cb3876537465d8a4d9aaa49f277a41c7f5158aa3453a41b4 + md5: 37c964f79ccc4c03056cbf4fed499221 + depends: + - libcxx >=16 + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - tomli + license: GPL-3.0-only + license_family: GPL + size: 645798 + timestamp: 1707502555216 +- 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 + size: 14259 + timestamp: 1620240338595 +- kind: conda + name: skyfield + version: '1.45' + build: pyh1a96a4e_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/skyfield-1.45-pyh1a96a4e_0.tar.bz2 + sha256: f5a52911130ab9fa1cea1058f9ae94bf94c6df408ab1dd0bd209c36b6c90bc8d + md5: a1d57811e5c9a2c72979c39bee219c90 + depends: + - certifi >=2017.4.17 + - jplephem >=2.13 + - numpy + - python >=3.3 + - sgp4 >=2.2 + license: MIT + license_family: MIT + size: 380772 + timestamp: 1663926300591 +- kind: conda + name: skyfield-data + version: 5.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/skyfield-data-5.0.0-pyhd8ed1ab_0.conda + sha256: 968b9a88cf4ec3f21e035636a970d7fcad134a97679e56793a588d833a668e65 + md5: 4519632e3dd49d8c6992391bd642727a + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 16373799 + timestamp: 1682267896858 +- kind: conda + name: smmap + version: 5.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + sha256: 23011cb3e064525bdb8787c75126a2e78d2344a72cd6773922006d1da1f2af16 + md5: 62f26a3d1387acee31322208f0cfa3e0 + depends: + - python >=3.5 + license: BSD-3-Clause + license_family: BSD + size: 22483 + timestamp: 1634310465482 +- kind: conda + name: snappy + version: 1.1.10 + build: hfb803bf_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda + sha256: 2a195b38cb63f03ad9f73a82db52434ebefe216fb70f7ea3defe4ddf263d408a + md5: cff1df79c9cff719460eb2dd172568de + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 57065 + timestamp: 1678534804734 +- kind: conda + name: sniffio + version: 1.3.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda + sha256: bc12100b2d8836b93c55068b463190505b8064d0fc7d025e89f20ebf22fe6c2b + md5: 490730480d76cf9c8f8f2849719c6e2b + depends: + - python >=3.7 + license: Apache-2.0 + license_family: Apache + size: 15064 + timestamp: 1708953086199 +- kind: conda + name: snowballstemmer + version: 2.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 4d22a9315e78c6827f806065957d566e + depends: + - python >=2 + license: BSD-3-Clause + license_family: BSD + size: 58824 + timestamp: 1637143137377 +- kind: conda + name: soupsieve + version: '2.5' + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c + md5: 3f144b2c34f8cb5a9abd9ed23a39c561 + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 36754 + timestamp: 1693929424267 +- kind: conda + name: sphinx + version: 7.2.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda + sha256: 665d1fe6d20c6cc672ff20e6ebb405860f878b487d3d8d86a5952733fb7bbc42 + md5: bbfd1120d1824d2d073bc65935f0e4c0 + depends: + - alabaster >=0.7,<0.8 + - babel >=2.9 + - colorama >=0.4.5 + - docutils >=0.18.1,<0.21 + - imagesize >=1.3 + - importlib-metadata >=4.8 + - jinja2 >=3.0 + - packaging >=21.0 + - pygments >=2.14 + - python >=3.9 + - requests >=2.25.0 + - snowballstemmer >=2.0 + - sphinxcontrib-applehelp + - sphinxcontrib-devhelp + - sphinxcontrib-htmlhelp >=2.0.0 + - sphinxcontrib-jsmath + - sphinxcontrib-qthelp + - sphinxcontrib-serializinghtml >=1.1.9 + license: BSD-2-Clause + license_family: BSD + size: 1281207 + timestamp: 1694647544854 +- kind: conda + name: sphinx_rtd_theme + version: 2.0.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinx_rtd_theme-2.0.0-pyha770c72_0.conda + sha256: 8545c806d03092fd0236db6663c88036eab2dc99e34c91cd36c0704db03b148a + md5: baf6d9a33df1a789ca55e3b404c7ea28 + depends: + - docutils <0.21 + - python >=3.6 + - sphinx >=5,<8 + - sphinxcontrib-jquery >=4,<5 + license: MIT + license_family: MIT + size: 2614217 + timestamp: 1701183633165 +- kind: conda + name: sphinxcontrib-applehelp + version: 1.0.8 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.8-pyhd8ed1ab_0.conda + sha256: 710013443a063518d587d2af82299e92ab6d6695edf35a676ac3a0ccc9e3f8e6 + md5: 611a35a27914fac3aa37611a6fe40bb5 + depends: + - python >=3.9 + - sphinx >=5 + license: BSD-2-Clause + license_family: BSD + size: 29539 + timestamp: 1705126465971 +- kind: conda + name: sphinxcontrib-devhelp + version: 1.0.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.6-pyhd8ed1ab_0.conda + sha256: 63a6b60653ef13a6712848f4b3c4b713d4b564da1dae571893f1a3659cde85f3 + md5: d7e4954df0d3aea2eacc7835ad12671d + depends: + - python >=3.9 + - sphinx >=5 + license: BSD-2-Clause + license_family: BSD + size: 24474 + timestamp: 1705126153592 +- kind: conda + name: sphinxcontrib-htmlhelp + version: 2.0.5 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.5-pyhd8ed1ab_0.conda + sha256: 512f393cfe34cb3de96ade7a7ad900d6278e2087a1f0e5732aa60fadee396d99 + md5: 7e1e7437273682ada2ed5e9e9714b140 + depends: + - python >=3.9 + - sphinx >=5 + license: BSD-2-Clause + license_family: BSD + size: 33499 + timestamp: 1705118297318 +- kind: conda + name: sphinxcontrib-jquery + version: '4.1' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jquery-4.1-pyhd8ed1ab_0.conda + sha256: 2e5f16a2d58f9a31443ffbb8ce3852cfccf533a6349045828cd2e994ef0679ca + md5: 914897066d5873acfb13e75705276ad1 + depends: + - python >=2.7 + - sphinx >=1.8 + license: 0BSD AND MIT + size: 112985 + timestamp: 1678809100921 +- kind: conda + name: sphinxcontrib-jsmath + version: 1.0.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda + sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2 + md5: da1d979339e2714c30a8e806a33ec087 + depends: + - python >=3.5 + license: BSD-2-Clause + license_family: BSD + size: 10431 + timestamp: 1691604844204 +- kind: conda + name: sphinxcontrib-qthelp + version: 1.0.7 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.7-pyhd8ed1ab_0.conda + sha256: dd35b52f056c39081cd0ae01155174277af579b69e5d83798a33e9056ec78d63 + md5: 26acae54b06f178681bfb551760f5dd1 + depends: + - python >=3.9 + - sphinx >=5 + license: BSD-2-Clause + license_family: BSD + size: 27005 + timestamp: 1705126340442 +- kind: conda + name: sphinxcontrib-serializinghtml + version: 1.1.10 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda + sha256: bf80e4c0ff97d5e8e5f6db0831ba60007e820a3a438e8f1afd868aa516d67d6f + md5: e507335cb4ca9cff4c3d0fa9cdab255e + depends: + - python >=3.9 + - sphinx >=5 + license: BSD-2-Clause + license_family: BSD + size: 28776 + timestamp: 1705118378942 +- kind: conda + name: sqlalchemy + version: 2.0.29 + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlalchemy-2.0.29-py311h05b510d_0.conda + sha256: 55acdcd2b5c6a5da9170982e996c785f2f28a7481e35c6fe59563d4a95d754b5 + md5: 4a8c60eab06319e8378b2fd27e03a5f3 + depends: + - greenlet !=0.4.17 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - typing-extensions >=4.6.0 + license: MIT + license_family: MIT + size: 3497556 + timestamp: 1711290230932 +- kind: conda + name: sqlalchemy + version: 2.0.29 + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.29-py311h459d7ec_0.conda + sha256: 971e2d75941fe16bc4b003131d7f6acd62c966a1ac633a1715757a5c1dcd0e31 + md5: bcb162129cee4a4789c0f300e55b5fe0 + depends: + - greenlet !=0.4.17 + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - typing-extensions >=4.6.0 + license: MIT + license_family: MIT + size: 3514885 + timestamp: 1711289942068 +- kind: conda + name: sqlalchemy + version: 2.0.29 + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.29-py311ha68e1ae_0.conda + sha256: 4e4041cec17d5277b0bc6d4f92d2e45b198ca79ba38c40455803de704af5274d + md5: 94d70c3faaff1069b3e9a77a2c467817 + depends: + - greenlet !=0.4.17 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - typing-extensions >=4.6.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 3476916 + timestamp: 1711290414165 +- kind: conda + name: sqlalchemy + version: 2.0.29 + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sqlalchemy-2.0.29-py311he705e18_0.conda + sha256: ebc8d69e4c16a3b90cd76f1df86b21aae02c39a930bffd102c230a7075124984 + md5: 8ae65c8647d8583b0316ff5a9cc9f3de + depends: + - greenlet !=0.4.17 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - typing-extensions >=4.6.0 + license: MIT + license_family: MIT + size: 3498716 + timestamp: 1711290100854 +- kind: conda + name: sqlite + version: 3.45.2 + build: h2c6b66d_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda + sha256: 22d2692c82b73480c9adc80472bfb241262586edaf1dac1a7504434e47185d3c + md5: 1423efca06ed343c1da0fc429bae0779 + depends: + - libgcc-ng >=12 + - libsqlite 3.45.2 h2797004_0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 848420 + timestamp: 1710254767782 +- kind: conda + name: sqlite + version: 3.45.2 + build: h7461747_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.2-h7461747_0.conda + sha256: c9c1b7d6025d5efa74f4ddbda1ae72a721f041ad3d4a6ec3dda600befe9dffaa + md5: fc4dae09f6b38084f3bfc87c77032584 + depends: + - libsqlite 3.45.2 h92b6c6a_0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 900944 + timestamp: 1710255034551 +- kind: conda + name: sqlite + version: 3.45.2 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/sqlite-3.45.2-hcfcfb64_0.conda + sha256: 2d54418dff5cc35d3c5b99d7094d6ea9956cacbc9777df46c74020c4f8e32b39 + md5: 329d25303ed8299f8f900344cd69a705 + depends: + - libsqlite 3.45.2 hcfcfb64_0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense + size: 873024 + timestamp: 1710255122348 +- kind: conda + name: sqlite + version: 3.45.2 + build: hf2abe2d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.45.2-hf2abe2d_0.conda + sha256: 43f30a40494bd631e7a19fa258115c09a3fed540e5398ba3a8da66f3e48942ca + md5: 67af40712ec3989036429398b69ec206 + depends: + - libsqlite 3.45.2 h091b4b1_0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 812237 + timestamp: 1710255115695 +- kind: conda + name: tapi + version: 1100.0.11 + build: h9ce4665_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 + sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa + md5: f9ff42ccf809a21ba6f8607f8de36108 + depends: + - libcxx >=10.0.0.a0 + license: NCSA + license_family: MIT + size: 201044 + timestamp: 1602664232074 +- kind: conda + name: tapi + version: 1100.0.11 + build: he4954df_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 + sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3 + md5: d83362e7d0513f35f454bc50b0ca591d + depends: + - libcxx >=11.0.0.a0 + license: NCSA + license_family: MIT + size: 191416 + timestamp: 1602687595316 +- kind: conda + name: tbb + version: 2021.11.0 + build: h91493d7_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.11.0-h91493d7_1.conda + sha256: aa30c089fdd6f66c7808592362e29963586e094159964a5fb61fb8efa9e349bc + md5: 21069f3ed16812f9f4f2700667b6ec86 + depends: + - libhwloc >=2.9.3,<2.9.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 161382 + timestamp: 1706164225098 +- kind: conda + name: tempest-remap + version: 2.1.6 + build: h05839da_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tempest-remap-2.1.6-h05839da_2.conda + sha256: c25855cbea57a7b99ddff53e2fb57b8b87d0ec6c4480cb51c130ad94604849c1 + md5: 22a21e122385e0bcab3f6363f9094f8c + depends: + - hdf5 >=1.12.2,<1.12.3.0a0 + - libblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - liblapack >=3.9.0,<4.0a0 + - libnetcdf >=4.9.1,<4.9.2.0a0 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 945044 + timestamp: 1676113469898 +- kind: conda + name: tempest-remap + version: 2.1.6 + build: h4b9714a_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tempest-remap-2.1.6-h4b9714a_2.conda + sha256: 743432e30e892a9a15c0d44156e46530a6bc53844a58ebcedfe5033ef635658e + md5: 85d5ff092177d34f248992c39f25207d + depends: + - hdf5 >=1.12.2,<1.12.3.0a0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=14.0.6 + - liblapack >=3.9.0,<4.0a0 + - libnetcdf >=4.9.1,<4.9.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 861509 + timestamp: 1676113898915 +- kind: conda + name: tempest-remap + version: 2.1.6 + build: hd4930cd_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tempest-remap-2.1.6-hd4930cd_2.conda + sha256: 18909a28f6b0fab780d55efee756d1a09261035d0bddb2f1b61f56eae7889397 + md5: 6f00c9b1eef79b7d2a1fa026c9dff6a0 + depends: + - hdf5 >=1.12.2,<1.12.3.0a0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=14.0.6 + - liblapack >=3.9.0,<4.0a0 + - libnetcdf >=4.9.1,<4.9.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 832771 + timestamp: 1676113883212 +- kind: conda + name: text-unidecode + version: '1.3' + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/text-unidecode-1.3-pyhd8ed1ab_1.conda + sha256: db64669a918dec8c744f80a85b9c82216b79298256c7c8bd19bdba54a02f8914 + md5: ba8aba332d8868897ce44ad74015a7fe + depends: + - python >=3.4 + license: Artistic-1.0-Perl + license_family: OTHER + size: 65029 + timestamp: 1694707244466 +- 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,<1.3.0a0 + license: TCL + license_family: BSD + 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,<1.3.0a0 + license: TCL + license_family: BSD + 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 + 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,<1.3.0a0 + license: TCL + license_family: BSD + size: 3318875 + timestamp: 1699202167581 +- kind: conda + name: toml + version: 0.10.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + md5: f832c45a477c78bebd107098db465095 + depends: + - python >=2.7 + license: MIT + license_family: MIT + size: 18433 + timestamp: 1604308660817 +- 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 +- kind: conda + name: toolz + version: 0.12.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.1-pyhd8ed1ab_0.conda + sha256: 22b0a9790317526e08609d5dfdd828210ae89e6d444a9e954855fc29012e90c6 + md5: 2fcb582444635e2c402e8569bb94e039 + depends: + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + size: 52358 + timestamp: 1706112720607 +- kind: conda + name: tornado + version: '6.4' + build: py311h05b510d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4-py311h05b510d_0.conda + sha256: 29c07a81b52310f9679ca05a6f1d3d3ee8c1830f183f91ad8d46f99cc2fb6720 + md5: 241cd427ab1f38b72d6ddda3994c80a7 + depends: + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 856729 + timestamp: 1708363632330 +- kind: conda + name: tornado + version: '6.4' + build: py311h459d7ec_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4-py311h459d7ec_0.conda + sha256: 5bb1e24d1767e403183e4cc842d184b2da497e778f0311c5b1d023fb3af9e6b6 + md5: cc7727006191b8f3630936b339a76cd0 + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 853245 + timestamp: 1708363316040 +- kind: conda + name: tornado + version: '6.4' + build: py311ha68e1ae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4-py311ha68e1ae_0.conda + sha256: ce73a6cede35941e1d82098e37ab483e0f322503a87c48ea39e8ac05798f9e39 + md5: 7bbff4fa9c26e56821e2eb89466436b1 + 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: Apache-2.0 + license_family: Apache + size: 856957 + timestamp: 1708363616871 +- kind: conda + name: tornado + version: '6.4' + build: py311he705e18_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4-py311he705e18_0.conda + sha256: 0b994ce7984953d1d528b7e19a97db0b34da09398feaf592500df637719d5623 + md5: 40845aadca8df7ccc21c393ba3aa9eac + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 857610 + timestamp: 1708363541170 +- kind: conda + name: tqdm + version: 4.66.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.2-pyhd8ed1ab_0.conda + sha256: 416d1d9318f3267325ad7e2b8a575df20ff9031197b30c0222c3d3b023877260 + md5: 2b8dfb969f984497f3f98409a9545776 + depends: + - colorama + - python >=3.7 + license: MPL-2.0 or MIT + size: 89567 + timestamp: 1707598746354 +- kind: conda + name: traitlets + version: 5.14.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.2-pyhd8ed1ab_0.conda + sha256: 9ea6073091c130470a51b51703c8d2d959434992e29c4aa4abeba07cd56533a3 + md5: af5fa2d2186003472e766a23c46cae04 + depends: + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 110288 + timestamp: 1710254564088 +- kind: conda + name: typing-extensions + version: 4.10.0 + build: hd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.10.0-hd8ed1ab_0.conda + sha256: 0698fe2c4e555fb44c27c60f7a21fa0eea7f5bf8186ad109543c5b056e27f96a + md5: 091683b9150d2ebaa62fd7e2c86433da + depends: + - typing_extensions 4.10.0 pyha770c72_0 + license: PSF-2.0 + license_family: PSF + size: 10181 + timestamp: 1708904805365 +- kind: conda + name: typing_extensions + version: 4.10.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + sha256: 4be24d557897b2f6609f5d5f7c437833c62f4d4a96581e39530067e96a2d0451 + md5: 16ae769069b380646c47142d719ef466 + depends: + - python >=3.8 + license: PSF-2.0 + license_family: PSF + size: 37018 + timestamp: 1708904796013 +- 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: 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: udunits2 + version: 2.2.28 + build: h40f5838_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/udunits2-2.2.28-h40f5838_3.conda + sha256: 7beb28a13dd4206c54ed994434d843aabda57fc9e5a0835c2f504c77336a4087 + md5: 6bb8deb138f87c9d48320ac21b87e7a1 + depends: + - libexpat >=2.5.0,<3.0a0 + - libgcc-ng >=12 + - libudunits2 2.2.28 h40f5838_3 + license: LicenseRef-BSD-UCAR + size: 112783 + timestamp: 1696525549258 +- kind: conda + name: udunits2 + version: 2.2.28 + build: h516ac8c_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/udunits2-2.2.28-h516ac8c_3.conda + sha256: 1f600fc33f8c3b6a09b342330098eea06bc126070ade9ab0cfc4643b529046a2 + md5: da4b90fff11e81bbf3c0ad9e81ffd0bc + depends: + - libexpat >=2.5.0,<3.0a0 + - libudunits2 2.2.28 h516ac8c_3 + license: LicenseRef-BSD-UCAR + size: 111992 + timestamp: 1696525887021 +- kind: conda + name: udunits2 + version: 2.2.28 + build: h5f3f34b_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/udunits2-2.2.28-h5f3f34b_3.conda + sha256: 59197b1bf79602e828661db3899fbb2510acfebc7b808da5e3f519dd568eeb3d + md5: 11313d54a3ae5a292cece61e7a18b0d2 + depends: + - libexpat >=2.5.0,<3.0a0 + - libudunits2 2.2.28 h5f3f34b_3 + license: LicenseRef-BSD-UCAR + size: 118412 + timestamp: 1696525832492 +- kind: conda + name: udunits2 + version: 2.2.28 + build: hfda9870_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/udunits2-2.2.28-hfda9870_3.conda + sha256: a6754f5af08ba274e2582a3f78caeefd92b4b849bd21495068c82363f845efae + md5: c2f21ea9e44ed19d36caaca5bdba5306 + depends: + - libexpat >=2.5.0,<3.0a0 + - libudunits2 2.2.28 hfda9870_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LicenseRef-BSD-UCAR + size: 36408 + timestamp: 1696526289652 +- kind: conda + name: unicodecsv + version: 0.14.1 + build: pyhd8ed1ab_2 + build_number: 2 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/unicodecsv-0.14.1-pyhd8ed1ab_2.conda + sha256: 263178c9ef2501aa8e3b7e8fe8187fd532065d04b9088e5fedcff8870ae75cf7 + md5: 21c43fb7afe9826a5da5506d45176cce + depends: + - python >=3.7 + license: BSD-2-Clause + license_family: BSD + size: 16841 + timestamp: 1701074936459 +- kind: conda + name: urllib3 + version: 2.2.1 + 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 + depends: + - brotli-python >=1.0.9 + - pysocks >=1.5.6,<2.0,!=1.5.7 + - python >=3.7 + license: MIT + license_family: MIT + size: 94669 + timestamp: 1708239595549 +- kind: conda + name: validate_email + version: '1.3' + build: py_3 + build_number: 3 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/validate_email-1.3-py_3.tar.bz2 + sha256: 7d2d34181105ef91d99b8cb408f85870a6fb453c6c99cccad4241a6d03562ee7 + md5: 57e7e8093a62fdff428c224d1d0c3ac1 + depends: + - python + license: LGPL + license_family: GPL + size: 7968 + timestamp: 1560848111039 +- kind: conda + name: vc + version: '14.3' + build: hcf57466_18 + build_number: 18 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda + sha256: 447a8d8292a7b2107dcc18afb67f046824711a652725fc0f522c368e7a7b8318 + md5: 20e1e652a4c740fa719002a8449994a2 + depends: + - vc14_runtime >=14.38.33130 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 16977 + timestamp: 1702511255313 +- kind: conda + name: vc14_runtime + version: 14.38.33130 + build: h82b7239_18 + build_number: 18 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda + sha256: bf94c9af4b2e9cba88207001197e695934eadc96a5c5e4cd7597e950aae3d8ff + md5: 8be79fdd2725ddf7bbf8a27a4c1f79ba + depends: + - ucrt >=10.0.20348.0 + constrains: + - vs2015_runtime 14.38.33130.* *_18 + license: LicenseRef-ProprietaryMicrosoft + license_family: Proprietary + size: 749868 + timestamp: 1702511239004 +- kind: conda + name: vs2015_runtime + version: 14.38.33130 + build: hcb4865c_18 + build_number: 18 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda + sha256: a2fec221f361d6263c117f4ea6d772b21c90a2f8edc6f3eb0eadec6bfe8843db + md5: 10d42885e3ed84e575b454db30f1aa93 + depends: + - vc14_runtime >=14.38.33130 + license: BSD-3-Clause + license_family: BSD + size: 16988 + timestamp: 1702511261442 +- kind: conda + name: watchgod + version: 0.8.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/watchgod-0.8.2-pyhd8ed1ab_0.tar.bz2 + sha256: 5139550cbd5d93cb6b3d4954267d21fdaccd81b816d421c7a8ee031f27432179 + md5: 8bf811791ff4ea8b6368b8ff451c6421 + depends: + - anyio >=3.0.0,<4 + - python >=3.7 + license: MIT + license_family: MIT + size: 14983 + timestamp: 1648824691525 +- kind: conda + name: wcwidth + version: 0.2.13 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda + sha256: b6cd2fee7e728e620ec736d8dfee29c6c9e2adbd4e695a31f1d8f834a83e57e3 + md5: 68f0738df502a14213624b288c60c9ad + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 32709 + timestamp: 1704731373922 +- kind: conda + name: webdavclient3 + version: 3.14.5 + build: pyhd8ed1ab_1 + build_number: 1 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/webdavclient3-3.14.5-pyhd8ed1ab_1.tar.bz2 + sha256: 41fb9c4e41a15cff13011a499fc4e17f52a742e7b86962192adf05d4c8770c91 + md5: 2690877d7cc381c0796d1c27e83ded33 + depends: + - lxml + - python >=3.5 + - python-dateutil + - requests + license: MIT + license_family: MIT + size: 27594 + timestamp: 1616573590654 +- kind: conda + name: websocket-client + version: 1.7.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.7.0-pyhd8ed1ab_0.conda + sha256: d9b537d5b7c5aa7a02a4ce4c6b755e458bd8083b67752a73c92d113ccec6c10f + md5: 50ad31e07d706aae88b14a4ac9c73f23 + depends: + - python >=3.8 + license: Apache-2.0 + license_family: APACHE + size: 46626 + timestamp: 1701630814576 +- kind: conda + name: werkzeug + version: 2.3.8 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.8-pyhd8ed1ab_0.conda + sha256: ce0c68c3dc44e106dd15b24534c085a2c9bf6603227983d01c2bad41edcad864 + md5: 4d0a38559ef093d9987ad2934e535473 + depends: + - markupsafe >=2.1.1 + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 255168 + timestamp: 1699492638827 +- 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 + size: 8191 + timestamp: 1667051294134 +- kind: conda + name: wsproto + version: 1.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2 + sha256: 66bd3f2db31fb62a2ff1f48d2c69ccdd2fa4467741149a0ad5c0bd097e0ac0e7 + md5: 00ba804b54f451d102f6a7615f08470d + depends: + - h11 >=0.9.0,<1.0 + - python >=3.7 + license: MIT + license_family: MIT + size: 24731 + timestamp: 1661356453883 +- kind: conda + name: wtforms + version: 3.1.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/wtforms-3.1.2-pyhd8ed1ab_0.conda + sha256: 6d3ae74038e34945daf8e091b7fa85741162c0db6e989da4d0f8164d84a4cbce + md5: 1e60bfa73e13b1ca9c439c6938664ab4 + depends: + - markupsafe + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 73667 + timestamp: 1708541368792 +- kind: conda + name: xarray + version: 2024.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/xarray-2024.2.0-pyhd8ed1ab_0.conda + sha256: 4b0a8143f5c501246214823fe543e9d0749c950fdbdd39de6d8cd6209da2259f + md5: 8e25aab3323476d4fd0b5f6bad05d403 + depends: + - numpy >=1.23 + - packaging >=22 + - pandas >=1.5 + - python >=3.9 + constrains: + - bottleneck >=1.3 + - h5py >=3.6 + - zarr >=2.12 + - h5netcdf >=1.0 + - cftime >=1.6 + - distributed >=2022.7 + - matplotlib-base >=3.5 + - flox >=0.5 + - numba >=0.55 + - scipy >=1.8 + - nc-time-axis >=1.4 + - pint >=0.19 + - toolz >=0.12 + - netcdf4 >=1.6.0 + - seaborn >=0.11 + - hdf5 >=1.12 + - dask-core >=2022.7 + - sparse >=0.13 + - cartopy >=0.20 + - iris >=3.2 + license: Apache-2.0 + license_family: APACHE + size: 741597 + timestamp: 1708349308763 +- kind: conda + name: xcb-util + version: 0.4.0 + build: h516909a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h516909a_0.tar.bz2 + sha256: d797cecb10d9d20970656db803186b2d87e51f58202a87a359b18bae6f0b0d1e + md5: a88ab22508ba067b689dc12696157cee + depends: + - libgcc-ng >=7.3.0 + - libxcb >=1.13 + license: MIT + license_family: MIT + size: 20109 + timestamp: 1574273086272 +- kind: conda + name: xcb-util-image + version: 0.4.0 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2 + sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 + md5: c9b568bd804cb2903c6be6f5f68182e4 + depends: + - libgcc-ng >=12 + - libxcb >=1.13 + - libxcb >=1.13,<1.14.0a0 + - xcb-util >=0.4.0,<0.5.0a0 + license: MIT + license_family: MIT + size: 24256 + timestamp: 1654738819647 +- kind: conda + name: xcb-util-keysyms + version: 0.4.0 + build: h516909a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h516909a_0.tar.bz2 + sha256: cdb8ed921d076daed3c3d485370ea821c45eb95b858a587ff2a53d9271f1287c + md5: d04a6285315c4f03ebaf37355be272f9 + depends: + - libgcc-ng >=7.3.0 + - libxcb >=1.13 + license: MIT + license_family: MIT + size: 11763 + timestamp: 1574268798739 +- kind: conda + name: xcb-util-renderutil + version: 0.3.9 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2 + sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 + md5: 732e22f1741bccea861f5668cf7342a7 + depends: + - libgcc-ng >=12 + - libxcb >=1.13 + - libxcb >=1.13,<1.14.0a0 + license: MIT + license_family: MIT + size: 15659 + timestamp: 1654738584558 +- kind: conda + name: xcb-util-wm + version: 0.4.1 + build: h516909a_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h516909a_0.tar.bz2 + sha256: 1ab62607ded0815b9a570e66a2af859cf4d9c79a3bfdd8b06f5d773fc1211ea5 + md5: 847df113dba16f0079758cacf9024409 + depends: + - libgcc-ng >=7.3.0 + - libxcb >=1.13 + license: MIT + license_family: MIT + size: 56020 + timestamp: 1574276788949 +- kind: conda + name: xkeyboard-config + version: '2.38' + build: h0b41bf4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.38-h0b41bf4_0.conda + sha256: 0518e65929deded6afc5f91f31febb15e8c93f7ee599a18b787f9fab3f79cfd6 + md5: 9ac34337e5101a87e5d91da05d84aa48 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 882013 + timestamp: 1676563054660 +- kind: conda + name: xmlschema + version: 2.3.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/xmlschema-2.3.0-pyhd8ed1ab_0.conda + sha256: 29558ff5a33055ca78a5161b20e63d27771aa2377afa73b6a6a5f9e473da0bd0 + md5: 1e481e01bb0a8876fec59ef9d2229922 + depends: + - elementpath <5.0.0,>=4.1.2 + - python >=3.7 + license: MIT + license_family: MIT + size: 336292 + timestamp: 1684523705584 +- kind: conda + name: xmlschema + version: 2.5.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/xmlschema-2.5.1-pyhd8ed1ab_0.conda + sha256: dea9361b2afaabdf455c4417ba97ad20c62c1757c7983f389805a66ad7121838 + md5: d6525f6fceb5e7eb8cb3e3f16611c5a3 + depends: + - elementpath <5.0.0,>=4.1.5 + - python >=3.7 + license: MIT + license_family: MIT + size: 361263 + timestamp: 1703797371214 +- kind: conda + name: xorg-kbproto + version: 1.0.7 + build: h7f98852_1002 + build_number: 1002 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 + sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 + md5: 4b230e8381279d76131116660f5a241a + depends: + - libgcc-ng >=9.3.0 + license: MIT + license_family: MIT + size: 27338 + timestamp: 1610027759842 +- kind: conda + name: xorg-libice + version: 1.1.1 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda + sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236 + md5: b462a33c0be1421532f28bfe8f4a7514 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 58469 + timestamp: 1685307573114 +- kind: conda + name: xorg-libsm + version: 1.2.4 + build: h7391055_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda + sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1 + md5: 93ee23f12bc2e684548181256edd2cf6 + depends: + - libgcc-ng >=12 + - libuuid >=2.38.1,<3.0a0 + - xorg-libice >=1.1.1,<2.0a0 + license: MIT + license_family: MIT + size: 27433 + timestamp: 1685453649160 +- kind: conda + name: xorg-libx11 + version: 1.8.4 + build: h0b41bf4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda + sha256: 3c6862a01a39cdea3870b132706ad7256824299947a3a94ae361d863d402d704 + md5: ea8fbfeb976ac49cbeb594e985393514 + depends: + - libgcc-ng >=12 + - libxcb 1.* + - libxcb >=1.13,<1.14.0a0 + - xorg-kbproto + - xorg-xextproto >=7.3.0,<8.0a0 + - xorg-xproto + license: MIT + license_family: MIT + size: 829872 + timestamp: 1677611125385 +- kind: conda + name: xorg-libxau + version: 1.0.8 + build: '2' + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.8-2.tar.bz2 + sha256: cdf80b42730beb9540d736e39000359f92f8f91969473b56a5ebabc7974946dd + md5: e81a941abbd5ac1288cd6591ae36af67 + arch: x86_64 + platform: win + license: MIT + license_family: MIT + size: 18666 +- kind: conda + name: xorg-libxau + version: 1.0.11 + build: h0dc2134_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda + sha256: 8a2e398c4f06f10c64e69f56bcf3ddfa30b432201446a0893505e735b346619a + md5: 9566b4c29274125b0266d0177b5eb97b + license: MIT + license_family: MIT + size: 13071 + timestamp: 1684638167647 +- kind: conda + name: xorg-libxau + version: 1.0.11 + build: hb547adb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda + sha256: 02c313a1cada46912e5b9bdb355cfb4534bfe22143b4ea4ecc419690e793023b + md5: ca73dc4f01ea91e44e3ed76602c5ea61 + license: MIT + license_family: MIT + size: 13667 + timestamp: 1684638272445 +- kind: conda + name: xorg-libxau + version: 1.0.11 + build: hcd874cb_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda + sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77 + md5: c46ba8712093cb0114404ae8a7582e1a + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: MIT + license_family: MIT + size: 51297 + timestamp: 1684638355740 +- kind: conda + name: xorg-libxau + version: 1.0.11 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda + sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 + md5: 2c80dc38fface310c9bd81b17037fee5 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 14468 + timestamp: 1684637984591 +- kind: conda + name: xorg-libxdmcp + version: 1.1.2 + build: '2' + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.2-2.tar.bz2 + sha256: 6f939f0e937a36ca15bee76ea22efdc77c083a9c07a26503b61d81762441b05a + md5: 3731fde21be52090799204adce6ae86c + arch: x86_64 + platform: win + license: MIT + license_family: MIT + size: 31448 +- kind: conda + name: xorg-libxdmcp + version: 1.1.3 + build: h27ca646_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2 + sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 + md5: 6738b13f7fadc18725965abdd4129c36 + license: MIT + license_family: MIT + size: 18164 + timestamp: 1610071737668 +- kind: conda + name: xorg-libxdmcp + version: 1.1.3 + build: h35c211d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2 + sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f + md5: 86ac76d6bf1cbb9621943eb3bd9ae36e + license: MIT + license_family: MIT + size: 17225 + timestamp: 1610071995461 +- kind: conda + name: xorg-libxdmcp + version: 1.1.3 + build: h7f98852_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 + sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 + md5: be93aabceefa2fac576e971aef407908 + depends: + - libgcc-ng >=9.3.0 + license: MIT + license_family: MIT + size: 19126 + timestamp: 1610071769228 +- kind: conda + name: xorg-libxdmcp + version: 1.1.3 + build: hcd874cb_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 + sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93 + md5: 46878ebb6b9cbd8afcf8088d7ef00ece + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 67908 + timestamp: 1610072296570 +- kind: conda + name: xorg-libxext + version: 1.3.4 + build: h0b41bf4_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda + sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 + md5: 82b6df12252e6f32402b96dacc656fec + depends: + - libgcc-ng >=12 + - xorg-libx11 >=1.7.2,<2.0a0 + - xorg-xextproto + license: MIT + license_family: MIT + size: 50143 + timestamp: 1677036907815 +- kind: conda + name: xorg-libxrender + version: 0.9.10 + build: h7f98852_1003 + build_number: 1003 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 + sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 + md5: f59c1242cc1dd93e72c2ee2b360979eb + depends: + - libgcc-ng >=9.3.0 + - xorg-libx11 >=1.7.0,<2.0a0 + - xorg-renderproto + license: MIT + license_family: MIT + size: 32906 + timestamp: 1614866792944 +- kind: conda + name: xorg-renderproto + version: 0.11.1 + build: h7f98852_1002 + build_number: 1002 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 + sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 + md5: 06feff3d2634e3097ce2fe681474b534 + depends: + - libgcc-ng >=9.3.0 + license: MIT + license_family: MIT + size: 9621 + timestamp: 1614866326326 +- kind: conda + name: xorg-xextproto + version: 7.3.0 + build: h0b41bf4_1003 + build_number: 1003 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda + sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 + md5: bce9f945da8ad2ae9b1d7165a64d0f87 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 30270 + timestamp: 1677036833037 +- kind: conda + name: xorg-xproto + version: 7.0.31 + build: h7f98852_1007 + build_number: 1007 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 + sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d + md5: b4a4381d54784606820704f7b5f05a15 + depends: + - libgcc-ng >=9.3.0 + license: MIT + license_family: MIT + size: 74922 + timestamp: 1607291557628 +- kind: conda + name: xstatic + version: 1.0.2 + build: pyh9f0ad1d_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/xstatic-1.0.2-pyh9f0ad1d_0.tar.bz2 + sha256: 0f03112251870ab836b53460e862dbacc07a4ce2728005502725e479ca557719 + md5: 091ad1cef0a0ca223643edada92795d9 + depends: + - python + license: MIT + license_family: MIT + size: 7322 + timestamp: 1599407186245 +- kind: conda + name: xstatic-bootstrap + version: 4.5.3.1 + build: pyhd3deb0d_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/xstatic-bootstrap-4.5.3.1-pyhd3deb0d_0.tar.bz2 + sha256: 85e5798a8bcc5bede3e8e5326704a709bfb20a9b4691eef2c160a4b74e38fc21 + md5: 7e16b6961573fe58558da7515a21b58f + depends: + - python + license: MIT + license_family: MIT + size: 497910 + timestamp: 1605203221214 +- kind: conda + name: xstatic-jquery + version: 3.5.1.1 + build: pyhd8ed1ab_5 + build_number: 5 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/xstatic-jquery-3.5.1.1-pyhd8ed1ab_5.conda + sha256: 28ac488db62560b8dc9537a288c36ea6a6804ff3fb607192ff3f453fdd46d1c9 + md5: c2898cc7d6632dd5a0e3a27d4e3daaca + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 172329 + timestamp: 1708012067547 +- 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 + 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 + 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 + 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: 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 + 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 + 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 + 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-cpp + version: 0.7.0 + build: h13dd4ca_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.7.0-h13dd4ca_3.conda + sha256: debba609fbb7d9021e8239332dd1ad9d7a14a0e0a57edaf6e925464ff0d5001e + md5: 5eb5d58423ee7eca2ae3fba632b6e630 + depends: + - libcxx >=15.0.7 + license: MIT + license_family: MIT + size: 131509 + timestamp: 1695635171269 +- kind: conda + name: yaml-cpp + version: 0.7.0 + build: h59595ed_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.7.0-h59595ed_3.conda + sha256: 303cf63b7414549ff7f9ad9aa6914a97731e052b63584524c13743bfd9228dab + md5: e5818fbfb56234f63bd39a6cc3ccc635 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 207477 + timestamp: 1695632391731 +- kind: conda + name: yaml-cpp + version: 0.7.0 + build: h63175ca_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.7.0-h63175ca_3.conda + sha256: 1d9b4924fbb46d92d9d6bc13380f6a1b3ef1a1ab32c04df10e9e960477e9f241 + md5: e1c68a71c7589af44ffa6b9dfa382c32 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 135981 + timestamp: 1695632767230 +- kind: conda + name: yaml-cpp + version: 0.7.0 + build: he965462_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.7.0-he965462_3.conda + sha256: 2dcedadfcb3eb4e1e27dc7042cf32a5a19a60fc6ed19a8096723c727435c6f16 + md5: c4c8ee1d14a8a035bfaa4da3ee07d344 + depends: + - libcxx >=15.0.7 + license: MIT + license_family: MIT + size: 131043 + timestamp: 1695632872827 +- kind: conda + name: zipp + version: 3.17.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26 + md5: 2e4d6bc0b14e10f895fc6791a7d9b26a + depends: + - python >=3.8 + license: MIT + license_family: MIT + size: 18954 + timestamp: 1695255262261 +- kind: conda + name: zlib + version: 1.2.13 + build: h53f4e23_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda + sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe + md5: a08383f223b10b71492d27566fafbf6c + depends: + - libzlib 1.2.13 h53f4e23_5 + license: Zlib + license_family: Other + size: 79577 + timestamp: 1686575471024 +- kind: conda + name: zlib + version: 1.2.13 + build: h8a1eda9_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 75a8a98b1c4671c5d2897975731da42d + depends: + - libzlib 1.2.13 h8a1eda9_5 + license: Zlib + license_family: Other + size: 90764 + timestamp: 1686575574678 +- kind: conda + name: zlib + version: 1.2.13 + build: hcfcfb64_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda + sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 + md5: a318e8622e11663f645cc7fa3260f462 + depends: + - libzlib 1.2.13 hcfcfb64_5 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + license_family: Other + size: 107711 + timestamp: 1686575474476 +- kind: conda + name: zlib + version: 1.2.13 + build: hd590300_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 68c34ec6149623be41a1933ab996a209 + depends: + - libgcc-ng >=12 + - libzlib 1.2.13 hd590300_5 + license: Zlib + license_family: Other + size: 92825 + timestamp: 1686575231103 +- kind: conda + name: zstandard + version: 0.22.0 + build: py311h67b91a1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.22.0-py311h67b91a1_0.conda + sha256: 0bbe223fc0b6cb37f5f2287295f610e73a50888401c865448ce6db7bf79ac416 + md5: 396d81ee96c6d91c3bdfe13a785f4636 + depends: + - cffi >=1.11 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - zstd >=1.5.5,<1.5.6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 332059 + timestamp: 1698830508653 +- kind: conda + name: zstandard + version: 0.22.0 + build: py311haa97af0_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.22.0-py311haa97af0_0.conda + sha256: 849118bab04921e1e047c89eeca064813223bac34d72507ebd4cc6fba48e73d3 + md5: d3c1c831b6cc7ddf9cf1b6dda2b5b7a6 + depends: + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - zstd >=1.5.5,<1.5.6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 415446 + timestamp: 1698830239476 +- kind: conda + name: zstandard + version: 0.22.0 + build: py311he5d195f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.22.0-py311he5d195f_0.conda + sha256: af08fa55143fced0a270b5ac204aa708497791f61ba978fbf7118646022f6e4a + md5: d1a48266ad3d319780cc3f341f85da67 + 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.5,<1.5.6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 324082 + timestamp: 1698830749411 +- kind: conda + name: zstandard + version: 0.22.0 + build: py311hed14148_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.22.0-py311hed14148_0.conda + sha256: 97e4ba1fb5a0d4310262da602bf283f058d63ab40e1dd74d93440f27823b1be5 + md5: 027bd8663474659bb949785d4e2b8599 + depends: + - cffi >=1.11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - zstd >=1.5.5,<1.5.6.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 410219 + timestamp: 1698830417763 +- kind: conda + name: zstd + version: 1.5.5 + build: h12be248_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda + sha256: d540dd56c5ec772b60e4ce7d45f67f01c6614942225885911964ea1e70bb99e3 + md5: 792bb5da68bf0a6cac6a6072ecb8dbeb + depends: + - 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 + size: 343428 + timestamp: 1693151615801 +- kind: conda + name: zstd + version: 1.5.5 + build: h4f39d0f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda + sha256: 7e1fe6057628bbb56849a6741455bbb88705bae6d6646257e57904ac5ee5a481 + md5: 5b212cfb7f9d71d603ad891879dc7933 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 400508 + timestamp: 1693151393180 +- kind: conda + name: zstd + version: 1.5.5 + build: h829000d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 80abc41d0c48b82fe0f04e7f42f5cb7e + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 499383 + timestamp: 1693151312586 +- kind: conda + name: zstd + version: 1.5.5 + build: hfc55251_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 04b88013080254850d6c01ed54810589 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 545199 + timestamp: 1693151163452 diff --git a/pixi.toml b/pixi.toml new file mode 100644 index 000000000..dbf43147c --- /dev/null +++ b/pixi.toml @@ -0,0 +1,105 @@ +[project] +name = "MSS" +channels = ["conda-forge"] +platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"] + +[tasks] + +[dependencies] +PyMySQL = ">=0.9.3" +basemap = ">=1.3.3" +cftime = ">=1.0.1" +chameleon = "*" +defusedxml = "*" +email_validator = "*" +execnet = "*" +fastkml = ">=0.11" +flask = ">=2.3.2" +flask-cors = "*" +flask-httpauth = "*" +flask-login = "*" +flask-mail = "*" +flask-migrate = "*" +flask-socketio = ">=5.1.0" +flask-sqlalchemy = ">=3.0.0" +flask-wtf = "*" +fs_filepicker = "*" +git = "*" +gitpython = "*" +gpxpy = ">=1.4.2" +hdf4 = "*" +isodate = "*" +itsdangerous = "*" +keyring = "*" +libtiff = "<4.5.0" +lxml = "*" +markdown = "*" +matplotlib = ">=3.5.3" +menuinst = "*" +metpy = "*" +multidict = "*" +netcdf4 = "*" +owslib = ">=0.24" +passlib = "*" +pillow = "*" +pint = "*" +psycopg2 = "*" +pycountry = "*" +pygeoif = "<1.0.0" +pyjwt = "*" +pyqt = ">=5.15.0" +pysaml2 = "*" +python = "*" +python-engineio = ">=4" +python-slugify = "*" +python-socketio = ">=5" +qt = ">=5.15.0" +requests = ">=2.31.0" +scipy = "*" +shapely = ">=2.0.0" +skyfield = ">=1.12" +skyfield-data = ">=5" +tk = "*" +unicodecsv = "*" +validate_email = "*" +websocket-client = "*" +werkzeug = ">=2.2.3, <3.0.0" +xstatic = "*" +xstatic-bootstrap = "*" +xstatic-jquery = "*" + +[target.linux-64.dependencies] +dbus-python = "*" +libxmlsec1 = "*" + +[target.osx-64.dependencies] +libxmlsec1 = "*" + +[target.osx-arm64.dependencies] +libxmlsec1 = "*" + +[feature.dev.dependencies] +boa = "*" +conda-verify = "*" +coveralls = "*" +dnspython = ">=2.0.0, <2.3.0" +eventlet = ">0.30.2" +flake8 = "*" +flake8-builtins = "*" +gitpython = "*" +gsl = "==2.7.0" +mock = "*" +py = "*" +pynco = "*" +pytest = "*" +pytest-cov = "*" +pytest-qt = "*" +pytest-reverse = "*" +pytest-timeout = "*" +pytest-xdist = "*" +sphinx = "*" +sphinx_rtd_theme = "*" +xmlschema = "<2.5.0" + +[environments] +dev = ["dev"] diff --git a/requirements.d/development.txt b/requirements.d/development.txt deleted file mode 100644 index d6403b27c..000000000 --- a/requirements.d/development.txt +++ /dev/null @@ -1,22 +0,0 @@ -# This file may be used to create an environment using: -# $ conda create --name --file -# platform: linux-64 -flake8 -flake8-builtins -py -mock -pytest -pytest-qt -pytest-xdist -pytest-cov -sphinx -sphinx_rtd_theme -sphinxcontrib-video -gitpython -pynco -conda-verify -pytest-reverse -eventlet>0.30.2 -dnspython>=2.0.0, <2.3.0 -gsl==2.7.0 -boa