From b96176ae090f3478faca4217a1d65619b85e288e Mon Sep 17 00:00:00 2001 From: Hofer-Julian Date: Wed, 13 Sep 2023 10:27:31 +0200 Subject: [PATCH] Move from mamba to pixi --- .github/workflows/core_tests.yml | 22 +- .github/workflows/docs.yml | 37 +- .github/workflows/python_lint.yml | 24 +- .github/workflows/python_tests.yml | 25 +- docs/contribute/addnode.qmd | 3 - docs/contribute/core.qmd | 25 +- docs/contribute/python.qmd | 105 +- pixi.lock | 8519 ++++++++++++++++++++++++++++ pixi.toml | 73 + python/ribasim/tests/conftest.py | 17 - utils/generate-testmodels.py | 16 + 11 files changed, 8660 insertions(+), 206 deletions(-) create mode 100644 pixi.lock create mode 100644 pixi.toml create mode 100644 utils/generate-testmodels.py diff --git a/.github/workflows/core_tests.yml b/.github/workflows/core_tests.yml index 04822cfae..9d3053953 100644 --- a/.github/workflows/core_tests.yml +++ b/.github/workflows/core_tests.yml @@ -13,9 +13,6 @@ jobs: test: name: Julia ${{ matrix.julia_version }} - ${{ matrix.os }} - ${{ matrix.arch }} runs-on: ${{ matrix.os }} - defaults: - run: - shell: bash -l {0} strategy: fail-fast: false matrix: @@ -29,18 +26,17 @@ jobs: - x64 steps: - uses: actions/checkout@v4 - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v1 + - uses: prefix-dev/setup-pixi@v0.2.0 with: - cache-downloads: true - cache-environment: true - environment-file: ./environment.yml - - name: Install ribasim - run: pip install --editable python/ribasim - - name: Install ribasim_testmodels - run: pip install --editable python/ribasim_testmodels + pixi-version: "0.3.0" + cache: true + - name: Prepare pixi + run: | + pixi install + pixi run post-install - name: Prepare model input - run: python python/ribasim/tests/conftest.py + run: | + pixi run generate-testmodels - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.julia_version }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 26a58be4e..34e84a938 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,9 +14,6 @@ jobs: runs-on: ubuntu-latest permissions: contents: write - defaults: - run: - shell: bash -l {0} strategy: matrix: julia_version: @@ -40,37 +37,23 @@ jobs: cache-compiled: "true" cache-registries: "true" - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v1 + - uses: prefix-dev/setup-pixi@v0.2.0 with: - cache-downloads: true - cache-environment: true - environment-file: ./environment.yml - - - name: Install ribasim-python - run: pip install --editable python/ribasim - - - name: Set up Quarto - uses: quarto-dev/quarto-actions/setup@v2 + pixi-version: "0.3.0" + cache: true + - name: Prepare pixi + run: | + pixi install + pixi run post-install - name: Check Quarto installation and all engines - run: quarto check all - - - name: Generate API pages - working-directory: docs - # objects.json: https://github.com/machow/quartodoc/issues/63 - run: | - quartodoc build - rm objects.json + run: pixi run quarto-check - name: Generate Julia docs - working-directory: docs - run: | - julia --project -e "using Pkg; Pkg.instantiate()" - julia --project make.jl + run: pixi run build-julia-docs - name: Render Quarto Project - run: "quarto render docs --to html --execute" + run: pixi run quarto-render - name: Publish Quarto Project if: github.ref == 'refs/heads/main' diff --git a/.github/workflows/python_lint.yml b/.github/workflows/python_lint.yml index 859391309..94b5db0f8 100644 --- a/.github/workflows/python_lint.yml +++ b/.github/workflows/python_lint.yml @@ -14,28 +14,22 @@ jobs: name: Mypy runs-on: ubuntu-latest continue-on-error: true - defaults: - run: - shell: bash -l {0} steps: - uses: actions/checkout@v4 - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v1 + - uses: prefix-dev/setup-pixi@v0.2.0 with: - cache-downloads: true - cache-environment: true - environment-file: ./environment.yml - - name: Install python packages + pixi-version: "0.3.0" + cache: true + - name: Prepare pixi run: | - pip install python/ribasim - pip install python/ribasim_testmodels - pip install python/ribasim_api + pixi install + pixi run post-install - name: Run mypy on python/ribasim run: | - mypy --ignore-missing-imports python/ribasim/ribasim + pixi run mypy-ribasim-python - name: Run mypy on python/ribasim_testmodels run: | - mypy --ignore-missing-imports python/ribasim_testmodels/ribasim_testmodels + pixi run mypy-ribasim-testmodels - name: Run mypy on python/ribasim_api run: | - mypy --ignore-missing-imports python/ribasim_api/ribasim_api + pixi run mypy-ribasim-api diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index 1400ea31b..4bb713ef9 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -13,9 +13,6 @@ jobs: test: name: Python ${{ matrix.python_version }} - ${{ matrix.os }} - ${{ matrix.arch }} runs-on: ${{ matrix.os }} - defaults: - run: - shell: bash -l {0} strategy: fail-fast: false matrix: @@ -32,23 +29,17 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v1 + - uses: prefix-dev/setup-pixi@v0.2.0 with: - cache-downloads: true - cache-environment: true - environment-file: ./environment.yml - create-args: >- - python=${{ matrix.python_version }} - - - name: Install ribasim - run: pip install --editable python/ribasim - - - name: Install ribasim_testmodels - run: pip install --editable python/ribasim_testmodels + pixi-version: "0.3.0" + cache: true + - name: Prepare pixi + run: | + pixi install + pixi run post-install - name: Run tests - run: pytest --cov=ribasim --cov-report=xml python/ribasim/tests + run: pixi run test-ribasim-python-cov - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 diff --git a/docs/contribute/addnode.qmd b/docs/contribute/addnode.qmd index 3c15e841f..0ddb5f3a7 100644 --- a/docs/contribute/addnode.qmd +++ b/docs/contribute/addnode.qmd @@ -253,8 +253,5 @@ To generate the Python module `models.py` from the JSON Schemas, run: datamodel-codegen --use-title-as-name --input docs/schema/root.schema.json --output python/ribasim/ribasim/models.py ``` -Run [Black](python.qmd#sec-black) to format the generated code. -To catch possible Python issues run [Ruff](python.qmd#sec-ruff). - Since adding a node type touches both the Python and Julia code, it is a good idea to run both the [Python test suite](python.qmd#test) and [Julia test suite](core.qmd#test) locally before creating a pull request. diff --git a/docs/contribute/core.qmd b/docs/contribute/core.qmd index 9e0d35064..bd8d4ae38 100644 --- a/docs/contribute/core.qmd +++ b/docs/contribute/core.qmd @@ -24,11 +24,6 @@ pkg> add Revise TestEnv Revise.jl is a library that allows you to modify code and use the changes without restarting Julia. You can let it start automatically by following these [instructions](https://timholy.github.io/Revise.jl/stable/config/#Using-Revise-by-default-1). -## Install Quarto - -Quarto is the publishing system that builds our documentation. -The installation instructions can be found on their [web page](https://quarto.org/docs/get-started/). - ## Clone Ribasim In order to have the Ribasim repository locally available, you can clone it with Git. @@ -107,24 +102,10 @@ That way you don't have to type `activate core` every time you open the REPL. ## Render documentation Example models are created and simulated as part of the rendering of the documentation. -Therefore you need to have both the `ribasim` Python package and the Julia `Ribasim` package -installed. Furthermore you need these 3 Python packages installed: `jupyter quartodoc xarray`. - -The Python API reference is created using quartodoc by running this command from the `docs/` -folder: - -```bash -quartodoc build -``` - -You typically only have to run this once, or if you want to check out how it looks after -changing Python docstrings. - -The Julia API reference is created using Documenter.jl by running this command from the `docs/` folder: +The Julia API reference is created using Documenter.jl by running this command: ```bash -julia --project -e "using Pkg; Pkg.instantiate()" # needed once -julia --project make.jl # after changing the Julia docstrings +pixi run build-julia-docs ``` In order to preview documentation you can run the following command from the `docs/` folder. @@ -132,7 +113,7 @@ Afterwards, a browser tab will open with the rendered documentation, updating it make changes. ```bash -quarto preview +pixi run quarto-preview ``` The documentation also includes [Jupyter notebooks](https://jupyter.org/). diff --git a/docs/contribute/python.qmd b/docs/contribute/python.qmd index 6e7e29dc4..7e51ea0b7 100644 --- a/docs/contribute/python.qmd +++ b/docs/contribute/python.qmd @@ -4,89 +4,26 @@ title: "Python tooling development" # Set up the developer environment -## Setting up conda +## Setting up pixi -In order to develop on `ribasim` locally, please follow the following steps: +First, set up pixi as described on their getting started [page](https://prefix.dev/docs/pixi/overview). -- Download and install [miniconda](https://docs.conda.io/en/latest/miniconda.html). +Then set up the environment by running the following commands: -- Initialize `conda` by running the following in the `Miniconda prompt`: - -``` -conda init -``` - -- Depending on your company settings, you might also have to run the following in a Powershell terminal as administrator: - -``` -Set-ExecutionPolicy -ExecutionPolicy RemoteSigned ``` - -## Creating (or updating) the environment - -- Create (or update) the environment by executing the following in your terminal: - -``` -conda env create --file=environment.yml --force -``` - -## Installing Python packages - -- Activate the environment - -``` -conda activate ribasim -``` - -In order to develop on `ribasim` locally, execute the following line inside your virtual environment with the repo root as your working directory: - -```bash -pip install --editable python/ribasim -pip install --editable python/ribasim_testmodels -pip install --editable python/ribasim_api -``` - -## Install the pre-commit hook {#sec-precommit} - -If not already done, activate the environment: - -``` -conda activate ribasim -``` - -Pre-commit ensures that all linters are happy with your code before you commit your files. -In order to install the pre-commit hook run: - -```bash -pre-commit install +pixi install +pixi run post-install ``` ## Running the tests {#sec-test} -If not already done, activate the environment: - -``` -conda activate ribasim -``` - -To run the tests call `pytest` with the path to the Python package. -Here the the root of the repository is the working directory: +In order to run tests on Ribasim Python execute ```bash -pytest python/ribasim -``` - -## Building the documentation - -Run in the docs folder: - -``` -quartodoc build +pixi run test-ribasim-python ``` -This will generate the `.qmd` files in `docs/python/reference` for inspection. - ## Updating example notebooks Make sure to run `Clear All Outputs` on the notebook before committing. @@ -136,30 +73,12 @@ twine check dist/* twine upload dist/* ``` -## Automatic code formatting with Black {#sec-black} - -We use the [Black](https://black.readthedocs.io/en/stable/) code formatter. -Code only passes the continuous integration checks if it is fully formatted according to the Black code style. -When working in VS Code the settings suggested in @sec-vscode run Black automatically when saving Python files. - -If you want to run Black manually, you can run it from the command line. -To run it on the entire repository, use the command below. -Here the repository root is the working directory. - -``` -black . -``` - -## Code linting with Ruff {#sec-ruff} - -We use the [Ruff](https://github.com/charliermarsh/ruff) linter to help finding issues with Python code. -Code only passes the continuous integration checks if Ruff does not find any issues. +## Linting -To run Ruff on the entire repository, use the command below. -Here the repository root is the working directory. +To run our linting suite locally, execute: ``` -ruff . +pixi run lint ``` # Code maintenance {#sec-codecov} @@ -167,11 +86,13 @@ ruff . For new features new tests have to be added. To monitor how much of the code is covered by the tests we use [Codecov](https://about.codecov.io/). For a simple overview of the local code coverage run ``` +pixi shell pytest --cov=ribasim tests/ ``` from `python/ribasim`. For an extensive overview in `html` format use ``` -ytest --cov=ribasim --cov-report=html tests/ +pixi shell +pytest --cov=ribasim --cov-report=html tests/ ``` which creates a folder `htmlcov` in the working directory. To see te contents open `htmlcov/index.html` in a browser. diff --git a/pixi.lock b/pixi.lock new file mode 100644 index 000000000..84e592e1e --- /dev/null +++ b/pixi.lock @@ -0,0 +1,8519 @@ +metadata: + content_hash: + win-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d + channels: + - url: https://conda.anaconda.org/conda-forge/ + used_env_vars: [] + platforms: + - win-64 + sources: [] + time_metadata: null + git_metadata: null + inputs_metadata: null + custom_metadata: null +package: +- name: anyio + version: 4.0.0 + manager: conda + platform: win-64 + dependencies: + exceptiongroup: '*' + idna: '>=2.8' + python: '>=3.8' + sniffio: '>=1.1' + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: 3c4e99d3ae4ec033d4dd99fb5220e540 + sha256: 64125775b2e724db5c72e431dd180495d5d509d0a2d1228a122e6af9f1b60e33 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - trio >=0.22 + license: MIT + license_family: MIT + noarch: python + size: 98958 + timestamp: 1693488730301 +- name: argcomplete + version: 3.1.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda + hash: + md5: 964bace0c38ce4733851a2a29679e3f9 + sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 39430 + timestamp: 1686587564613 +- name: argon2-cffi + version: 23.1.0 + manager: conda + platform: win-64 + dependencies: + argon2-cffi-bindings: '*' + python: '>=3.7' + typing-extensions: '*' + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda + hash: + md5: 3afef1f55a1366b4d3b6a0d92e2235e4 + sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - argon2_cffi ==999 + license: MIT + license_family: MIT + noarch: python + size: 18602 + timestamp: 1692818472638 +- name: argon2-cffi-bindings + version: 21.2.0 + manager: conda + platform: win-64 + dependencies: + cffi: '>=1.0.1' + 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' + url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py311ha68e1ae_3.tar.bz2 + hash: + md5: c321cd825b72a2073dfb3f92ce1507fb + sha256: 641dd4b9d7714d28a2dbc3f80e9f3503acabd5706454d54e8c04578035cb22e7 + optional: false + category: main + build: py311ha68e1ae_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: MIT + license_family: MIT + size: 36208 + timestamp: 1666851014828 +- name: arrow + version: 1.2.3 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + python-dateutil: '>=2.7.0' + typing_extensions: '*' + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.2.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: fd1967c76eda3a3dd9e8e6cb7a15a028 + sha256: a0434c2770cf5b0ab5a33913c0b202b1521bc13f755b762d16a86b110425cdc2 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 93703 + timestamp: 1662382594353 +- name: asttokens + version: 2.4.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + six: '>=1.12.0' + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.0-pyhd8ed1ab_0.conda + hash: + md5: 056f04e51dd63337e8d7c425c18c86f1 + sha256: e7e91e3fa26abe502be690371893f205d87a82c225668ea6e9a1ba26870388ee + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 28819 + timestamp: 1694046538391 +- name: async-lru + version: 2.0.4 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + typing_extensions: '>=4.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda + hash: + md5: 3d081de3a6ea9f894bbb585e8e3a4dcb + sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15342 + timestamp: 1690563152778 +- name: attrs + version: 23.1.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda + hash: + md5: 3edfead7cedd1ab4400a6c588f3e75f8 + sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821 + optional: false + category: main + build: pyh71513ae_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 55022 + timestamp: 1683424195402 +- name: aws-c-auth + version: 0.7.3 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.6.2,<0.6.3.0a0' + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-http: '>=0.7.12,<0.7.13.0a0' + aws-c-io: '>=0.13.32,<0.13.33.0a0' + aws-c-sdkutils: '>=0.1.12,<0.1.13.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.3-hd125877_3.conda + hash: + md5: eb7328f112a1e015c508de9cd241f990 + sha256: 4c790ff7a2699abb8651679a20df7461e3966d46960eb5584e5ca24af8ac2849 + optional: false + category: main + build: hd125877_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 97721 + timestamp: 1692935709843 +- name: aws-c-cal + version: 0.6.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + openssl: '>=3.1.2,<4.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.2-hfb91821_0.conda + hash: + md5: 173b99b939819b4cb72e8ecb51af3dd8 + sha256: 340ed3c0ebcfdf7c82406b4e79d521f482b2bd76e7c734924bbbd672d114f335 + optional: false + category: main + build: hfb91821_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 51086 + timestamp: 1692836593010 +- name: aws-c-common + version: 0.9.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.0-hcfcfb64_0.conda + hash: + md5: 1e9320ec0703fc6a6ef0bbf44ff46c38 + sha256: 2f1244294249a69d3a8408153d29707ddea772bcb933962160ba4b3692961558 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 194185 + timestamp: 1691436344230 +- name: aws-c-compression + version: 0.2.17 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.17-h04c9df6_2.conda + hash: + md5: b6298306cbe7035602ebf6780bcd75af + sha256: 0df964bcfbb283df73585c982aabf53d3e1f7d49469ba81234a81e31c8e18109 + optional: false + category: main + build: h04c9df6_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: Apache-2.0 + license_family: Apache + size: 22449 + timestamp: 1691607568750 +- name: aws-c-event-stream + version: 0.3.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-io: '>=0.13.32,<0.13.33.0a0' + aws-checksums: '>=0.1.17,<0.1.18.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.3.2-h495bb32_0.conda + hash: + md5: 986f66a6b548fcf953ca07f9f62a9b5e + sha256: 4ac3f1bfe503a466aca87157757e719d8d2c8a2e2522148af3eb3bc139f894c0 + optional: false + category: main + build: h495bb32_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 54421 + timestamp: 1692836354011 +- name: aws-c-http + version: 0.7.12 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.6.2,<0.6.3.0a0' + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-compression: '>=0.2.17,<0.2.18.0a0' + aws-c-io: '>=0.13.32,<0.13.33.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.12-h0890e15_1.conda + hash: + md5: efa33f1f63f836cbbc11c25453e496b1 + sha256: 8adc5fde04c69273109484bdb2a9025dcc27a4d86d28f533c9393334489d0d8c + optional: false + category: main + build: h0890e15_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 179541 + timestamp: 1692914047395 +- name: aws-c-io + version: 0.13.32 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.6.2,<0.6.3.0a0' + aws-c-common: '>=0.9.0,<0.9.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.32-h83b3346_3.conda + hash: + md5: c78f54426739a7ec54e413e667f93659 + sha256: 86e4502f5e484f9a61d124b21ee984a8b01971d25863943ee346f1ba5e22356b + optional: false + category: main + build: h83b3346_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 156858 + timestamp: 1694551733037 +- name: aws-c-mqtt + version: 0.9.5 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-http: '>=0.7.12,<0.7.13.0a0' + aws-c-io: '>=0.13.32,<0.13.33.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.9.5-h0fd1aac_1.conda + hash: + md5: 6ff71fd4f59e1ee2b823198215c899f4 + sha256: 1529bbb35a203cec965ca8ce1d06150785898f4753b1f9d9eeeae8b9fc77a4ba + optional: false + category: main + build: h0fd1aac_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 156576 + timestamp: 1692895858202 +- name: aws-c-s3 + version: 0.3.17 + manager: conda + platform: win-64 + dependencies: + aws-c-auth: '>=0.7.3,<0.7.4.0a0' + aws-c-cal: '>=0.6.2,<0.6.3.0a0' + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-http: '>=0.7.12,<0.7.13.0a0' + aws-c-io: '>=0.13.32,<0.13.33.0a0' + aws-checksums: '>=0.1.17,<0.1.18.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.3.17-h9f49523_0.conda + hash: + md5: 644340caa3a6f8bbe34fc9c26cd10da3 + sha256: 2c4e372d93ce765a41cd75f40182f04b7ccea16e4fd53960509b10054b98b7e4 + optional: false + category: main + build: h9f49523_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 83360 + timestamp: 1694526472046 +- name: aws-c-sdkutils + version: 0.1.12 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.12-h04c9df6_1.conda + hash: + md5: 35ccb6aa37d7a8e75e31e6e74a547884 + sha256: 41abc67c05d815df932890805a3196203c38b14168a6f11b30a48ccb0214bd15 + optional: false + category: main + build: h04c9df6_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 51620 + timestamp: 1691457447665 +- name: aws-checksums + version: 0.1.17 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.17-h04c9df6_1.conda + hash: + md5: 3b80c08e23d4e6b4d2e8ec3f68bcd446 + sha256: 3e04b29ac5469a208d6a1ed5eb0b5b38cf45963b61847f65504d167168c1c509 + optional: false + category: main + build: h04c9df6_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 52068 + timestamp: 1691457269016 +- name: aws-crt-cpp + version: 0.23.1 + manager: conda + platform: win-64 + dependencies: + aws-c-auth: '>=0.7.3,<0.7.4.0a0' + aws-c-cal: '>=0.6.2,<0.6.3.0a0' + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-event-stream: '>=0.3.2,<0.3.3.0a0' + aws-c-http: '>=0.7.12,<0.7.13.0a0' + aws-c-io: '>=0.13.32,<0.13.33.0a0' + aws-c-mqtt: '>=0.9.5,<0.9.6.0a0' + aws-c-s3: '>=0.3.17,<0.3.18.0a0' + aws-c-sdkutils: '>=0.1.12,<0.1.13.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.23.1-hfe9bf68_1.conda + hash: + md5: 1119565e5eb0d9ca145bc6b3dcf9d3e6 + sha256: 22c01e2dc489f6f857df634f843191edde6d62c65c4a1f08388b444c1a5fe479 + optional: false + category: main + build: hfe9bf68_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 236610 + timestamp: 1694556882860 +- name: aws-sdk-cpp + version: 1.11.156 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.9.0,<0.9.1.0a0' + aws-c-event-stream: '>=0.3.2,<0.3.3.0a0' + aws-crt-cpp: '>=0.23.1,<0.23.2.0a0' + libcurl: '>=8.2.1,<9.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' + url: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.156-h77892aa_1.conda + hash: + md5: 870fa8be9470cc42b0b3c713e9bc7b73 + sha256: 73acdb70e16d0fd1b8b645c24e43f5b8e3f8a06c49b455356142eb98737f6f04 + optional: false + category: main + build: h77892aa_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 3229122 + timestamp: 1694125003696 +- name: babel + version: 2.12.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + pytz: '*' + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda + hash: + md5: ac432e732804a81ddcf29c92ead57cde + sha256: 2d9b8768bf8b45073830f7104278c6eb17d78b0f509c9d818ff06b9c4d60283a + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 6886728 + timestamp: 1677767201771 +- name: backcall + version: 0.2.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 13705 + timestamp: 1592338491389 +- name: backports + version: '1.0' + manager: conda + platform: win-64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + build: pyhd8ed1ab_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 5950 + timestamp: 1669158729416 +- name: backports.functools_lru_cache + version: 1.6.5 + manager: conda + platform: win-64 + dependencies: + backports: '*' + python: '>=3.6' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda + hash: + md5: 6b1b907661838a75d067a22f87996b2e + sha256: 7027bb689dd4ca4a08e3b25805de9d04239be6b31125993558f21f102a9d2700 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11519 + timestamp: 1687772319931 +- name: beautifulsoup4 + version: 4.12.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + soupsieve: '>=1.2' + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda + hash: + md5: a362ff7d976217f8fa78c0f1c4f59717 + sha256: 52d3e6bcd442537e22699cd227d8fdcfd54b708eeb8ee5b4c671a6a9b9cd74da + optional: false + category: main + build: pyha770c72_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 115011 + timestamp: 1680888259061 +- name: black + version: 23.9.1 + manager: conda + platform: win-64 + dependencies: + click: '>=8.0.0' + mypy_extensions: '>=0.4.3' + packaging: '>=22.0' + pathspec: '>=0.9' + platformdirs: '>=2' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/win-64/black-23.9.1-py311h1ea47a8_0.conda + hash: + md5: f12c7eddbffa2a5e5a43db3e0e316436 + sha256: 219a4e613449244b0e1b49b4895096399c832861c2b0e1d18db2da36828dc611 + optional: false + category: main + build: py311h1ea47a8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 374263 + timestamp: 1694452640885 +- name: black-jupyter + version: 23.9.1 + manager: conda + platform: win-64 + dependencies: + black: '>=23.9.1,<23.9.2.0a0' + ipython: '>=7.8.0' + tokenize-rt: '>=3.2.0' + url: https://conda.anaconda.org/conda-forge/noarch/black-jupyter-23.9.1-hd8ed1ab_0.conda + hash: + md5: dd3f05937a9f8db754ef2afaa138f378 + sha256: d69a5ff988b7c2e510ffc605dc7bf222189381b49fc72bfc2d33b2e9f6f3c2b9 + optional: false + category: main + build: hd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 7236 + timestamp: 1694452060149 +- name: bleach + version: 6.0.0 + manager: conda + platform: win-64 + dependencies: + packaging: '*' + python: '>=3.6' + setuptools: '*' + six: '>=1.9.0' + webencodings: '*' + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda + hash: + md5: d48b143d01385872a88ef8417e96c30e + sha256: 59da02f550ec546f9375fa309bc7712f50b478bad67b99fbebbb5b57ee3a67d3 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 130677 + timestamp: 1674535450476 +- name: blosc + version: 1.21.5 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda + hash: + md5: 77a5cea2ce92907b7d1e7954457a526a + sha256: 73cee35e5366ce998ef36ccccb4c11ef9ead297886cc08269379f91539131288 + optional: false + category: main + build: hdccc3a2_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 50069 + timestamp: 1693657396550 +- name: bmipy + version: '2.0' + manager: conda + platform: win-64 + dependencies: + black: '*' + click: '*' + jinja2: '*' + numpy: '*' + python: '>=3' + six: '*' + url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0-py_0.tar.bz2 + hash: + md5: 09c29e1098ac9d79df603f3de51aa8ae + sha256: f8bb604a5892ba2c2446558f7ec8c7546fc614c82658cba3390ace663701e0be + optional: false + category: main + build: py_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11078 + timestamp: 1576274472294 +- name: boost-cpp + version: 1.78.0 + manager: conda + platform: win-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.1,<15' + vc14_runtime: '>=14.16.27033' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_4.conda + hash: + md5: 991b639e1178f29d8e7681dc75f36acb + sha256: 7e039bfa99e9aca12d1f98426c571850dae12b48e8cd0aa0ef449ea6d9604dac + optional: false + category: main + build: h9f4b32c_4 + arch: x86_64 + subdir: win-64 + build_number: 4 + constrains: + - libboost <0 + license: BSL-1.0 + size: 15765632 + timestamp: 1692976647427 +- name: branca + version: 0.6.0 + manager: conda + platform: win-64 + dependencies: + jinja2: '*' + python: '>=3.7' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f4cc65697763ef8c2f7555f1ec355a6b + sha256: 46175d4dd94e458b2c5303a4cd816db6c45ff302b1b1852c1fd37411ce171f05 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 27849 + timestamp: 1667848843468 +- name: brotli + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + brotli-bin: ==1.1.0 hcfcfb64_0 + libbrotlidec: ==1.1.0 hcfcfb64_0 + libbrotlienc: ==1.1.0 hcfcfb64_0 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-hcfcfb64_0.conda + hash: + md5: 4a65489faacc6b6dbd3e0d0572a3a9b9 + sha256: 04da61e4188c96741469745272053fc011e40d35ac8e8fb59c96ca95c24c98eb + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 19699 + timestamp: 1693584239489 +- name: brotli-bin + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + libbrotlidec: ==1.1.0 hcfcfb64_0 + libbrotlienc: ==1.1.0 hcfcfb64_0 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-hcfcfb64_0.conda + hash: + md5: 8ea6b316fc21d9fb0b1b9a9671073c3c + sha256: 7f12adfc792b467ba04295ada031c7900170901af25b2d4c6c904b1a0771edf3 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 20837 + timestamp: 1693584207158 +- name: brotli-python + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_0.conda + hash: + md5: 77fa98b529dff62cad6b4697c139ab19 + sha256: aaf5d38f3fbd76d56311cdaf2c590ed57d3cfc894fdc1cfc1eb750834bd51339 + optional: false + category: main + build: py311h12c1d0e_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - libbrotlicommon 1.1.0 hcfcfb64_0 + license: MIT + license_family: MIT + size: 322079 + timestamp: 1693584778140 +- name: build + version: 0.7.0 + manager: conda + platform: win-64 + dependencies: + importlib-metadata: '*' + packaging: '*' + pep517: '>=0.9.1' + python: '>=3.6' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: add7f31586d03678695b32b78a1337a1 + sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17759 + timestamp: 1631843776429 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 + hash: + md5: 7c03c66026944073040cb19a4f3ec3c9 + sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 + optional: false + category: main + build: h8ffe710_4 + arch: x86_64 + subdir: win-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 152247 + timestamp: 1606605223049 +- name: c-ares + version: 1.19.1 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.19.1-hcfcfb64_0.conda + hash: + md5: 8aa74d9a74ed3a31d9ed38a387a8ca50 + sha256: 4dc79f3b5784ea9bffcbd27f2c23a52f0507e877af59d002aa2202c07d0d4951 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 112589 + timestamp: 1684783302054 +- name: ca-certificates + version: 2023.7.22 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda + hash: + md5: b1c2327b36f1a25d96f2039b0d3e3739 + sha256: b85a6f307f8e1c803cb570bdfb9e4d811a361417873ecd2ecf687587405a72e0 + optional: false + category: main + build: h56e8100_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: ISC + size: 150013 + timestamp: 1690026269050 +- name: cached-property + version: 1.5.2 + manager: conda + platform: win-64 + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + optional: false + category: main + build: hd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 4134 + timestamp: 1615209571450 +- name: cached_property + version: 1.5.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + optional: false + category: main + build: pyha770c72_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11065 + timestamp: 1615209567874 +- name: cairo + version: 1.16.0 + manager: conda + platform: win-64 + dependencies: + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + freetype: '>=2.12.1,<3.0a0' + icu: '>=73.2,<74.0a0' + libglib: '>=2.76.4,<3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pixman: '>=0.40.0,<1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + zlib: '*' + url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-h412253b_1017.conda + hash: + md5: 7bae4345898b999b3f45a8421f4eef29 + sha256: 072fbc3539b123ed42c1e3a06603fc42b5b1cf51e186e939dd56cb1a6ff3d215 + optional: false + category: main + build: h412253b_1017 + arch: x86_64 + subdir: win-64 + build_number: 1017 + license: LGPL-2.1-only or MPL-1.1 + size: 1609362 + timestamp: 1692960974679 +- name: certifi + version: 2023.7.22 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda + hash: + md5: 7f3dbc9179b4dde7da98dfb151d0ad22 + sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: ISC + noarch: python + size: 153791 + timestamp: 1690024617757 +- name: cffi + version: 1.15.1 + manager: conda + platform: win-64 + dependencies: + pycparser: '*' + 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' + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.15.1-py311h7d9ee11_3.conda + hash: + md5: a8524727eb956b4741e25a64af79edb8 + sha256: 49ce08187365f97c67476d504411de0a17e69b972ab6b80521d01dc80dd657e6 + optional: false + category: main + build: py311h7d9ee11_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: MIT + license_family: MIT + size: 292953 + timestamp: 1671179769667 +- name: cfgv + version: 3.3.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6.1' + url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: ebb5f5f7dc4f1a3780ef7ea7738db08c + sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 10788 + timestamp: 1629909423398 +- name: cfitsio + version: 4.3.0 + manager: conda + platform: win-64 + dependencies: + libcurl: '>=8.2.0,<9.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.3.0-h9b0cee5_0.conda + hash: + md5: a04c557207fa9fc6f663ae1e4768d321 + sha256: b941249b2254939a180922d7639e1517feae71d61bcca86788fb953202e2b103 + optional: false + category: main + build: h9b0cee5_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LicenseRef-fitsio + size: 563108 + timestamp: 1690378239344 +- name: chardet + version: 3.0.4 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/chardet-3.0.4-py_1.tar.bz2 + hash: + md5: fe78e4f34d845480ff480e0f8561f83c + sha256: 1b63f2e11c96f8564c9e0b05cc05eaa45dd38de56052dd6e049a795db1e00620 + optional: false + category: main + build: py_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: LGPL2 + license_family: GPL + noarch: python + size: 97878 + timestamp: 1530974982414 +- name: charset-normalizer + version: 3.2.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda + hash: + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 45686 + timestamp: 1688813585878 +- name: click + version: 8.1.7 + manager: conda + platform: win-64 + dependencies: + __win: '*' + colorama: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + hash: + md5: 3549ecbceb6cd77b91a105511b7d0786 + sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 + optional: false + category: main + build: win_pyh7428d3b_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 85051 + timestamp: 1692312207348 +- name: click-plugins + version: 1.1.1 + manager: conda + platform: win-64 + dependencies: + click: '>=3.0' + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + optional: false + category: main + build: py_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 8992 + timestamp: 1554588104889 +- name: cligj + version: 0.7.2 + manager: conda + platform: win-64 + dependencies: + click: '>=4.0' + python: <4.0 + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 10255 + timestamp: 1633637895378 +- name: cmarkgfm + version: 0.8.0 + manager: conda + platform: win-64 + dependencies: + cffi: '>=1.0.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' + url: https://conda.anaconda.org/conda-forge/win-64/cmarkgfm-0.8.0-py311ha68e1ae_2.tar.bz2 + hash: + md5: 206cb594ef199270b7e0d3d17aa87cbe + sha256: 34ef87f3d6700f63b15e8d9fd3f7d89e804f0a1d76c76b4042206e5d85dc6a91 + optional: false + category: main + build: py311ha68e1ae_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 140983 + timestamp: 1666865891273 +- name: colorama + version: 0.4.6 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 25170 + timestamp: 1666700778190 +- name: comm + version: 0.1.4 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda + hash: + md5: c8eaca39e2b6abae1fc96acc929ae939 + sha256: 11057745946a95ee7cc4c98900a60c7362266a4cb28bc97d96cd88e3056eb701 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11682 + timestamp: 1691045097208 +- name: contourpy + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + numpy: '>=1.16' + 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' + url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.1.0-py311h005e61a_0.conda + hash: + md5: 86659e75f43068aacce35f3d93e9d80e + sha256: 36d98060fef7b77c71545365ff52afd10f29b18478a1332b7aa5b6f0357f4cef + optional: false + category: main + build: py311h005e61a_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 182954 + timestamp: 1686734495403 +- name: coverage + version: 7.3.1 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.3.1-py311ha68e1ae_0.conda + hash: + md5: a1dca8c227d362c0f90721d7ecad5256 + sha256: 566f89c060286c77316b195e5afe89e7c6f85d4d68d85fc779ad4cf3771b395b + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 373563 + timestamp: 1694014528984 +- name: cycler + version: 0.11.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 10307 + timestamp: 1635519555262 +- name: dart-sass + version: 1.58.3 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/dart-sass-1.58.3-h57928b3_1.conda + hash: + md5: 717501926d44c46117979fc54892c560 + sha256: b974772f376bea3afc8ecacf916fce3170b02604310c4a1d25fc39f1c44bd532 + optional: false + category: main + build: h57928b3_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 2846260 + timestamp: 1683598954152 +- name: datamodel-code-generator + version: 0.21.5 + manager: conda + platform: win-64 + dependencies: + argcomplete: '>=1.10,<4.0' + black: '>=19.10b0' + genson: '>=1.2.1,<2.0' + inflect: '>=4.1.0,<6.0' + isort: '>=4.3.21,<6.0' + jinja2: '>=2.10.1,<4.0' + openapi-spec-validator: '>=0.2.8,<=0.5.1' + packaging: '*' + prance: '>=0.18.2,<1.0' + pydantic: '>=1.5.1,<3.0' + pysnooper: '>=0.4.1,<2.0.0' + python: '>=3.7,<4.0' + toml: '>=0.10.0,<1.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/datamodel-code-generator-0.21.5-pyhd8ed1ab_0.conda + hash: + md5: 59644eecc77832103d8e4a382565117a + sha256: 03cd134b83852bd0a789ab6d4f12011b646e7c5c3c80acc2717157720641567c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + noarch: python + size: 65656 + timestamp: 1694550890631 +- name: debugpy + version: 1.8.0 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.0-py311h12c1d0e_0.conda + hash: + md5: 50b40f48b3559741ed9e980d1f3dbbc0 + sha256: eeed0b7a0c67988b2886d75648bb8d116f92ea68ca8c7bc4db243ab21c12d615 + optional: false + category: main + build: py311h12c1d0e_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 3971895 + timestamp: 1694569643933 +- name: decorator + version: 5.1.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 12072 + timestamp: 1641555714315 +- name: defusedxml + version: 0.7.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 961b3a227b437d82ad7054484cfa71b2 + sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 24062 + timestamp: 1615232388757 +- name: deno + version: 1.28.2 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/deno-1.28.2-h975169c_0.conda + hash: + md5: 8eb099a2d25a7fc2ed82c18566490556 + sha256: 5df401e3b1b387af5a55248a3e380addf8d4196105fd343fc55e11e7a5d6c59b + optional: false + category: main + build: h975169c_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 24088442 + timestamp: 1669785211835 +- name: deno-dom + version: 0.1.35 + manager: conda + platform: win-64 + dependencies: + deno: '>=1.24.2' + url: https://conda.anaconda.org/conda-forge/win-64/deno-dom-0.1.35-h8b8d39b_1.conda + hash: + md5: e1b95d707e592ee1f8d20986c449d927 + sha256: b8368da706bb912606eb5063e1535fe3075a23c063461a13cf95d05567ae4e15 + optional: false + category: main + build: h8b8d39b_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 298218 + timestamp: 1682953841090 +- name: distlib + version: 0.3.7 + manager: conda + platform: win-64 + dependencies: + python: ==2.7|>=3.6 + url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda + hash: + md5: 12d8aae6994f342618443a8f05c652a0 + sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 273692 + timestamp: 1689598624555 +- name: docutils + version: 0.20.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.20.1-py311h1ea47a8_0.conda + hash: + md5: 851f4c302cc7f5a617cc03a3c2090634 + sha256: 6baece0c4fcb3c6bbfd097c80eda9de8fe12cdc3170635a3080a4a760625d4bd + optional: false + category: main + build: py311h1ea47a8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later + size: 969619 + timestamp: 1684324776306 +- name: entrypoints + version: '0.4' + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 3cf04868fee0a029769bd41f4b2fbf2d + sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 9199 + timestamp: 1643888357950 +- name: esbuild + version: 0.19.2 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/esbuild-0.19.2-h57928b3_0.conda + hash: + md5: 7250cb4e9c20f9f7acdf4b523844ad90 + sha256: 7a6354b23d03a4eaff672e4d20cf4a6c554da31be506050055af97f4b023a8b9 + optional: false + category: main + build: h57928b3_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 3430198 + timestamp: 1693244283213 +- name: exceptiongroup + version: 1.1.3 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda + hash: + md5: e6518222753f519e911e83136d2158d9 + sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 19262 + timestamp: 1692026296517 +- name: executing + version: 1.2.0 + manager: conda + platform: win-64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 25013 + timestamp: 1667317463548 +- name: expat + version: 2.5.0 + manager: conda + platform: win-64 + dependencies: + libexpat: ==2.5.0 h63175ca_1 + url: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda + hash: + md5: 87c77fe1b445aedb5c6d207dd236fa3e + sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf + optional: false + category: main + build: h63175ca_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 226571 + timestamp: 1680190888036 +- name: filelock + version: 3.12.3 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.3-pyhd8ed1ab_0.conda + hash: + md5: 3104cf0ab9fb9de393051bf92b10dbe9 + sha256: 47635be45aa6cbfd6af65c13b5f649aef84c484e1897aef625e4ad717663eebc + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Unlicense + noarch: python + size: 15156 + timestamp: 1693242381163 +- name: fiona + version: 1.9.4 + manager: conda + platform: win-64 + dependencies: + attrs: '>=17' + click: '>=4.0' + click-plugins: '>=1.0' + cligj: '>=0.5' + gdal: '*' + importlib-metadata: '*' + libgdal: '>=3.7.0,<3.8.0a0' + munch: '*' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + setuptools: '*' + shapely: '*' + six: '>=1.7' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.4-py311h4e4dc46_0.conda + hash: + md5: c668da21a3f2ffe36a9c3bac2f864150 + sha256: ec6d380d300d6848b96abd6840dcbd66290ec905891b7cd9ef941ece5d3d61b8 + optional: false + category: main + build: py311h4e4dc46_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 976836 + timestamp: 1684321074754 +- name: folium + version: 0.14.0 + manager: conda + platform: win-64 + dependencies: + branca: '>=0.6.0' + jinja2: '>=2.9' + numpy: '*' + python: '>=3.6' + requests: '*' + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda + hash: + md5: 48c8bb19df0d0268f1a9d30ffc56c5b0 + sha256: 60c51dacc4edb33ba02a7224ddec9d938200f89588eb34b0ccdffc96155795fe + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 72892 + timestamp: 1670956406559 +- name: font-ttf-dejavu-sans-mono + version: '2.37' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + optional: false + category: main + build: hab24e00_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 +- name: font-ttf-inconsolata + version: '3.000' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + optional: false + category: main + build: h77eed37_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 +- name: font-ttf-source-code-pro + version: '2.038' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + optional: false + category: main + build: h77eed37_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 +- name: font-ttf-ubuntu + version: '0.83' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + optional: false + category: main + build: hab24e00_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 +- name: fontconfig + version: 2.14.2 + manager: conda + platform: win-64 + dependencies: + expat: '>=2.5.0,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda + hash: + md5: 08767992f1a4f1336a257af1241034bd + sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 + optional: false + category: main + build: hbde0cde_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 190111 + timestamp: 1674829354122 +- name: fonts-conda-ecosystem + version: '1' + manager: conda + platform: win-64 + dependencies: + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main + build: '0' + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 +- name: fonts-conda-forge + version: '1' + manager: conda + platform: win-64 + dependencies: + font-ttf-dejavu-sans-mono: '*' + font-ttf-inconsolata: '*' + font-ttf-source-code-pro: '*' + font-ttf-ubuntu: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + optional: false + category: main + build: '0' + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 +- name: fonttools + version: 4.42.1 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.42.1-py311ha68e1ae_0.conda + hash: + md5: 3ccd02106662201742705df920c05b22 + sha256: 0fe0689c17d2234964bf8c4801ffbaa4b5446f40fe37fd68c1d5fc2a34f95599 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 2338879 + timestamp: 1692543073025 +- name: fqdn + version: 1.5.1 + manager: conda + platform: win-64 + dependencies: + cached-property: '>=1.3.0' + python: '>=2.7,<4' + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 642d35437078749ef23a5dca2c9bb1f3 + sha256: 6cfd1f9bcd2358a69fb571f4b3af049b630d52647d906822dbedac03e84e4f63 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + noarch: python + size: 14395 + timestamp: 1638810388635 +- name: freetype + version: 2.12.1 + manager: conda + platform: win-64 + dependencies: + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda + hash: + md5: 1b513009cd012591f3fdc9e03a74ec0a + sha256: fe027235660d9dfe7889c350a51e96bc0134c3f408827a4c58c4b0557409984c + optional: false + category: main + build: h546665d_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 497412 + timestamp: 1669233360876 +- name: freexl + version: 1.0.6 + manager: conda + platform: win-64 + dependencies: + libiconv: '>=1.17,<2.0.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/freexl-1.0.6-h67ca5e6_1.tar.bz2 + hash: + md5: 7ddb6e879c46e78eec37f956b3ffe743 + sha256: 522a1ab55f891923f08d92e284cc1564c922f902c922101fa38121ee55535a87 + optional: false + category: main + build: h67ca5e6_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MPL-1.1 + license_family: MOZILLA + size: 62739 + timestamp: 1662819638650 +- name: gdal + version: 3.7.1 + manager: conda + platform: win-64 + dependencies: + hdf5: '>=1.14.2,<1.14.3.0a0' + libgdal: ==3.7.1 hb1fd9af_9 + libxml2: '>=2.11.5,<2.12.0a0' + numpy: '>=1.23.5,<2.0a0' + openssl: '>=3.1.2,<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' + url: https://conda.anaconda.org/conda-forge/win-64/gdal-3.7.1-py311h9601e46_9.conda + hash: + md5: 188152c662f462007477a5932a3be64b + sha256: 604dcea792250e2d00467f88d6a3fb26fa6e6399b694e188ec8a67f2f447726a + optional: false + category: main + build: py311h9601e46_9 + arch: x86_64 + subdir: win-64 + build_number: 9 + license: MIT + license_family: MIT + size: 1596363 + timestamp: 1693491853572 +- name: genson + version: 1.2.2 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/genson-1.2.2-pyh9f0ad1d_0.tar.bz2 + hash: + md5: b81e260d49a36f570e4b251b614dcdde + sha256: 9539754b644f051ed779c943f0faa667e7a8a52993f94c8f228d0507f3607998 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 20414 + timestamp: 1601490140447 +- name: geopandas + version: 0.13.2 + manager: conda + platform: win-64 + dependencies: + fiona: '>=1.8.19' + folium: '*' + geopandas-base: ==0.13.2 pyha770c72_1 + mapclassify: '>=2.4.0' + matplotlib-base: '*' + python: '>=3.8' + rtree: '*' + xyzservices: '*' + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.13.2-pyhd8ed1ab_1.conda + hash: + md5: 47226a55e4ae3bc9feb3a17925874817 + sha256: 789415051d8b7342f65342fa0270eb8bdc3131e841fdd8892f3efad335dc6bb5 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 7543 + timestamp: 1686057761916 +- name: geopandas-base + version: 0.13.2 + manager: conda + platform: win-64 + dependencies: + packaging: '*' + pandas: '>=1.1.0' + pyproj: '>=3.0.1' + python: '>=3.8' + shapely: '>=1.7.1' + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.13.2-pyha770c72_1.conda + hash: + md5: c6036236caae7d8ac684c41c64073b9e + sha256: fc1442a799f837961c3423466ac5f7c84d49b295c76290a7983dab903546a5a7 + optional: false + category: main + build: pyha770c72_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 1011508 + timestamp: 1686057753845 +- name: geos + version: 3.12.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/geos-3.12.0-h1537add_0.conda + hash: + md5: 78119c25e59de33135b673375c6fa126 + sha256: 096c45cb03240ae67ff9e09166110a3bd19a5ab20bf7deea8be55557792b9924 + optional: false + category: main + build: h1537add_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-only + size: 1557552 + timestamp: 1687939460054 +- name: geotiff + version: 1.7.1 + manager: conda + platform: win-64 + dependencies: + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + proj: '>=9.2.1,<9.2.2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + zlib: '*' + url: https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-h4e61e90_11.conda + hash: + md5: 28a9d7202ce47bc2e415e59010e15da0 + sha256: 4722bf3e1644abdb5e75e8f792ef7186935ecc9baeaa51b1eda4692dd1cf268b + optional: false + category: main + build: h4e61e90_11 + arch: x86_64 + subdir: win-64 + build_number: 11 + license: MIT + license_family: MIT + size: 126141 + timestamp: 1689809839760 +- name: gettext + version: 0.21.1 + manager: conda + platform: win-64 + dependencies: + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 + hash: + md5: 299d4fd6798a45337042ff5a48219e5f + sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 + optional: false + category: main + build: h5728263_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 5579416 + timestamp: 1665676022441 +- name: glib + version: 2.78.0 + manager: conda + platform: win-64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + glib-tools: ==2.78.0 h12be248_0 + libglib: ==2.78.0 he8f3873_0 + libzlib: '>=1.2.13,<1.3.0a0' + python: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/glib-2.78.0-h12be248_0.conda + hash: + md5: 1ed98e4da48693079f2fe83298c5b0ac + sha256: a9860e833d1ac9e2e87e5a0ae6863c819d893dac90aa1f6df9c06ab312d80170 + optional: false + category: main + build: h12be248_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 509622 + timestamp: 1694381620175 +- name: glib-tools + version: 2.78.0 + manager: conda + platform: win-64 + dependencies: + libglib: ==2.78.0 he8f3873_0 + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.78.0-h12be248_0.conda + hash: + md5: 466538fb59949a3c015b55671dc7e52c + sha256: 0781647629fdb9c88a2b1dc22bb845645d3365693f104374c7d9139bc59bd0ce + optional: false + category: main + build: h12be248_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 145796 + timestamp: 1694381570560 +- name: gst-plugins-base + version: 1.22.5 + manager: conda + platform: win-64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + gstreamer: ==1.22.5 hb4038d2_1 + libglib: '>=2.76.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' + url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.5-h001b923_1.conda + hash: + md5: 9552eb26133ff5d4bc57d68130ab1dab + sha256: 3b92a49283aabcc22a383b165f63a1f7e8f0e904c7fd19774508b0941fe5e001 + optional: false + category: main + build: h001b923_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2033150 + timestamp: 1693937712056 +- name: gstreamer + version: 1.22.5 + manager: conda + platform: win-64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + glib: '>=2.76.4,<3.0a0' + libglib: '>=2.76.4,<3.0a0' + libiconv: '>=1.17,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.5-hb4038d2_1.conda + hash: + md5: 9a3a803e50bfb63be273df21073f4afb + sha256: 9036ef010c76fc7a22c29579fd53c8f14e7a7f0add9f72c06517048941dc448b + optional: false + category: main + build: hb4038d2_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1942080 + timestamp: 1693937479011 +- name: hdf4 + version: 4.2.15 + manager: conda + platform: win-64 + dependencies: + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h1334946_6.conda + hash: + md5: 5777b72b13771944e15a839dd617c964 + sha256: 7114aa881e88ab0eb314f7612bef704ccf539e04965882e7b74a8c05230415b0 + optional: false + category: main + build: h1334946_6 + arch: x86_64 + subdir: win-64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 779782 + timestamp: 1678293184582 +- name: hdf5 + version: 1.14.2 + manager: conda + platform: win-64 + dependencies: + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=8.2.1,<9.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' + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.2-nompi_h73e8ff5_100.conda + hash: + md5: 7fc095c23e4519a8df15c09f3671d09a + sha256: 86bab02f1dbc658a15719b27ca5dcd2b50c22905cc2296a31a0ed220dac746f9 + optional: false + category: main + build: nompi_h73e8ff5_100 + arch: x86_64 + subdir: win-64 + build_number: 100 + license: LicenseRef-HDF5 + license_family: BSD + size: 2044096 + timestamp: 1692562772245 +- name: icu + version: '73.2' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/icu-73.2-h63175ca_0.conda + hash: + md5: 0f47d9e3192d9e09ae300da0d28e0f56 + sha256: 423aaa2b69d713520712f55c7c71994b7e6f967824bb39b59ad968e7b209ce8c + optional: false + category: main + build: h63175ca_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 13422193 + timestamp: 1692901469029 +- name: identify + version: 2.5.28 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + ukkonen: '*' + url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.28-pyhd8ed1ab_0.conda + hash: + md5: d7a2a28c5afe4bf295b192262868a069 + sha256: d90e46c67b1761fad949e47998d5fb8490852aee117369e9fa27f71df18aa66f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 78318 + timestamp: 1694493575101 +- name: idna + version: '3.4' + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 +- name: importlib-metadata + version: 6.8.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda + hash: + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf + optional: false + category: main + build: pyha770c72_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25910 + timestamp: 1688754651944 +- name: importlib_metadata + version: 6.8.0 + manager: conda + platform: win-64 + dependencies: + importlib-metadata: '>=6.8.0,<6.8.1.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda + hash: + md5: b279b07ce18058034e5b3606ba103a8b + sha256: b96e01dc42d547d6d9ceb1c5b52a5232cc04e40153534350f702c3e0418a6b3f + optional: false + category: main + build: hd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: generic + size: 9428 + timestamp: 1688754660209 +- name: importlib_resources + version: 5.13.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + zipp: '>=3.1.0' + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.13.0-pyhd8ed1ab_0.conda + hash: + md5: 748955a096313b51b314263402b83250 + sha256: f6a7af42e185bb188e6959c4af909cebacd291e2e1ceea6b2f246bb4da93eb7e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - importlib-resources >=5.13.0,<5.13.1.0a0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 28725 + timestamp: 1688755182364 +- name: inflect + version: 5.6.2 + manager: conda + platform: win-64 + dependencies: + importlib-metadata: '*' + python: '>=3' + url: https://conda.anaconda.org/conda-forge/noarch/inflect-5.6.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 7e5f7c7da6604706a97fcfa5407382a1 + sha256: 215102137164d174956307d1100d530ac41a2496d32debd073597724a4bc1ad0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 36112 + timestamp: 1657910314055 +- name: iniconfig + version: 2.0.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11101 + timestamp: 1673103208955 +- name: intel-openmp + version: 2023.2.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.2.0-h57928b3_49496.conda + hash: + md5: f2e71622520883ffdbc379b13049534c + sha256: e9c3cab6b4534bcab0a31e843d28d73326312d6983b2098b91ed5f37af2c865b + optional: false + category: main + build: h57928b3_49496 + arch: x86_64 + subdir: win-64 + build_number: 49496 + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 2530876 + timestamp: 1690209568882 +- name: ipykernel + version: 6.25.2 + manager: conda + platform: win-64 + dependencies: + __win: '*' + comm: '>=0.1.1' + debugpy: '>=1.6.5' + ipython: '>=7.23.1' + jupyter_client: '>=6.1.12' + jupyter_core: '>=4.12,!=5.0.*' + matplotlib-inline: '>=0.1' + nest-asyncio: '*' + packaging: '*' + psutil: '*' + python: '>=3.8' + pyzmq: '>=20' + tornado: '>=6.1' + traitlets: '>=5.4.0' + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh60829e3_0.conda + hash: + md5: 387f16a39a2e57bff9de9bc0216baa09 + sha256: 8531e04e585db4fb95ba5152e7f6af0fa9be0b3e68a8c9e335e4a3585222db2c + optional: false + category: main + build: pyh60829e3_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 115123 + timestamp: 1693880680681 +- name: ipython + version: 8.15.0 + manager: conda + platform: win-64 + dependencies: + __win: '*' + backcall: '*' + colorama: '*' + decorator: '*' + exceptiongroup: '*' + jedi: '>=0.16' + matplotlib-inline: '*' + pickleshare: '*' + prompt_toolkit: '>=3.0.30,<3.1.0,!=3.0.37' + pygments: '>=2.4.0' + python: '>=3.9' + stack_data: '*' + traitlets: '>=5' + typing_extensions: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.15.0-pyh5737063_0.conda + hash: + md5: 1def12bdc65c8f7e27db22a8cc586adc + sha256: 594387bed59feb970084e21c26be1c5ad26adda144c6ffc893011384d1725d34 + optional: false + category: main + build: pyh5737063_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 589473 + timestamp: 1693580302805 +- name: isoduration + version: 20.11.0 + manager: conda + platform: win-64 + dependencies: + arrow: '>=0.15.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4cb68948e0b8429534380243d063a27a + sha256: 7bb5c4d994361022f47a807b5e7d101b3dce16f7dd8a0af6ffad9f479d346493 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17189 + timestamp: 1638811664194 +- name: isort + version: 5.12.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8,<4.0' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/isort-5.12.0-pyhd8ed1ab_1.conda + hash: + md5: 07ed3421bad60867234c7a9282ea39d4 + sha256: d34a62e33ac7acc8fd3167ceb0e2aee4e7974b94de263f52d752716429d95bcb + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 73326 + timestamp: 1675033987894 +- name: jaraco.classes + version: 3.3.0 + manager: conda + platform: win-64 + dependencies: + more-itertools: '*' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda + hash: + md5: e9f79248d30e942f7c358ff21a1790f5 + sha256: 14f5240c3834e1b784dd41a5a14392d9150dff62a74ae851f73e65d2e2bbd891 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11288 + timestamp: 1689112573324 +- name: jedi + version: 0.19.0 + manager: conda + platform: win-64 + dependencies: + parso: '>=0.8.0,<0.9.0' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.0-pyhd8ed1ab_0.conda + hash: + md5: 1cd7f70057cdffc10977b613fb75425d + sha256: d2d9e885cbc1efa63107b616588c61000063d4c223c0585962485bd016e77ce8 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 844518 + timestamp: 1690897091100 +- name: jinja2 + version: 3.1.2 + manager: conda + platform: win-64 + dependencies: + markupsafe: '>=2.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 101443 + timestamp: 1654302514195 +- name: joblib + version: 1.3.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda + hash: + md5: 4da50d410f553db77e62ab62ffaa1abc + sha256: 31e05d47970d956206188480b038829d24ac11fe8216409d8584d93d40233878 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 221200 + timestamp: 1691577306309 +- name: json5 + version: 0.9.14 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7,<4.0' + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda + hash: + md5: dac1dabba2b5a9d1aee175c5fcc7b436 + sha256: 41514104208c092959bef0713cbd795e72c535f2f939b7903d8c97809f2adaa7 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25003 + timestamp: 1688248468479 +- name: jsonpointer + version: '2.0' + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-2.0-py_0.tar.bz2 + hash: + md5: 07d85c22a3beb102a48cd123df84c2a6 + sha256: da279af2285d8f575a7f5652e83bf7f36155c4c63154e385a9d171efcc607bc1 + optional: false + category: main + build: py_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD 3-Clause + license_family: BSD + noarch: python + size: 8737 +- name: jsonschema + version: 4.19.0 + manager: conda + platform: win-64 + dependencies: + attrs: '>=22.2.0' + importlib_resources: '>=1.4.0' + jsonschema-specifications: '>=2023.3.6' + pkgutil-resolve-name: '>=1.3.10' + python: '>=3.8' + referencing: '>=0.28.4' + rpds-py: '>=0.7.1' + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.0-pyhd8ed1ab_1.conda + hash: + md5: d442886dffcee45604595fea2ad3a181 + sha256: 4c1f9ffa8056fc96d292d119746d5d87e2d0308cd19b063943efbde05e0accdf + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 71242 + timestamp: 1691761522529 +- name: jsonschema-spec + version: 0.1.3 + manager: conda + platform: win-64 + dependencies: + jsonschema: '>=4.0.0,<5.0.0' + pathable: '>=0.4.1,<0.5.0' + python: '>=3.6' + pyyaml: '>=5.1' + typing_extensions: '>=4.3.0,<5.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-spec-0.1.3-pyhd8ed1ab_0.conda + hash: + md5: 186b7c08b656a3bdb4eb18d5480c4cc7 + sha256: d9c4fad49fd83d49f8b588aa83fb8bfdd9e40b83f5ae804fa683f20f38dc10f0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 16380 + timestamp: 1678889833767 +- name: jsonschema-specifications + version: 2023.7.1 + manager: conda + platform: win-64 + dependencies: + importlib_resources: '>=1.4.0' + python: '>=3.8' + referencing: '>=0.25.0' + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda + hash: + md5: 7c27ea1bdbe520bb830dcadd59f55cbf + sha256: 7b0061e106674f27cc718f79a095e90a5667a3635ec6626dd23b3be0fd2bfbdc + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15296 + timestamp: 1689701341221 +- name: jsonschema-with-format-nongpl + version: 4.19.0 + manager: conda + platform: win-64 + dependencies: + fqdn: '*' + idna: '*' + isoduration: '*' + jsonpointer: '>1.13' + jsonschema: '>=4.19.0,<4.19.1.0a0' + python: '*' + rfc3339-validator: '*' + rfc3986-validator: '>0.1.0' + uri-template: '*' + webcolors: '>=1.11' + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.0-pyhd8ed1ab_1.conda + hash: + md5: d273b30bcf4db0ef6b1195b3b61b3d68 + sha256: fae13283e5c4b1e639b76348e3d9441bde21685c8a8c89f6d3f364e524ed5029 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 7325 + timestamp: 1691761541918 +- name: jupyter-lsp + version: 2.2.0 + manager: conda + platform: win-64 + dependencies: + importlib-metadata: '>=4.8.3' + jupyter_server: '>=1.1.2' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda + hash: + md5: 38589f4104d11f2a59ff01a9f4e3bfb3 + sha256: 16fc7b40024adece716ba7227e5c123a2deccc13f946a10d9a3270493908d11c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 52525 + timestamp: 1685453825227 +- name: jupyter_client + version: 8.3.1 + manager: conda + platform: win-64 + dependencies: + importlib_metadata: '>=4.8.3' + jupyter_core: '>=4.12,!=5.0.*' + python: '>=3.8' + python-dateutil: '>=2.8.2' + pyzmq: '>=23.0' + tornado: '>=6.2' + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.3.1-pyhd8ed1ab_0.conda + hash: + md5: b7cc0981484fcb6390e6d341e55618b3 + sha256: f8b679e90056271abd9bbb2233198159de60777fe4c06818757552bf5be48fe8 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 105112 + timestamp: 1693317650877 +- name: jupyter_core + version: 5.3.1 + manager: conda + platform: win-64 + dependencies: + platformdirs: '>=2.5' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + pywin32: '>=300' + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.3.1-py311h1ea47a8_0.conda + hash: + md5: 6754e6f5ead86225c8c78825ff0398c9 + sha256: 049eeb389e8caa3c61c26c1458d905335d4fc4d0af7a7af2cadcaeb537e8edce + optional: false + category: main + build: py311h1ea47a8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 133217 + timestamp: 1686776376996 +- name: jupyter_events + version: 0.7.0 + manager: conda + platform: win-64 + dependencies: + jsonschema-with-format-nongpl: '>=4.18.0' + python: '>=3.8' + python-json-logger: '>=2.0.4' + pyyaml: '>=5.3' + referencing: '*' + rfc3339-validator: '*' + rfc3986-validator: '>=0.1.1' + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.7.0-pyhd8ed1ab_2.conda + hash: + md5: 088f0493279a7f7eebd514df47d65851 + sha256: df230c068714f71c2b00fd3acee7e5c3ae128a5c23279d146827fdba55977823 + optional: false + category: main + build: pyhd8ed1ab_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 21381 + timestamp: 1691506087003 +- name: jupyter_server + version: 2.7.3 + manager: conda + platform: win-64 + dependencies: + anyio: '>=3.1.0' + argon2-cffi: '*' + jinja2: '*' + jupyter_client: '>=7.4.4' + jupyter_core: '>=4.12,!=5.0.*' + jupyter_events: '>=0.6.0' + jupyter_server_terminals: '*' + nbconvert-core: '>=6.4.4' + nbformat: '>=5.3.0' + overrides: '*' + packaging: '*' + prometheus_client: '*' + python: '>=3.8' + pyzmq: '>=24' + send2trash: '>=1.8.2' + terminado: '>=0.8.3' + tornado: '>=6.2.0' + traitlets: '>=5.6.0' + websocket-client: '*' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.7.3-pyhd8ed1ab_0.conda + hash: + md5: 969249eb7c2f7a9b820520a355dc7d04 + sha256: c90bc6f842a37dd99e32b35f0f40214040756949fe5a7abc1256a227bb8ba90e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 316935 + timestamp: 1693487715023 +- name: jupyter_server_terminals + version: 0.4.4 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + terminado: '>=0.8.3' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda + hash: + md5: 7c0965e1d4a0ee1529e8eaa03a78a5b3 + sha256: 9f4c5fef9beef9fceed628db7a10b888f3308b37ae257ad3d50046088317ebf1 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18974 + timestamp: 1673491600853 +- name: jupyterlab + version: 4.0.5 + manager: conda + platform: win-64 + dependencies: + async-lru: '>=1.0.0' + importlib_metadata: '>=4.8.3' + importlib_resources: '>=1.4' + ipykernel: '*' + jinja2: '>=3.0.3' + jupyter-lsp: '>=2.0.0' + jupyter_core: '*' + jupyter_server: '>=2.4.0,<3' + jupyterlab_server: '>=2.19.0,<3' + notebook-shim: '>=0.2' + packaging: '*' + python: '>=3.8' + tomli: '*' + tornado: '>=6.2.0' + traitlets: '*' + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.5-pyhd8ed1ab_0.conda + hash: + md5: fce8108e7dfb3622873a85e495a72dda + sha256: fc4409ff093eedb602231d2d7848e20d0f7dab1b01a05a42c06de44ba4f0c62d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 6000195 + timestamp: 1692016028799 +- name: jupyterlab_pygments + version: 0.2.2 + manager: conda + platform: win-64 + dependencies: + pygments: '>=2.4.1,<3' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 243f63592c8e449f40cd42eb5cf32f40 + sha256: 08453e09d5a6bbaeeca839553a5dfd7a377a97550efab96019c334a8042f54f5 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 17410 + timestamp: 1649936689608 +- name: jupyterlab_server + version: 2.25.0 + manager: conda + platform: win-64 + dependencies: + babel: '>=2.10' + importlib-metadata: '>=4.8.3' + jinja2: '>=3.0.3' + json5: '>=0.9.0' + jsonschema: '>=4.18' + jupyter_server: '>=1.21,<3' + packaging: '>=21.3' + python: '>=3.8' + requests: '>=2.31' + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda + hash: + md5: a52834fa7e3d12abc5efdf06b2097a05 + sha256: 608a878d08e0f4f51dd9a61eaead7c0e22d07f48aad06e3e2f6d6f1d0a929746 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - openapi-core >=0.18.0,<0.19.0 + license: BSD-3-Clause + noarch: python + size: 48289 + timestamp: 1694532412609 +- name: kealib + version: 1.5.1 + manager: conda + platform: win-64 + dependencies: + hdf5: '>=1.14.2,<1.14.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.1-ha10e780_5.conda + hash: + md5: f29f55df810b3c34162ea6bfe5ef69ed + sha256: e28edb993293707a46ed56d5f8da62c7c2af9dea95e693fd28557ed686f683a3 + optional: false + category: main + build: ha10e780_5 + arch: x86_64 + subdir: win-64 + build_number: 5 + license: MIT + license_family: MIT + size: 134076 + timestamp: 1692633826312 +- name: keyring + version: 24.2.0 + manager: conda + platform: win-64 + dependencies: + importlib_metadata: '>=4.11.4' + jaraco.classes: '*' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + pywin32-ctypes: '>=0.2.0' + url: https://conda.anaconda.org/conda-forge/win-64/keyring-24.2.0-py311h1ea47a8_0.conda + hash: + md5: 6a5239529cb5af3437bdd24c1082c2eb + sha256: 6f49ddde7f3db90fd7c8e8d70cb282835584ddb3140f74b4404005d5018f014f + optional: false + category: main + build: py311h1ea47a8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 94307 + timestamp: 1687713271929 +- name: kiwisolver + version: 1.4.5 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.5-py311h005e61a_0.conda + hash: + md5: a4b9b12c7ca192b7770633717e856b1c + sha256: 9b429724c6eb06c603f2f0ccb38aca9cc4e7dddaf2ee00ea12a5b902bce9f7fa + optional: false + category: main + build: py311h005e61a_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 56025 + timestamp: 1692884212835 +- name: krb5 + version: 1.21.2 + manager: conda + platform: win-64 + dependencies: + openssl: '>=3.1.2,<4.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda + hash: + md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 + sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b + optional: false + category: main + build: heb0366b_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 710894 + timestamp: 1692098129546 +- name: lazy-object-proxy + version: 1.9.0 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/lazy-object-proxy-1.9.0-py311ha68e1ae_0.conda + hash: + md5: 4fb36c4e4666aa1f81e6219adb5beee1 + sha256: 078d04db10f186006325d06c7640ba6ced87ae21269e7363844b0adebdab3655 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 36090 + timestamp: 1672879415584 +- name: lcms2 + version: '2.15' + manager: conda + platform: win-64 + dependencies: + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libtiff: '>=4.5.0,<4.6.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-h3e3b177_1.conda + hash: + md5: a76c36ad1b4b87f038d67890122d08ec + sha256: 24179aae324bcfa65ec983a389c5e048bd6b174f63afedf4cdd654da78cf9558 + optional: false + category: main + build: h3e3b177_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 499079 + timestamp: 1678213836010 +- name: lerc + version: 4.0.0 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30037' + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + hash: + md5: 1900cb3cab5055833cfddb0ba233b074 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + optional: false + category: main + build: h63175ca_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 194365 + timestamp: 1657977692274 +- name: libabseil + version: '20230802.0' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libabseil-20230802.0-cxx17_h63175ca_3.conda + hash: + md5: 02043101f036a28bac6074b32510a075 + sha256: dd0eddb469bfd892871f0718336e546b841a6150d732a9a47478a7eb70217c16 + optional: false + category: main + build: cxx17_h63175ca_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + constrains: + - abseil-cpp =20230802.0 + - libabseil-static =20230802.0=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1758310 + timestamp: 1694305459883 +- name: libaec + version: 1.0.6 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda + hash: + md5: f98474a8245f55f4a273889dbe7bf193 + sha256: 441f580f90279bd62bd27fb82d0bbbb2c2d9f850fcc4c8781f199c5287cd1499 + optional: false + category: main + build: h63175ca_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 34719 + timestamp: 1673799892542 +- name: libarchive + version: 3.6.2 + manager: conda + platform: win-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libxml2: '>=2.11.3,<2.12.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' + url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.6.2-h6f8411a_1.conda + hash: + md5: 314124476882f64abc20b76148d2909b + sha256: 4699b9439453cea6a28c94eb6226929adcf4fbe3a9a635f7a7a229ed903c8987 + optional: false + category: main + build: h6f8411a_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 960678 + timestamp: 1684325145661 +- name: libarrow + version: 13.0.0 + manager: conda + platform: win-64 + dependencies: + aws-crt-cpp: '>=0.23.1,<0.23.2.0a0' + aws-sdk-cpp: '>=1.11.156,<1.11.157.0a0' + bzip2: '>=1.0.8,<2.0a0' + libabseil: '>=20230802.0,<20230803.0a0' + libbrotlidec: '>=1.1.0,<1.2.0a0' + libbrotlienc: '>=1.1.0,<1.2.0a0' + libcrc32c: '>=1.1.2,<1.2.0a0' + libcurl: '>=8.2.1,<9.0a0' + libgoogle-cloud: '>=2.12.0,<2.13.0a0' + libgrpc: '>=1.57.0,<1.58.0a0' + libprotobuf: '>=4.23.4,<4.23.5.0a0' + libthrift: '>=0.19.0,<0.19.1.0a0' + libutf8proc: '>=2.8.0,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openssl: '>=3.1.2,<4.0a0' + orc: '>=1.9.0,<1.9.1.0a0' + re2: '>=2023.3.2,<2023.3.3.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' + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-13.0.0-h1e3473c_4_cpu.conda + hash: + md5: b114d032c51f2dd0bcbee92bdf024d38 + sha256: bec56bad9e22ba287e362f71efb99fda54a5996b201303df83cb8d717773f7db + optional: false + category: main + build: h1e3473c_4_cpu + arch: x86_64 + subdir: win-64 + build_number: 4 + constrains: + - apache-arrow-proc =*=cpu + - arrow-cpp =13.0.0 + - parquet-cpp <0.0a0 + license: Apache-2.0 + size: 16611710 + timestamp: 1694442540866 +- name: libblas + version: 3.9.0 + manager: conda + platform: win-64 + dependencies: + mkl: ==2022.1.0 h6a75c08_874 + url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-18_win64_mkl.conda + hash: + md5: b241da5b7a888f72bb3c3e82747334f4 + sha256: 5aef8d69197108f3c320a5d4ad4d19ab9c809cdbbf731c7ab988c227de42d6b5 + optional: false + category: main + build: 18_win64_mkl + arch: x86_64 + subdir: win-64 + build_number: 18 + constrains: + - liblapacke 3.9.0 18_win64_mkl + - blas * mkl + - libcblas 3.9.0 18_win64_mkl + - liblapack 3.9.0 18_win64_mkl + license: BSD-3-Clause + license_family: BSD + size: 3656012 + timestamp: 1693952074690 +- name: libbrotlicommon + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_0.conda + hash: + md5: a10abcccb9339c0bfbf7655e2643f6ac + sha256: 4dc630bf369fa581f7e86ebdacd7edd8155487c37c1c184a5a416d84b63f22eb + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 70754 + timestamp: 1693584092412 +- name: libbrotlidec + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + libbrotlicommon: ==1.1.0 hcfcfb64_0 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_0.conda + hash: + md5: b694da94a046204c19b25673de87f796 + sha256: c896165c9be1b28c54d4d38c4dd35eb5b4ad30a72fc58884db4e10bb06b062e7 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 32828 + timestamp: 1693584129874 +- name: libbrotlienc + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + libbrotlicommon: ==1.1.0 hcfcfb64_0 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_0.conda + hash: + md5: 90b031a15d678424b100444e9959480b + sha256: f7f5e284d6f4e95ad031f31da13fa33ac3952c58879e4722a68c27d8e41dbf1a + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 246157 + timestamp: 1693584168010 +- name: libcblas + version: 3.9.0 + manager: conda + platform: win-64 + dependencies: + libblas: ==3.9.0 18_win64_mkl + url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-18_win64_mkl.conda + hash: + md5: fb0b514194c14342a97dfe31a41d60fc + sha256: d5f60ed6508b3889a77caf5ff2b66203714e45ec4eea6e5cdb12fe6e8ef2bbdb + optional: false + category: main + build: 18_win64_mkl + arch: x86_64 + subdir: win-64 + build_number: 18 + constrains: + - liblapacke 3.9.0 18_win64_mkl + - blas * mkl + - liblapack 3.9.0 18_win64_mkl + license: BSD-3-Clause + license_family: BSD + size: 3655770 + timestamp: 1693952109193 +- name: libclang + version: 15.0.7 + manager: conda + platform: win-64 + dependencies: + libclang13: ==15.0.7 default_h77d9078_3 + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libclang-15.0.7-default_h77d9078_3.conda + hash: + md5: 71c8b6249c9e9e18b3aec705e95c1040 + sha256: d54ad3cc60469f3c885cef45acd7216bab9d941dec8f37e75ece48b9baba145b + optional: false + category: main + build: default_h77d9078_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 147881 + timestamp: 1690553583920 +- name: libclang13 + version: 15.0.7 + manager: conda + platform: win-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libclang13-15.0.7-default_h77d9078_3.conda + hash: + md5: ba26634d038b91466bb4242c8b5e0cfa + sha256: 9cff68d1bd3b1b956133f9f5f35d475014402f3f4e7956047bf3a70f2107f11c + optional: false + category: main + build: default_h77d9078_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21900199 + timestamp: 1690553341399 +- name: libcrc32c + version: 1.1.2 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 + hash: + md5: cd4cc2d0c610c8cb5419ccc979f2d6ce + sha256: 75e60fbe436ba8a11c170c89af5213e8bec0418f88b7771ab7e3d9710b70c54e + optional: false + category: main + build: h0e60522_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 25694 + timestamp: 1633684287072 +- name: libcurl + version: 8.2.1 + manager: conda + platform: win-64 + dependencies: + krb5: '>=1.21.1,<1.22.0a0' + libssh2: '>=1.11.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.2.1-hd5e4a3a_0.conda + hash: + md5: 2f5d4a975490edc04c552a54d29018d4 + sha256: 106d110baa10d4bc6e63976cabff0ff2f74f5119fe70cab5c73050afcab8fdd9 + optional: false + category: main + build: hd5e4a3a_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: curl + license_family: MIT + size: 314688 + timestamp: 1690401990723 +- name: libdeflate + version: '1.18' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.18-hcfcfb64_0.conda + hash: + md5: 493acc14c556ef6f1d13ba00b099c679 + sha256: 9a9a1a6e47777c9bf6086d88f6567ed3fc32d4f849b3d42b51bbf0b9fa4727f7 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 152345 + timestamp: 1679647873728 +- name: libevent + version: 2.1.12 + manager: conda + platform: win-64 + dependencies: + openssl: '>=3.1.1,<4.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda + hash: + md5: 25efbd786caceef438be46da78a7b5ef + sha256: af03882afb7a7135288becf340c2f0cf8aa8221138a9a7b108aaeb308a486da1 + optional: false + category: main + build: h3671451_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 410555 + timestamp: 1685726568668 +- name: libexpat + version: 2.5.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda + hash: + md5: 636cc3cbbd2e28bcfd2f73b2044aac2c + sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf + optional: false + category: main + build: h63175ca_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 138689 + timestamp: 1680190844101 +- name: libffi + version: 3.4.2 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + hash: + md5: 2c96d1b6915b408893f9472569dee135 + sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 + optional: false + category: main + build: h8ffe710_5 + arch: x86_64 + subdir: win-64 + build_number: 5 + license: MIT + license_family: MIT + size: 42063 + timestamp: 1636489106777 +- name: libgdal + version: 3.7.1 + manager: conda + platform: win-64 + dependencies: + blosc: '>=1.21.4,<2.0a0' + cfitsio: '>=4.3.0,<4.3.1.0a0' + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.12.0,<3.12.1.0a0' + geotiff: '>=1.7.1,<1.8.0a0' + hdf4: '>=4.2.15,<4.2.16.0a0' + hdf5: '>=1.14.2,<1.14.3.0a0' + icu: '>=73.2,<74.0a0' + kealib: '>=1.5.1,<1.6.0a0' + lerc: '>=4.0.0,<5.0a0' + libarchive: '>=3.6.2,<3.7.0a0' + libcurl: '>=8.2.1,<9.0a0' + libdeflate: '>=1.18,<1.19.0a0' + libexpat: '>=2.5.0,<3.0a0' + libiconv: '>=1.17,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libkml: '>=1.3.0,<1.4.0a0' + libnetcdf: '>=4.9.2,<4.9.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libpq: '>=15.4,<16.0a0' + libspatialite: '>=5.0.1,<5.1.0a0' + libsqlite: '>=3.43.0,<4.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libwebp-base: '>=1.3.1,<2.0a0' + libxml2: '>=2.11.5,<2.12.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openjpeg: '>=2.5.0,<3.0a0' + openssl: '>=3.1.2,<4.0a0' + pcre2: '>=10.40,<10.41.0a0' + poppler: '>=23.8.0,<23.9.0a0' + postgresql: '*' + proj: '>=9.2.1,<9.2.2.0a0' + tiledb: '>=2.16,<2.17.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + xerces-c: '>=3.2.4,<3.3.0a0' + xz: '>=5.2.6,<6.0a0' + zstd: '>=1.5.5,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libgdal-3.7.1-hb1fd9af_9.conda + hash: + md5: c48060ed7cb04a79d3b41245c3bec222 + sha256: 6162d73d911a3244729f5e1bab0905dcbbaf9382685f57f9ef36a35e98ec27e4 + optional: false + category: main + build: hb1fd9af_9 + arch: x86_64 + subdir: win-64 + build_number: 9 + license: MIT + license_family: MIT + size: 8489839 + timestamp: 1693490845903 +- name: libglib + version: 2.78.0 + manager: conda + platform: win-64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pcre2: '>=10.40,<10.41.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.78.0-he8f3873_0.conda + hash: + md5: 25f5b3502a82ac425c72c3bc0efbecb5 + sha256: 1417a309e40a2fae41e18170a74bface2ab67fb0d6905caeb34f91c6840edacc + optional: false + category: main + build: he8f3873_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - glib 2.78.0 *_0 + license: LGPL-2.1-or-later + size: 2637097 + timestamp: 1694381512139 +- name: libgoogle-cloud + version: 2.12.0 + manager: conda + platform: win-64 + dependencies: + libabseil: '>=20230802.0,<20230803.0a0' + libcrc32c: '>=1.1.2,<1.2.0a0' + libcurl: '>=8.2.1,<9.0a0' + libgrpc: '>=1.57.0,<1.58.0a0' + libprotobuf: '>=4.23.4,<4.23.5.0a0' + openssl: '>=3.1.2,<4.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.12.0-h0a0a397_2.conda + hash: + md5: 7118be3d559211085bf62e0f08070e5b + sha256: 017b1a77c5edb91e54491014f66c0a96f2a230077e19033b390981d5b9996590 + optional: false + category: main + build: h0a0a397_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + constrains: + - google-cloud-cpp 2.12.0 *_2 + license: Apache-2.0 + license_family: Apache + size: 13320 + timestamp: 1694367447260 +- name: libgrpc + version: 1.57.0 + manager: conda + platform: win-64 + dependencies: + c-ares: '>=1.19.1,<2.0a0' + libabseil: '>=20230802.0,<20230803.0a0' + libprotobuf: '>=4.23.4,<4.23.5.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.2,<4.0a0' + re2: '>=2023.3.2,<2023.3.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.57.0-h550f6bd_1.conda + hash: + md5: e0742a36421bb36128ab4b305a27a4ed + sha256: bc90d0f9233f98257f4ebdb551fa2da8a49fb7193b7c7462b1afc19b062b89ff + optional: false + category: main + build: h550f6bd_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + constrains: + - grpc-cpp =1.57.0 + license: Apache-2.0 + license_family: APACHE + size: 12967454 + timestamp: 1691796762776 +- name: libhwloc + version: 2.9.2 + manager: conda + platform: win-64 + dependencies: + libxml2: '>=2.11.5,<2.12.0a0' + pthreads-win32: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.2-default_haede6df_1009.conda + hash: + md5: 90c9f598d15fc285c12f8c7d4c397f2e + sha256: c19abcb7646a1437eeb21ac3275e3f574f2bd75a8d2e51be0cbe2e1c9d3eaefe + optional: false + category: main + build: default_haede6df_1009 + arch: x86_64 + subdir: win-64 + build_number: 1009 + license: BSD-3-Clause + license_family: BSD + size: 2572644 + timestamp: 1693334608843 +- name: libiconv + version: '1.17' + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 + hash: + md5: 050119977a86e4856f0416e2edcf81bb + sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 + optional: false + category: main + build: h8ffe710_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: GPL and LGPL + size: 714518 + timestamp: 1652702326553 +- name: libjpeg-turbo + version: 2.1.5.1 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-2.1.5.1-hcfcfb64_1.conda + hash: + md5: 9503c6648d5692f1f26aabca7156f809 + sha256: 27e49e07f2129cd39c1c34ac882a0e89f55d597d54c35fab362bcd0a37b532a2 + optional: false + category: main + build: hcfcfb64_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 688116 + timestamp: 1694566907689 +- name: libkml + version: 1.3.0 + manager: conda + platform: win-64 + dependencies: + boost-cpp: '>=1.78.0,<1.78.1.0a0' + expat: '>=2.4.8,<3.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + zlib: '>=1.2.12,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-hf2ab4e4_1015.tar.bz2 + hash: + md5: 1f50b25e87cefda820cb71fb643bc021 + sha256: 4d136a0f5091dc988be0bd5648a36eb27df227e14f433ea2f5f022ba17137b42 + optional: false + category: main + build: hf2ab4e4_1015 + arch: x86_64 + subdir: win-64 + build_number: 1015 + license: BSD-3-Clause + license_family: BSD + size: 3024452 + timestamp: 1662843281735 +- name: liblapack + version: 3.9.0 + manager: conda + platform: win-64 + dependencies: + libblas: ==3.9.0 18_win64_mkl + url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-18_win64_mkl.conda + hash: + md5: 82117ef735a916ace2df6f2de4df4824 + sha256: f90d96695938659fad4dd47d92dbeebff4a3824979bfb1aac33c8287a83e9d23 + optional: false + category: main + build: 18_win64_mkl + arch: x86_64 + subdir: win-64 + build_number: 18 + constrains: + - liblapacke 3.9.0 18_win64_mkl + - blas * mkl + - libcblas 3.9.0 18_win64_mkl + license: BSD-3-Clause + license_family: BSD + size: 3655780 + timestamp: 1693952143445 +- name: libnetcdf + version: 4.9.2 + manager: conda + platform: win-64 + dependencies: + blosc: '>=1.21.4,<2.0a0' + bzip2: '>=1.0.8,<2.0a0' + hdf4: '>=4.2.15,<4.2.16.0a0' + hdf5: '>=1.14.2,<1.14.3.0a0' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=8.2.1,<9.0a0' + libxml2: '>=2.11.5,<2.12.0a0' + libzip: '>=1.10.1,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + zlib: '*' + zstd: '>=1.5.5,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_h8284064_112.conda + hash: + md5: d13288269ee4de9079261a31028f9954 + sha256: 6694fb1a949893178c3e0c7df648f5b9875da5ba9b1d76ec5d9a5bac6647dfc6 + optional: false + category: main + build: nompi_h8284064_112 + arch: x86_64 + subdir: win-64 + build_number: 112 + license: MIT + license_family: MIT + size: 625332 + timestamp: 1693582445195 +- name: libogg + version: 1.3.4 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 + hash: + md5: 04286d905a0dcb7f7d4a12bdfe02516d + sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 + optional: false + category: main + build: h8ffe710_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 35187 + timestamp: 1610382533961 +- name: libpng + version: 1.6.39 + manager: conda + platform: win-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda + hash: + md5: ab6febdb2dbd9c00803609079db4de71 + sha256: 1f139a72109366ba1da69f5bdc569b0e6783f887615807c02d7bfcc2c7575067 + optional: false + category: main + build: h19919ed_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: zlib-acknowledgement + size: 343883 + timestamp: 1669076173145 +- name: libpq + version: '15.4' + manager: conda + platform: win-64 + dependencies: + krb5: '>=1.21.1,<1.22.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' + url: https://conda.anaconda.org/conda-forge/win-64/libpq-15.4-h43585b0_0.conda + hash: + md5: 02166605eab22e1b9ae2ba2b3a334b06 + sha256: c5b70e4e01676087b4346595684bfd8d31b25a6d094d07f49f3783f14e8295ce + optional: false + category: main + build: h43585b0_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: PostgreSQL + size: 3541125 + timestamp: 1691693575546 +- name: libprotobuf + version: 4.23.4 + manager: conda + platform: win-64 + dependencies: + libabseil: '>=20230802.0,<20230803.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.23.4-hb8276f3_6.conda + hash: + md5: 1b9498bb8e615cfc5cb443f216b6ec1c + sha256: 505137db3057884783bf4a8e40622e29fa8c80e1425d93a94fa478f06dcf6750 + optional: false + category: main + build: hb8276f3_6 + arch: x86_64 + subdir: win-64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 5205221 + timestamp: 1694477777276 +- name: librttopo + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + geos: '>=3.12.0,<3.12.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-h92c5fdb_14.conda + hash: + md5: 9d3f0c286ea2df09b2c0aefbd63769c0 + sha256: e693468c519bea531c4fa3edccb906c1de5ac35f5630a1745230b5f17ab88104 + optional: false + category: main + build: h92c5fdb_14 + arch: x86_64 + subdir: win-64 + build_number: 14 + license: GPL-2.0-or-later + license_family: GPL + size: 406368 + timestamp: 1687974615867 +- name: libsodium + version: 1.0.18 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2 + hash: + md5: 5c1fb45b5e2912c19098750ae8a32604 + sha256: ecc463f0ab6eaf6bc5bd6ff9c17f65595de6c7a38db812222ab8ffde0d3f4bc2 + optional: false + category: main + build: h8d14728_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: ISC + size: 713431 + timestamp: 1605135918736 +- name: libspatialindex + version: 1.9.3 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h39d44d4_4.tar.bz2 + hash: + md5: 51c172496e828258d04eba9971f2af1a + sha256: 88af7e2c9c5fc38be7cecd6ed41abbbb9cf5924dedb9c31f9c5426cb715753bb + optional: false + category: main + build: h39d44d4_4 + arch: x86_64 + subdir: win-64 + build_number: 4 + license: MIT + license_family: MIT + size: 447231 + timestamp: 1626973005831 +- name: libspatialite + version: 5.0.1 + manager: conda + platform: win-64 + dependencies: + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.12.0,<3.12.1.0a0' + librttopo: '>=1.1.0,<1.2.0a0' + libsqlite: '>=3.42.0,<4.0a0' + libxml2: '>=2.11.4,<2.12.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + proj: '>=9.2.1,<9.2.2.0a0' + sqlite: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + zlib: '*' + url: https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.0.1-hc49ff46_28.conda + hash: + md5: 39691183cf046404a056ec2b3a002232 + sha256: eeea2854b3ecf008b6e641610ee6571e4c9551d1af95a8ad290b9dd6a87705d3 + optional: false + category: main + build: hc49ff46_28 + arch: x86_64 + subdir: win-64 + build_number: 28 + license: MPL-1.1 + license_family: MOZILLA + size: 8265747 + timestamp: 1688003490341 +- name: libsqlite + version: 3.43.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.43.0-hcfcfb64_0.conda + hash: + md5: 16c6f482e70cb3da41d0bee5d49c6bf3 + sha256: d79128a279c8e8b4afeef5cfe9d4302a2fd65b1af3973732d92a7cc396d5332f + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Unlicense + size: 846526 + timestamp: 1692911612959 +- name: libssh2 + version: 1.11.0 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + hash: + md5: dc262d03aae04fe26825062879141a41 + sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec + optional: false + category: main + build: h7dfc565_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 266806 + timestamp: 1685838242099 +- name: libthrift + version: 0.19.0 + manager: conda + platform: win-64 + dependencies: + libevent: '>=2.1.12,<2.1.13.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' + url: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-h06f6336_0.conda + hash: + md5: 6f1d047d64a03e07e427e0562e653413 + sha256: 32f8fe6a63657794f0af8fc3f05a79758cb1f36c8ac73710090d2d7a306852ea + optional: false + category: main + build: h06f6336_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 613304 + timestamp: 1693740401956 +- name: libtiff + version: 4.5.1 + manager: conda + platform: win-64 + dependencies: + lerc: '>=4.0.0,<5.0a0' + libdeflate: '>=1.18,<1.19.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.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' + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.1-h6c8260b_1.conda + hash: + md5: 5faa8734cee2590b6d3615e06bfce4f8 + sha256: 46cd425318c5318c9c78c985776fa64746d1812c19f14284876f1aad4f9ee044 + optional: false + category: main + build: h6c8260b_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: HPND + size: 952982 + timestamp: 1692897566567 +- name: libutf8proc + version: 2.8.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 + hash: + md5: 076894846fe9f068f91c57d158c90cba + sha256: 6efa83e3f2fb9acaf096a18d21d0f679d110934798348c5defc780d4b759a76c + optional: false + category: main + build: h82a8f57_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 104389 + timestamp: 1667316359211 +- name: libvorbis + version: 1.3.7 + manager: conda + platform: win-64 + dependencies: + libogg: '>=1.3.4,<1.4.0a0' + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 + hash: + md5: e1a22282de0169c93e4ffe6ce6acc212 + sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a + optional: false + category: main + build: h0e60522_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 273721 + timestamp: 1610610022421 +- name: libwebp-base + version: 1.3.1 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.1-hcfcfb64_0.conda + hash: + md5: f89e765213cac556a8ed72ba8c1b5071 + sha256: 1652438917a14bf67c1dc5a94a431f45fece7837c016a7144979a50924faa1b7 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - libwebp 1.3.1 + license: BSD-3-Clause + license_family: BSD + size: 268638 + timestamp: 1688047352914 +- name: libxcb + version: '1.15' + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs: '*' + m2w64-gcc-libs-core: '*' + pthread-stubs: '*' + xorg-libxau: '*' + xorg-libxdmcp: '*' + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda + hash: + md5: 090d91b69396f14afef450c285f9758c + sha256: d01322c693580f53f8d07a7420cd6879289f5ddad5531b372c3efd1c37cac3bf + optional: false + category: main + build: hcd874cb_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 969788 + timestamp: 1682083087243 +- name: libxml2 + version: 2.11.5 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.11.5-hc3477c8_1.conda + hash: + md5: 27974f880a010b1441093d9f737a949f + sha256: ad3b5a510be2c5f9fe90b2c20e10adb135717304bcb3a197f256feb48d713d99 + optional: false + category: main + build: hc3477c8_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 1600640 + timestamp: 1692960798126 +- name: libzip + version: 1.10.1 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/libzip-1.10.1-h1d365fa_3.conda + hash: + md5: 5c629cd12d89e2856c17b1dc5fcf44a4 + sha256: 221698b52dd7a3dcfc67ff9460e9c8649fc6c86506a2a2ab6f57b97e7489bb9f + optional: false + category: main + build: h1d365fa_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + size: 146434 + timestamp: 1694417117772 +- name: libzlib + version: 1.2.13 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + hash: + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 + optional: false + category: main + build: hcfcfb64_5 + arch: x86_64 + subdir: win-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 55800 + timestamp: 1686575452215 +- name: lz4-c + version: 1.9.4 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + hash: + md5: e34720eb20a33fc3bfb8451dd837ab7a + sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 134235 + timestamp: 1674728465431 +- name: lzo + version: '2.10' + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-he774522_1000.tar.bz2 + hash: + md5: d5cf4b7eaa52316f135eed9e8548ad57 + sha256: ff064e34d3cad829f1e31f2d26125b61d20ba8d3771f8f5337069027b8e3fab4 + optional: false + category: main + build: he774522_1000 + arch: x86_64 + subdir: win-64 + build_number: 1000 + license: GPL v2+ + license_family: GPL2 + size: 170192 + timestamp: 1597682500084 +- name: m2w64-gcc-libgfortran + version: 5.3.0 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs-core: '*' + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + hash: + md5: 066552ac6b907ec6d72c0ddab29050dc + sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 + optional: false + category: main + build: '6' + arch: x86_64 + subdir: win-64 + build_number: 6 + license: GPL, LGPL, FDL, custom + size: 350687 + timestamp: 1608163451316 +- name: m2w64-gcc-libs + version: 5.3.0 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libgfortran: '*' + m2w64-gcc-libs-core: '*' + m2w64-gmp: '*' + m2w64-libwinpthread-git: '*' + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + hash: + md5: fe759119b8b3bfa720b8762c6fdc35de + sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa + optional: false + category: main + build: '7' + arch: x86_64 + subdir: win-64 + build_number: 7 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 532390 + timestamp: 1608163512830 +- name: m2w64-gcc-libs-core + version: 5.3.0 + manager: conda + platform: win-64 + dependencies: + m2w64-gmp: '*' + m2w64-libwinpthread-git: '*' + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + hash: + md5: 4289d80fb4d272f1f3b56cfe87ac90bd + sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 + optional: false + category: main + build: '7' + arch: x86_64 + subdir: win-64 + build_number: 7 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 219240 + timestamp: 1608163481341 +- name: m2w64-gmp + version: 6.1.0 + manager: conda + platform: win-64 + dependencies: + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + hash: + md5: 53a1c73e1e3d185516d7e3af177596d9 + sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 + optional: false + category: main + build: '2' + arch: x86_64 + subdir: win-64 + build_number: 2 + license: LGPL3 + size: 743501 + timestamp: 1608163782057 +- name: m2w64-libwinpthread-git + version: 5.0.0.4634.697f757 + manager: conda + platform: win-64 + dependencies: + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + hash: + md5: 774130a326dee16f1ceb05cc687ee4f0 + sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 + optional: false + category: main + build: '2' + arch: x86_64 + subdir: win-64 + build_number: 2 + license: MIT, BSD + size: 31928 + timestamp: 1608166099896 +- name: mapclassify + version: 2.5.0 + manager: conda + platform: win-64 + dependencies: + networkx: '*' + numpy: '>=1.3' + pandas: '>=1.0' + python: '>=3.6' + scikit-learn: '*' + scipy: '>=1.0' + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.5.0-pyhd8ed1ab_1.conda + hash: + md5: db1aeaff6e248db425e049feffded7a9 + sha256: 78aadbd9953976678b6e3298ac26a63cf9390a8794db3ff71f3fe5b6d13a35ca + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 38836 + timestamp: 1673861651847 +- name: markdown-it-py + version: 3.0.0 + manager: conda + platform: win-64 + dependencies: + mdurl: '>=0.1,<1' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + hash: + md5: 93a8e71256479c62074356ef6ebf501b + sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 64356 + timestamp: 1686175179621 +- name: markupsafe + version: 2.1.3 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.3-py311ha68e1ae_0.conda + hash: + md5: db2c2f72a83bdc5b70947964e1ddc8bb + sha256: 53093042d6223531559fab2096eed85abee39d9386df9d7d42f9398e40017f04 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 29453 + timestamp: 1685769449108 +- name: matplotlib + version: 3.7.2 + manager: conda + platform: win-64 + dependencies: + matplotlib-base: '>=3.7.2,<3.7.3.0a0' + pyqt: '>=5.10' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + tornado: '>=5' + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-3.7.2-py311h1ea47a8_0.conda + hash: + md5: d95553771cdf9d4c03545d80138724b9 + sha256: 897ddd85034d366a95210fb6ac7e90ba4a697a199df13e1d23d77888fcc99626 + optional: false + category: main + build: py311h1ea47a8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LicenseRef-PSF-2.0 and CC0-1.0 + license_family: PSF + size: 8804 + timestamp: 1688685589685 +- name: matplotlib-base + version: 3.7.2 + manager: conda + platform: win-64 + dependencies: + certifi: '>=2020.6.20' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + kiwisolver: '>=1.0.1' + numpy: '>=1.23.5,<2.0a0' + packaging: '>=20.0' + pillow: '>=6.2.0' + pyparsing: '>=2.3.1,<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' + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.2-py311h6e989c2_0.conda + hash: + md5: 9fc9898bc66347cb1d843999610f28ea + sha256: b8bba431f040e6c753e95a9f4c6362153c731c5fee168367452adc81b4ad97d1 + optional: false + category: main + build: py311h6e989c2_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LicenseRef-PSF-2.0 and CC0-1.0 + license_family: PSF + size: 7550581 + timestamp: 1688685542172 +- name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + traitlets: '*' + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2 + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 12273 + timestamp: 1660814913405 +- name: mdurl + version: 0.1.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f8dab71fdc13b1bf29a01248b156d268 + sha256: c678b9194e025b1fb665bec30ee20aab93399203583875b1dcc0a3b52a8f5523 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 13707 + timestamp: 1639515992326 +- name: mistune + version: 3.0.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda + hash: + md5: 1dad8397c94e4de97a70de552a7dcf49 + sha256: 0b4558d3afb64e23b66f5279b704de76ebeb6b4eebbf913d65fbd4ba7d9acc2f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 66169 + timestamp: 1692116828443 +- name: mkl + version: 2022.1.0 + manager: conda + platform: win-64 + dependencies: + intel-openmp: '*' + tbb: 2021.* + url: https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2 + hash: + md5: 2ff89a7337a9636029b4db9466e9f8e3 + sha256: b130d13dba6a798cbcce8f19c52e9765b75b8668d2f8f95ba8210c63b6fa84eb + optional: false + category: main + build: h6a75c08_874 + arch: x86_64 + subdir: win-64 + build_number: 874 + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 191569511 + timestamp: 1652946602922 +- name: more-itertools + version: 10.1.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda + hash: + md5: 8549fafed0351bbfaa1ddaa15fdf9b4e + sha256: 07ce65497dec537e490992758934ddbc4fb5ed9285b41387a7cca966f1a98a0f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 53654 + timestamp: 1691087125209 +- name: msys2-conda-epoch + version: '20160418' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + hash: + md5: b0309b72560df66f71a9d5e34a5efdfa + sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 + optional: false + category: main + build: '1' + arch: x86_64 + subdir: win-64 + build_number: 1 + size: 3227 + timestamp: 1608166968312 +- name: multimethod + version: 1.9.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/multimethod-1.9.1-pyhd8ed1ab_0.conda + hash: + md5: 48223af3f697ccd9b114adb6a66e0f11 + sha256: 7fcfda7b4a1d74205fcfdefd93804226a6eaffc74a319414c7d8d88f9249db3b + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 14782 + timestamp: 1677278842704 +- name: munch + version: 4.0.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: 376b32e8f9d3eacbd625f37d39bd507d + sha256: 093020ae2deb6c468120111a54909e1c576d70dfea6bc0eec5093e36d2fb8ff8 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15466 + timestamp: 1688318483241 +- name: munkres + version: 1.1.4 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 12452 + timestamp: 1600387789153 +- name: mypy + version: 1.5.1 + manager: conda + platform: win-64 + dependencies: + mypy_extensions: '>=0.4.3' + psutil: '>=4.0' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + tomli: '>=1.1.0' + typing_extensions: '>=3.10' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/mypy-1.5.1-py311ha68e1ae_0.conda + hash: + md5: c4dcf9e6c80e64edd4d8ec69ba0c6506 + sha256: fcfdd887b9fb5392cf72b0fa55c2b3d8f2154a047b9a87a655592e25a426c7b7 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 7949657 + timestamp: 1692215658756 +- name: mypy_extensions + version: 1.0.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main + build: pyha770c72_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 10492 + timestamp: 1675543414256 +- name: nbclient + version: 0.8.0 + manager: conda + platform: win-64 + dependencies: + jupyter_client: '>=6.1.12' + jupyter_core: '>=4.12,!=5.0.*' + nbformat: '>=5.1' + python: '>=3.8' + traitlets: '>=5.4' + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda + hash: + md5: e78da91cf428faaf05701ce8cc8f2f9b + sha256: 4ebd237cdf4bfa5226f92d2ae78fab8dba27696909391884dc6594ca6f9df5ff + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 64852 + timestamp: 1684791049212 +- name: nbconvert-core + version: 7.8.0 + manager: conda + platform: win-64 + dependencies: + beautifulsoup4: '*' + bleach: '*' + defusedxml: '*' + entrypoints: '>=0.2.2' + jinja2: '>=3.0' + jupyter_core: '>=4.7' + jupyterlab_pygments: '*' + markupsafe: '>=2.0' + mistune: '>=2.0.3,<4' + nbclient: '>=0.5.0' + nbformat: '>=5.1' + packaging: '*' + pandocfilters: '>=1.4.1' + pygments: '>=2.4.1' + python: '>=3.8' + tinycss2: '*' + traitlets: '>=5.0' + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.8.0-pyhd8ed1ab_0.conda + hash: + md5: 62345c9e24f898bf492979be84a6eb0a + sha256: 7ecab4832e9d5ef2afdddba965dc32b2016fc9850c4deb6b7f8d6dce1526468a + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - pandoc >=2.14.2,<4.0.0 + - nbconvert =7.8.0=*_0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 187369 + timestamp: 1693331910523 +- name: nbformat + version: 5.9.2 + manager: conda + platform: win-64 + dependencies: + jsonschema: '>=2.6' + jupyter_core: '*' + python: '>=3.8' + python-fastjsonschema: '*' + traitlets: '>=5.1' + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda + hash: + md5: 61ba076de6530d9301a0053b02f093d2 + sha256: fc82c5a9116820757b03ffb836b36f0f50e4cd390018024dbadb0ee0217f6992 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 100446 + timestamp: 1690815009867 +- name: nest-asyncio + version: 1.5.6 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 7b868f21adde0d9b8b38f9c16836589b + sha256: 594d240d8be933b6e47b78b786269cc89ffa34874544d9dbed1c6afc9213869b + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 9739 + timestamp: 1664685092387 +- name: networkx + version: '3.1' + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda + hash: + md5: 254f787d5068bc89f578bf63893ce8b4 + sha256: 6b955c8530985fa727ad3323653a54af44ecf453cfdb1b549b3edff609bd3728 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 1459994 + timestamp: 1680693050542 +- name: nh3 + version: 0.2.14 + manager: conda + platform: win-64 + dependencies: + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/win-64/nh3-0.2.14-py311h633b200_0.conda + hash: + md5: 4dd714d249a7d943c239f62feda07bae + sha256: 2659ee79b5badb996419535d1b5dd2c9e32501c49fdac43d138d463cfb0507e1 + optional: false + category: main + build: py311h633b200_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 500819 + timestamp: 1688574062608 +- name: nodeenv + version: 1.8.0 + manager: conda + platform: win-64 + dependencies: + python: ==2.7|>=3.7 + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda + hash: + md5: 2a75b296096adabbabadd5e9782e5fcc + sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 34358 + timestamp: 1683893151613 +- name: notebook-shim + version: 0.2.3 + manager: conda + platform: win-64 + dependencies: + jupyter_server: '>=1.8,<3' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda + hash: + md5: 67e0fe74c156267d9159e9133df7fd37 + sha256: f028d7ad1f2175cde307db08b60d07e371b9d6f035cfae6c81ea94b4c408c538 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 16783 + timestamp: 1682360712235 +- name: numpy + version: 1.25.2 + manager: conda + platform: win-64 + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.25.2-py311h0b4df5a_0.conda + hash: + md5: bbd73574ddf7fd559008f352877baa15 + sha256: b3571b560e2e6736a08d1c053e4910d281759f9dffd31cd76de85fba490c92b6 + optional: false + category: main + build: py311h0b4df5a_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7319662 + timestamp: 1691057290250 +- name: openapi-schema-validator + version: 0.3.4 + manager: conda + platform: win-64 + dependencies: + attrs: '>=19.2.0' + jsonschema: '>=4.0.0,<5.0.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/openapi-schema-validator-0.3.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: c3b75e45f4211ea22e7348b94110fa8f + sha256: d53919cdf7a746f63ae1cf2629eeed4515ae2c1513041012790a48a72f7b9a45 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 12734 + timestamp: 1663017964262 +- name: openapi-spec-validator + version: 0.5.1 + manager: conda + platform: win-64 + dependencies: + importlib_resources: '>=5.8.0,<6.0.0' + jsonschema: '>=4.0.0,<5.0.0' + jsonschema-spec: '>=0.1.1,<0.2.0' + lazy-object-proxy: '>=1.7.1,<2.0.0' + openapi-schema-validator: '>=0.3.2,<0.4.0' + python: '>=3.7' + pyyaml: '>=5.1' + url: https://conda.anaconda.org/conda-forge/noarch/openapi-spec-validator-0.5.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 77d93070915eab15675c3b7e830db024 + sha256: 3b457b202e749b1a4a2d155efe10c7c040cfed48af99998c1b89355524b58e59 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 29119 + timestamp: 1662403468373 +- name: openjpeg + version: 2.5.0 + manager: conda + platform: win-64 + dependencies: + libpng: '>=1.6.39,<1.7.0a0' + libtiff: '>=4.5.0,<4.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-ha2aaf27_2.conda + hash: + md5: db0490689232e8e38c312281df6f31a2 + sha256: 1fb72db47e9b1cdb4980a1fd031e31fad2c6a4a632fc602e7d6fa74f4f491608 + optional: false + category: main + build: ha2aaf27_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 237111 + timestamp: 1671435754860 +- name: openssl + version: 3.1.2 + manager: conda + platform: win-64 + dependencies: + ca-certificates: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.2-hcfcfb64_0.conda + hash: + md5: 79b3f40f27cd80a265c276cea6714507 + sha256: 676b78a786bf845cdca96fa830459f1ffa6603954a88ad86f476456d0a909f4e + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 7408520 + timestamp: 1690950343576 +- name: orc + version: 1.9.0 + manager: conda + platform: win-64 + dependencies: + libprotobuf: '>=4.23.4,<4.23.5.0a0' + 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' + url: https://conda.anaconda.org/conda-forge/win-64/orc-1.9.0-h8dbeef6_2.conda + hash: + md5: 1a77b6711c85b6d04eac70c028cc905a + sha256: 682bc9ec7265ac3ebbb47cb2e31ef1f0014ea938a7559ae687071ae1a29aefcc + optional: false + category: main + build: h8dbeef6_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: Apache-2.0 + license_family: Apache + size: 887526 + timestamp: 1694341479135 +- name: overrides + version: 7.4.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + typing_utils: '*' + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda + hash: + md5: 4625b7b01d7f4ac9c96300a5515acfaa + sha256: 29db8c3b521d261bf71897ba3cfbebc81cd61e581b30fcb984b5a713f02fe1ff + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 29976 + timestamp: 1691338962381 +- name: packaging + version: '23.1' + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda + hash: + md5: 91cda59e66e1e4afe9476f8ef98f5c30 + sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 46098 + timestamp: 1681337144376 +- name: pandas + version: 2.0.3 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.0.3-py311hf63dbb6_1.conda + hash: + md5: 45c4a4b94dd2321f5d8188567263190d + sha256: f8ee8eb9036e8eef21e1778dfa88503d1cdf93299070cbce1d9d32b538fdb54e + optional: false + category: main + build: py311hf63dbb6_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 13434139 + timestamp: 1688741555419 +- name: pandas-stubs + version: 2.0.3.230814 + manager: conda + platform: win-64 + dependencies: + numpy: '>=1.24.3' + python: '>=3.8' + types-pytz: '>=2022.1.1' + url: https://conda.anaconda.org/conda-forge/noarch/pandas-stubs-2.0.3.230814-pyhd8ed1ab_0.conda + hash: + md5: 89f16137c3f9528b8c6e8e863bfb6813 + sha256: 6af73987392e9b9a314d576caf83c7858cabf2456d91fcd06fbc64ad7534fc01 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 96171 + timestamp: 1692034191778 +- name: pandera + version: 0.16.1 + manager: conda + platform: win-64 + dependencies: + pandera-base: '>=0.16.1,<0.16.2.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/pandera-0.16.1-hd8ed1ab_0.conda + hash: + md5: 1560c6c939f5a7112ad598a55cff7c2a + sha256: ee64c530330e380159ae052f2db98f7b11748548976280995d6fdcbd9acb6602 + optional: false + category: main + build: hd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 6874 + timestamp: 1689631317947 +- name: pandera-base + version: 0.16.1 + manager: conda + platform: win-64 + dependencies: + multimethod: '*' + numpy: '>=1.9.0' + packaging: '>=20.0' + pandas: '>=1.0' + pydantic: <2.0.0 + python: '>=3.7' + typeguard: '>=3.0.2' + typing_extensions: '*' + typing_inspect: '>=0.6.0' + wrapt: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pandera-base-0.16.1-pyhd8ed1ab_0.conda + hash: + md5: 98c9add80a7b2da4da4ded0c07d89a21 + sha256: be854f1fbd7af5076b4718dd43e668d3e6282c27c291b6b2beb180bca9177357 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 122213 + timestamp: 1689631309379 +- name: pandoc + version: 3.1.1 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.1-h57928b3_0.conda + hash: + md5: 71f11eb19ae575ee0b52d0d58fb018f3 + sha256: 2e9505e98eb7866bedd726168f18f7d9eb6e9d560e1fed6c7302881841c037a4 + optional: false + category: main + build: h57928b3_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: GPL-2.0-or-later + license_family: GPL + size: 17393149 + timestamp: 1678895102714 +- name: pandocfilters + version: 1.5.0 + manager: conda + platform: win-64 + dependencies: + python: '!=3.0,!=3.1,!=3.2,!=3.3' + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 457c2c8c08e54905d6954e79cb5b5db9 + sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11627 + timestamp: 1631603397334 +- name: parso + version: 0.8.3 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 71048 + timestamp: 1638335054552 +- name: pathable + version: 0.4.3 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pathable-0.4.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f3e7301de38fd621c902faf8087bc564 + sha256: 7258b7f6a8e5fcd5e5a22e0a85b89e03e9cf5049d1591bc98420fd080007f25d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 16637 + timestamp: 1662125265190 +- name: pathspec + version: 0.11.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda + hash: + md5: e41debb259e68490e3ab81e46b639ab6 + sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + noarch: python + size: 38649 + timestamp: 1690598108100 +- name: pcre2 + version: '10.40' + manager: conda + platform: win-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2 + hash: + md5: 2519de0d9620dc2bc7e19caf6867136d + sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 + optional: false + category: main + build: h17e33f8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2001630 + timestamp: 1665563527916 +- name: pep517 + version: 0.13.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: d94aa03d99d8adc9898f783eba0d84d2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 19044 + timestamp: 1667916747996 +- name: pickleshare + version: 0.7.5 + manager: conda + platform: win-64 + dependencies: + python: '>=3' + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + build: py_1003 + arch: x86_64 + subdir: win-64 + build_number: 1003 + license: MIT + license_family: MIT + noarch: python + size: 9332 + timestamp: 1602536313357 +- name: pillow + version: 10.0.0 + manager: conda + platform: win-64 + dependencies: + freetype: '>=2.12.1,<3.0a0' + lcms2: '>=2.15,<3.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libwebp-base: '>=1.3.1,<2.0a0' + libxcb: '>=1.15,<1.16.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' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.0.0-py311hde623f7_0.conda + hash: + md5: 217a6fc0df385c9a929144549f26b124 + sha256: 3771fa4cd26b5654dcb9e12a65a624be87836e002900a0d6b98c93870b75aa02 + optional: false + category: main + build: py311hde623f7_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LicenseRef-PIL + size: 46076579 + timestamp: 1688256328666 +- name: pip + version: 23.2.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + setuptools: '*' + wheel: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda + hash: + md5: e2783aa3f9235225eec92f9081c5b801 + sha256: 9e401b171856e12f6aa32ae5cc1ae1d3708aa7d705ddf359ee7dd0dffd73c2b5 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 1386212 + timestamp: 1690024763393 +- name: pixman + version: 0.40.0 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2 + hash: + md5: 32b45d3fcffddc84cc1a014a0b5f0d58 + sha256: 7f0ceed590a717ddc7612f67657119df1e6df0d031a822b570d741a89a3ba784 + optional: false + category: main + build: h8ffe710_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 493231 + timestamp: 1604342509224 +- name: pkginfo + version: 1.9.6 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda + hash: + md5: be1e9f1c65a1ed0f2ae9352fec99db64 + sha256: 7ea5a5af62a15376d9f4f9f3c134874d0b0710f39be719e849b7fa9ca8870502 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 27646 + timestamp: 1673281872032 +- name: pkgutil-resolve-name + version: 1.3.10 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 89e3c7cdde7d3aaa2aee933b604dd07f + sha256: 7d055ffc8a02bf781a89d069db3454b453605cdaff300b82cedcc7133283e47e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-4-Clause + noarch: python + size: 8717 + timestamp: 1633982101415 +- name: platformdirs + version: 3.10.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + typing-extensions: '>=4.6.3' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda + hash: + md5: 0809187ef9b89a3d94a5c24d13936236 + sha256: 1b5c0ca2f4260c7dd8cfccd8a641c1e41876c79dc594506be379cde08f5b471e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 19827 + timestamp: 1690813274592 +- name: pluggy + version: 1.3.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda + hash: + md5: 2390bd10bed1f3fdc7a537fb5a447d8d + sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 22548 + timestamp: 1693086745921 +- name: ply + version: '3.11' + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 + hash: + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + optional: false + category: main + build: py_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD 3-clause + license_family: BSD + noarch: python + size: 44837 + timestamp: 1530963184592 +- name: pooch + version: 1.7.0 + manager: conda + platform: win-64 + dependencies: + packaging: '>=20.0' + platformdirs: '>=2.5.0' + python: '>=3.7' + requests: '>=2.19.0' + url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda + hash: + md5: 5936894aade8240c867d292aa0d980c6 + sha256: 64e4d633803df2e36fd141d9bf269568fbe179a313248e1dac4d364c02debdef + optional: false + category: main + build: pyha770c72_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 50857 + timestamp: 1679580483278 +- name: poppler + version: 23.08.0 + manager: conda + platform: win-64 + dependencies: + boost-cpp: '>=1.78.0,<1.78.1.0a0' + cairo: '>=1.16.0,<2.0a0' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + freetype: '>=2.12.1,<3.0a0' + gettext: '>=0.21.1,<1.0a0' + lcms2: '>=2.15,<3.0a0' + libcurl: '>=8.2.1,<9.0a0' + libglib: '>=2.76.4,<3.0a0' + libiconv: '>=1.17,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openjpeg: '>=2.5.0,<3.0a0' + poppler-data: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/poppler-23.08.0-h45d20d0_0.conda + hash: + md5: 80470ea5290d6bda5f9fe9a4b45304b4 + sha256: fb58c992ff42af48945bf4576915eb12138ea54c600900c546bd653e9cbe4d9c + optional: false + category: main + build: h45d20d0_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: GPL-2.0-only + license_family: GPL + size: 2301264 + timestamp: 1691444951113 +- name: poppler-data + version: 0.4.12 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda + hash: + md5: d8d7293c5b37f39b2ac32940621c6592 + sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf + optional: false + category: main + build: hd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause AND (GPL-2.0-only OR GPL-3.0-only) + license_family: OTHER + noarch: generic + size: 2348171 + timestamp: 1675353652214 +- name: postgresql + version: '15.4' + manager: conda + platform: win-64 + dependencies: + krb5: '>=1.21.1,<1.22.0a0' + libpq: ==15.4 h43585b0_0 + libxml2: '>=2.11.5,<2.12.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' + zlib: '*' + url: https://conda.anaconda.org/conda-forge/win-64/postgresql-15.4-hc80876b_0.conda + hash: + md5: fd9a18a1c9b06ed6310399f951d53204 + sha256: d3d2f093ecc6031f44cf590efb6a723b16118ec56348e1d4809670cd6dcc1e2d + optional: false + category: main + build: hc80876b_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + size: 17730906 + timestamp: 1691693685784 +- name: prance + version: 0.21.8.0 + manager: conda + platform: win-64 + dependencies: + chardet: '>=3.0,<5.0' + python: '>=3.6' + requests: ~=2.25 + ruamel.yaml: ~=0.17.10 + semver: ~=2.13 + six: ~=1.15 + url: https://conda.anaconda.org/conda-forge/noarch/prance-0.21.8.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f0efa70bff573d4563f7864bc5ca3b36 + sha256: 3ca1ef7afebe795e91c7f49f10c4988213bdb6758b4a6df3d3822703d5997ef2 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 31642 + timestamp: 1655537882032 +- name: pre-commit + version: 3.4.0 + manager: conda + platform: win-64 + dependencies: + cfgv: '>=2.0.0' + identify: '>=1.0.0' + nodeenv: '>=0.11.1' + python: '>=3.8' + pyyaml: '>=5.1' + virtualenv: '>=20.10.0' + url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.4.0-pyha770c72_1.conda + hash: + md5: 3fb5ba328a77c9fd71197a46e7f2469a + sha256: 262292801e1fceb137b2660305a095c4a139b095657aa8c7c7a6d430ec47d049 + optional: false + category: main + build: pyha770c72_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 179580 + timestamp: 1694518510761 +- name: proj + version: 9.2.1 + manager: conda + platform: win-64 + dependencies: + libcurl: '>=8.1.2,<9.0a0' + libsqlite: '>=3.42.0,<4.0a0' + libtiff: '>=4.5.0,<4.6.0a0' + sqlite: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/proj-9.2.1-h660b3b0_0.conda + hash: + md5: 1ff5597fae975490b84dd69bffdebdff + sha256: e8554b1fa56ea5cad5dd69f68c89335e8b76604480e2828be5b159ab95d2b6ec + optional: false + category: main + build: h660b3b0_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2644522 + timestamp: 1685630512565 +- name: prometheus_client + version: 0.17.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda + hash: + md5: 02153b6b760bbec00cfe9e4c97993d06 + sha256: a149184fde856dba7968fc50ca89dbb07ebe84abd710d4076e2fada1b9399231 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 53376 + timestamp: 1689032576798 +- name: prompt-toolkit + version: 3.0.39 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + wcwidth: '*' + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda + hash: + md5: a4986c6bb5b0d05a38855b0880a5f425 + sha256: 10e7fdc75d4b85633be6b12a70b857053987127a808caa0f88b2cba4b3ce6359 + optional: false + category: main + build: pyha770c72_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - prompt_toolkit 3.0.39 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 269068 + timestamp: 1688566090973 +- name: prompt_toolkit + version: 3.0.39 + manager: conda + platform: win-64 + dependencies: + prompt-toolkit: '>=3.0.39,<3.0.40.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda + hash: + md5: 4bbbe67d5df19db30f04b8e344dc9976 + sha256: 89f7fecc7355181dbc2ab851e668a2fce6aa4830b336a34c93b59bda93206270 + optional: false + category: main + build: hd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 6731 + timestamp: 1688566099039 +- name: psutil + version: 5.9.5 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.5-py311ha68e1ae_0.conda + hash: + md5: f1a1eecd1bb4f431df5b9b6d8a152efd + sha256: b7c3ea83142689ffc6029bb745f6a4836818f1b1c1ba9e9f9ba3a9498f4a3cd4 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 515116 + timestamp: 1681775399789 +- name: pthread-stubs + version: '0.4' + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs: '*' + url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 + hash: + md5: a1f820480193ea83582b13249a7e7bd9 + sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a + optional: false + category: main + build: hcd874cb_1001 + arch: x86_64 + subdir: win-64 + build_number: 1001 + license: MIT + license_family: MIT + size: 6417 + timestamp: 1606147814351 +- name: pthreads-win32 + version: 2.9.1 + manager: conda + platform: win-64 + dependencies: + vc: 14.* + url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 + hash: + md5: e2da8758d7d51ff6aa78a14dfb9dbed4 + sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005 + optional: false + category: main + build: hfa6e2cd_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: LGPL 2 + size: 144301 + timestamp: 1537755684331 +- name: pure_eval + version: 0.2.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14551 + timestamp: 1642876055775 +- name: pyarrow + version: 13.0.0 + manager: conda + platform: win-64 + dependencies: + libarrow: ==13.0.0 h1e3473c_4_cpu + 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' + url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-13.0.0-py311h6a6099b_4_cpu.conda + hash: + md5: 61ef78f02c10947ba31ef9d61409ae7f + sha256: 68bb5ce79cacd08b2cd0e2d034b0d478af2a56ca87d2f829980fd594ae72c7ad + optional: false + category: main + build: py311h6a6099b_4_cpu + arch: x86_64 + subdir: win-64 + build_number: 4 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + size: 3050620 + timestamp: 1694443471581 +- name: pycparser + version: '2.21' + manager: conda + platform: win-64 + dependencies: + python: 2.7.*|>=3.4 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 102747 + timestamp: 1636257201998 +- name: pydantic + version: 1.10.12 + manager: conda + platform: win-64 + dependencies: + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + typing-extensions: '>=4.2.0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-1.10.12-py311ha68e1ae_1.conda + hash: + md5: 0feb25ec7eb52f43f3930a975d894e28 + sha256: cb11fc24c72567022ee58f8c0d21bd3368caf83b957b125c06da94f53d1eb4f0 + optional: false + category: main + build: py311ha68e1ae_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 1600311 + timestamp: 1690477009718 +- name: pygments + version: 2.16.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda + hash: + md5: 40e5cb18165466773619e5c963f00a7b + sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 853439 + timestamp: 1691408777841 +- name: pyogrio + version: 0.6.0 + manager: conda + platform: win-64 + dependencies: + gdal: '*' + libgdal: '>=3.7.0,<3.8.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' + url: https://conda.anaconda.org/conda-forge/win-64/pyogrio-0.6.0-py311h03c997e_1.conda + hash: + md5: f9df6d8bc922ea2110853b1b77edb182 + sha256: 0d002aba3517e9fcbc791ab4ad0fbc256561323a136ea58906f50bcd71eb4150 + optional: false + category: main + build: py311h03c997e_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 705427 + timestamp: 1684222644541 +- name: pyparsing + version: 3.0.9 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 81321 + timestamp: 1652235496915 +- name: pyproj + version: 3.6.0 + manager: conda + platform: win-64 + dependencies: + certifi: '*' + proj: '>=9.2.1,<9.2.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' + url: https://conda.anaconda.org/conda-forge/win-64/pyproj-3.6.0-py311hcff2a09_1.conda + hash: + md5: 68747ef721eabd86e17946a25116e894 + sha256: b2c50856b1ae776e7391b7c60de719d704377f36112ec5d1a68c90e11b50127e + optional: false + category: main + build: py311hcff2a09_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 630756 + timestamp: 1686689177998 +- name: pyqt + version: 5.15.9 + manager: conda + platform: win-64 + dependencies: + pyqt5-sip: ==12.12.2 py311h12c1d0e_4 + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + qt-main: '>=5.15.8,<5.16.0a0' + sip: '>=6.7.10,<6.8.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pyqt-5.15.9-py311h125bc19_4.conda + hash: + md5: 5bc01733f2300be993a6c687ced9ad93 + sha256: b13bee19521808ea9ab3b520956409b5df35c2c8527f12e3b5f682e3006485b1 + optional: false + category: main + build: py311h125bc19_4 + arch: x86_64 + subdir: win-64 + build_number: 4 + license: GPL-3.0-only + license_family: GPL + size: 3919834 + timestamp: 1690300793076 +- name: pyqt5-sip + version: 12.12.2 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/pyqt5-sip-12.12.2-py311h12c1d0e_4.conda + hash: + md5: 57dc6aef2b60e9b599d6d1b924735ea6 + sha256: 3a52bc55d450eb7e695259111baa370ed8788c431a0e702c538b440a8ffb01d3 + optional: false + category: main + build: py311h12c1d0e_4 + arch: x86_64 + subdir: win-64 + build_number: 4 + license: GPL-3.0-only + license_family: GPL + size: 79753 + timestamp: 1690298557337 +- name: pysnooper + version: 1.2.0 + manager: conda + platform: win-64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/pysnooper-1.2.0-pyhd8ed1ab_0.conda + hash: + md5: e8323f3ea29910f7086914e27223867f + sha256: fdf89aa9a631870c2565af9eafd09f2a6c539cf31e4cb596651c2b9c16f3d546 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 19622 + timestamp: 1690469519470 +- name: pysocks + version: 1.7.1 + manager: conda + platform: win-64 + dependencies: + __win: '*' + python: '>=3.8' + win_inet_pton: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + hash: + md5: 56cd9fe388baac0e90c7149cfac95b60 + sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 + optional: false + category: main + build: pyh0701188_6 + arch: x86_64 + subdir: win-64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 19348 + timestamp: 1661605138291 +- name: pytest + version: 7.4.2 + manager: conda + platform: win-64 + dependencies: + colorama: '*' + exceptiongroup: '>=1.0.0rc8' + iniconfig: '*' + packaging: '*' + pluggy: '>=0.12,<2.0' + python: '>=3.7' + tomli: '>=1.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda + hash: + md5: 6dd662ff5ac9a783e5c940ce9f3fe649 + sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + noarch: python + size: 244691 + timestamp: 1694128618921 +- name: pytest-cov + version: 4.1.0 + manager: conda + platform: win-64 + dependencies: + coverage: '>=5.2.1' + pytest: '>=4.6' + python: '>=3.7' + toml: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 06eb685a3a0b146347a58dda979485da + sha256: f07d3b44cabbed7843de654c4a6990a08475ce3b708bb735c7da9842614586f2 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 25436 + timestamp: 1684965001294 +- name: python + version: 3.11.5 + manager: conda + platform: win-64 + dependencies: + 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.2,<4.0a0' + tk: '>=8.6.12,<8.7.0a0' + tzdata: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + xz: '>=5.2.6,<6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.5-h2628c8c_0_cpython.conda + hash: + md5: 28e01783b6a42f295fe07c7790aa75a1 + sha256: 0a44437eaf81055b91c1ae27a4be58609c31b3e7b94bd4d3e10204795c51bf04 + optional: false + category: main + build: h2628c8c_0_cpython + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 18153848 + timestamp: 1693106905439 +- name: python-dateutil + version: 2.8.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + six: '>=1.5' + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 245987 + timestamp: 1626286448716 +- name: python-fastjsonschema + version: 2.18.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.3' + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.0-pyhd8ed1ab_0.conda + hash: + md5: 3be9466311564f80f8056c0851fc5bb7 + sha256: 73985a9a2dd7ccf77b7428a12148e1b381c8635e9195e47a652397e9a56284ce + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 225888 + timestamp: 1690055603375 +- name: python-json-logger + version: 2.0.7 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + hash: + md5: a61bf9ec79426938ff785eb69dbb1960 + sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 13383 + timestamp: 1677079727691 +- name: python-tzdata + version: '2023.3' + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda + hash: + md5: 2590495f608a63625e165915fb4e2e34 + sha256: 0108888507014fb24573c31e4deceb61c99e63d37776dddcadd7c89b2ecae0b6 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 143131 + timestamp: 1680081272948 +- name: python_abi + version: '3.11' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-3_cp311.conda + hash: + md5: fd1634ba85cfea9376e1fc02d6f592e9 + sha256: e042841d13274354d651a69a4f2589e9b46fd23b416368c9821bf3c6676f19d7 + optional: false + category: main + build: 3_cp311 + arch: x86_64 + subdir: win-64 + build_number: 3 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6124 + timestamp: 1669071848353 +- name: pytz + version: 2023.3.post1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda + hash: + md5: c93346b446cd08c169d843ae5fc0da97 + sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 187454 + timestamp: 1693930444432 +- name: pywin32 + version: '304' + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/pywin32-304-py311h12c1d0e_2.tar.bz2 + hash: + md5: 20a2d8e73b0be8e27ca4096d4f3a7053 + sha256: cdefd0688f776940bcc74fd981328a5d45e734006538dca6d686f8d21051c753 + optional: false + category: main + build: py311h12c1d0e_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: PSF-2.0 + license_family: PSF + size: 9916058 + timestamp: 1666985027367 +- name: pywin32-ctypes + version: 0.2.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/win-64/pywin32-ctypes-0.2.2-py311h1ea47a8_0.conda + hash: + md5: 93204e67d63d9ea4ef2b878172222b74 + sha256: eaf4333628281e829efef8ed1163f326fa673a65d270d7d0c1ca25ccdf81b4e5 + optional: false + category: main + build: py311h1ea47a8_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 57184 + timestamp: 1687901159989 +- name: pywinpty + version: 2.0.11 + manager: conda + platform: win-64 + dependencies: + 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' + winpty: '*' + url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.11-py311h12c1d0e_0.conda + hash: + md5: dd979ef7f5a96b0a607dbfe6d5028fef + sha256: 1488484432698d098a2850e3522197b7123f2a8d50a66fa759297a5618725dfa + optional: false + category: main + build: py311h12c1d0e_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 216655 + timestamp: 1689415115511 +- name: pyyaml + version: 6.0.1 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py311ha68e1ae_0.conda + hash: + md5: ded59f0f47217d6099316ad7416e60b1 + sha256: c850492dcae1704de3f2d26760d599c39ab84cf4ab786b2ecf9ee2e66263a979 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 176069 + timestamp: 1692737845748 +- name: pyzmq + version: 25.1.1 + manager: conda + platform: win-64 + dependencies: + libsodium: '>=1.0.18,<1.0.19.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' + zeromq: '>=4.3.4,<4.3.5.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.1.1-py311h7b3f143_0.conda + hash: + md5: 46d00d549b87bb4deda7c10cd407a407 + sha256: 44a9e8f683d57e6c0b683267cd428294769c00f0962d02e4b1a0350d19535750 + optional: false + category: main + build: py311h7b3f143_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause AND LGPL-3.0-or-later + size: 492918 + timestamp: 1691667943344 +- name: qt-main + version: 5.15.8 + manager: conda + platform: win-64 + dependencies: + gst-plugins-base: '>=1.22.5,<1.23.0a0' + gstreamer: '>=1.22.5,<1.23.0a0' + icu: '>=73.2,<74.0a0' + krb5: '>=1.21.2,<1.22.0a0' + libclang: '>=15.0.7,<16.0a0' + libclang13: '>=15.0.7' + libglib: '>=2.78.0,<3.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libsqlite: '>=3.43.0,<4.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' + zstd: '>=1.5.5,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-he5a7383_16.conda + hash: + md5: b67cbf30e1c1c0dcb314e2705f088bc2 + sha256: be746aad17335729eabc029a552c09e6afdcef1d6da14b8daa343cf306fae2b9 + optional: false + category: main + build: he5a7383_16 + arch: x86_64 + subdir: win-64 + build_number: 16 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + size: 60176423 + timestamp: 1694508254767 +- name: quarto + version: 1.3.450 + manager: conda + platform: win-64 + dependencies: + dart-sass: '*' + deno: '>=1.28.2,<1.28.3.0a0' + deno-dom: '>=0.1.35,<0.1.36.0a0' + esbuild: '*' + pandoc: '>=3.1.1,<3.1.2.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/quarto-1.3.450-h57928b3_0.conda + hash: + md5: 8fad8f7ee29835b2bb072a1b3bed8a83 + sha256: 5e19c5ce07bdc82649fbba964012fb5587965d86010a6fa61cdafeb7894b58ba + optional: false + category: main + build: h57928b3_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: GPL-2.0-or-later + license_family: GPL + size: 12188515 + timestamp: 1691275738213 +- name: re2 + version: 2023.03.02 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/re2-2023.03.02-hd4eee63_0.conda + hash: + md5: a59c371d7364446cf1d0b8299e05c1ea + sha256: 8e1bccfe360351251b6a7140bebe66e9f678d940926bb7a92b1b2b06325fdd34 + optional: false + category: main + build: hd4eee63_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 378635 + timestamp: 1677699429007 +- name: readme_renderer + version: '42.0' + manager: conda + platform: win-64 + dependencies: + cmarkgfm: '>=0.8.0' + docutils: '>=0.13.1' + nh3: '>=0.2.14' + pygments: '>=2.5.1' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/readme_renderer-42.0-pyhd8ed1ab_0.conda + hash: + md5: fdc16f5dc3a911d8f43f64f814a45961 + sha256: 61e03765ebdb168fc8747e8183db4067b55888c89d59e0f4f53b5b4046846cda + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 17373 + timestamp: 1694242843889 +- name: referencing + version: 0.30.2 + manager: conda + platform: win-64 + dependencies: + attrs: '>=22.2.0' + python: '>=3.8' + rpds-py: '>=0.7.0' + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda + hash: + md5: a33161b983172ba6ef69d5fc850650cd + sha256: a6768fabc12f1eed87fec68c5c65439e908655cded1e458d70a164abbce13287 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 38061 + timestamp: 1691337409918 +- name: requests + version: 2.31.0 + manager: conda + platform: win-64 + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.7' + urllib3: '>=1.21.1,<3' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + hash: + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 56690 + timestamp: 1684774408600 +- name: requests-toolbelt + version: 1.0.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + requests: '>=2.0.1,<3.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-1.0.0-pyhd8ed1ab_0.conda + hash: + md5: 99c98318c8646b08cc764f90ce98906e + sha256: 20eaefc5dba74ff6c31e537533dde59b5b20f69e74df49dff19d43be59785fa3 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 43939 + timestamp: 1682953467574 +- name: rfc3339-validator + version: 0.1.4 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + six: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: fed45fc5ea0813240707998abe49f520 + sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 8064 + timestamp: 1638811838081 +- name: rfc3986 + version: 2.0.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.4' + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-2.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: d337886e38f965bf97aaec382ff6db00 + sha256: dd6bfb7c4248ba7612f2e6e4a066d6804ba96dfcaeddf43475a2c846ccfcc396 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 34075 + timestamp: 1641825125307 +- name: rfc3986-validator + version: 0.1.1 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 912a71cc01012ee38e6b90ddd561e36f + sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 7818 + timestamp: 1598024297745 +- name: rich + version: 13.5.1 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/noarch/rich-13.5.1-pyhd8ed1ab_0.conda + hash: + md5: 38e7446efa3c8b8a770a0fff862935c0 + sha256: 40ecca2e0a173258bd925f8f5d620845e3f56a0adce9e469cbcaed3cdfa605ec + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 183820 + timestamp: 1690807825556 +- name: rpds-py + version: 0.10.2 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.10.2-py311hc37eb10_0.conda + hash: + md5: f5afa63e19bc805ce3fbe47e9dab0642 + sha256: 5c829f154cf71dedf1a6301d3604b383441e71b292fc0c2e10475e41ab4e9457 + optional: false + category: main + build: py311hc37eb10_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 186327 + timestamp: 1693851011310 +- name: rtree + version: 1.0.1 + manager: conda + platform: win-64 + dependencies: + libspatialindex: '>=1.9.3,<1.9.4.0a0' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/win-64/rtree-1.0.1-py311hcacb13a_2.conda + hash: + md5: 44eb9c02085fa7dc239cfb1c82b1f0fc + sha256: 9a89d6f9d15c77d7a5bfb24e5b7a4f9b1f4a2fc4005af53ffa97dac68a5301c0 + optional: false + category: main + build: py311hcacb13a_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 63366 + timestamp: 1689932728300 +- name: ruamel.yaml + version: 0.17.32 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.17.32-py311ha68e1ae_0.conda + hash: + md5: 1a51f29331338bfde51127db204d7757 + sha256: b287388ea53da5437ceac8bd9ff9ee161d3a2433275a0f74b332c6b032d9ef50 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 274338 + timestamp: 1686994155816 +- name: ruamel.yaml.clib + version: 0.2.7 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.7-py311ha68e1ae_1.conda + hash: + md5: 654fbe603c79490699cd7447e4627aee + sha256: 407ea37bbf6da39261294624f6eb5a247bf8674a1c73fe8e89878331e233f431 + optional: false + category: main + build: py311ha68e1ae_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 96121 + timestamp: 1670413471629 +- name: ruff + version: 0.0.289 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.0.289-py311hc14472d_0.conda + hash: + md5: 58515e315676b06b9d0c3a155b999edf + sha256: 2ff946c38d7d4c21a53b7ce7e54fe4b3aba82153b21691558235e5a56ab5dcbe + optional: false + category: main + build: py311hc14472d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 5081984 + timestamp: 1694567164839 +- name: scikit-learn + version: 1.3.0 + manager: conda + platform: win-64 + dependencies: + joblib: '>=1.1.1' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + scipy: '*' + threadpoolctl: '>=2.0.0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.3.0-py311h142b183_0.conda + hash: + md5: ab4a48b21b718dca0d1dc71d0374359d + sha256: 17518fe43bc3aa428cf240083f67db1cf687b76d5ba0c17f6e530ef82f5adaa7 + optional: false + category: main + build: py311h142b183_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 8308703 + timestamp: 1688117347403 +- name: scipy + version: 1.11.2 + manager: conda + platform: win-64 + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + liblapack: '>=3.9.0,<4.0a0' + m2w64-gcc-libs: '*' + m2w64-gcc-libs-core: '*' + numpy: '>=1.23.5,<2.0a0' + pooch: '*' + 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' + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.11.2-py311h37ff6ca_0.conda + hash: + md5: 461a9e295dd89e968d1e3d944947ae27 + sha256: 9ad161ea819fabee4a4b722d6c2e91b2a776b05cf2c43252f9b177da6f14ab86 + optional: false + category: main + build: py311h37ff6ca_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 18598251 + timestamp: 1692503335784 +- name: semver + version: 2.13.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 2cab9f3a9683cb40a2176ccaf76e66c6 + sha256: 673ef5ef04cef60c3584b1d9b81024646b9d9a4c50749356c7ba5cede755e61d + optional: false + category: main + build: pyh9f0ad1d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 15712 + timestamp: 1603697876069 +- name: send2trash + version: 1.8.2 + manager: conda + platform: win-64 + dependencies: + __win: '*' + python: '>=3.6' + pywin32: '*' + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh08f2357_0.conda + hash: + md5: c00d32dfa733d381b6a1908d0d67e0d7 + sha256: 55208c6b48d68dc9ad2e2cf81ab9dc6b8a1d607e67acf9115bdc7794accc84bc + optional: false + category: main + build: pyh08f2357_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 23279 + timestamp: 1682601755260 +- name: setuptools + version: 68.2.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda + hash: + md5: fc2166155db840c634a1291a5c35a709 + sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 464399 + timestamp: 1694548452441 +- name: shapely + version: 2.0.1 + manager: conda + platform: win-64 + dependencies: + geos: '>=3.12.0,<3.12.1.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' + url: https://conda.anaconda.org/conda-forge/win-64/shapely-2.0.1-py311h72efec2_2.conda + hash: + md5: 505760fd5dd6b9d6c2adb8b716cacbd4 + sha256: 5eff680ece05769cca7e7a1bd25bca98d80fdb4e299b76aa79b96d2b68086a6f + optional: false + category: main + build: py311h72efec2_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: BSD-3-Clause + license_family: BSD + size: 464547 + timestamp: 1692437067698 +- name: sip + version: 6.7.11 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/sip-6.7.11-py311h12c1d0e_0.conda + hash: + md5: 7b9d87d56afebe25b6d1cb740fcef173 + sha256: 14dbd41e4f2dfc4319f0c817812a395f4dbb3f4c457c36404b970c75e0a40972 + optional: false + category: main + build: py311h12c1d0e_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: GPL-3.0-only + license_family: GPL + size: 593996 + timestamp: 1690986660580 +- name: six + version: 1.16.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + build: pyh6c4a22f_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14259 + timestamp: 1620240338595 +- name: snappy + version: 1.1.10 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda + hash: + md5: cff1df79c9cff719460eb2dd172568de + sha256: 2a195b38cb63f03ad9f73a82db52434ebefe216fb70f7ea3defe4ddf263d408a + optional: false + category: main + build: hfb803bf_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 57065 + timestamp: 1678534804734 +- name: sniffio + version: 1.3.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: dd6cbc539e74cb1f430efbd4575b9303 + sha256: a3fd30754c20ddb28b777db38345ea00d958f46701f0decd6291a81c0f4eee78 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 14358 + timestamp: 1662051357638 +- name: soupsieve + version: '2.5' + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + hash: + md5: 3f144b2c34f8cb5a9abd9ed23a39c561 + sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 36754 + timestamp: 1693929424267 +- name: sqlite + version: 3.43.0 + manager: conda + platform: win-64 + dependencies: + libsqlite: ==3.43.0 hcfcfb64_0 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/sqlite-3.43.0-hcfcfb64_0.conda + hash: + md5: 0203e216052a1feceefe7894a69b97cf + sha256: 36a5111ee044bfbaa16c7e9f25fc510dc4a5c5767e795a587b36109c08c8f048 + optional: false + category: main + build: hcfcfb64_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Unlicense + size: 849482 + timestamp: 1692911627404 +- name: stack_data + version: 0.6.2 + manager: conda + platform: win-64 + dependencies: + asttokens: '*' + executing: '*' + pure_eval: '*' + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 26205 + timestamp: 1669632203115 +- name: tbb + version: 2021.10.0 + manager: conda + platform: win-64 + dependencies: + libhwloc: '>=2.9.2,<2.9.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.10.0-h91493d7_0.conda + hash: + md5: 348275b42ff7638e7798ac61e073f864 + sha256: de6685367a075f68b5a3d58be29fc81496564e2d650d72af13921e34ae4e2a9c + optional: false + category: main + build: h91493d7_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 155589 + timestamp: 1690529174043 +- name: terminado + version: 0.17.0 + manager: conda + platform: win-64 + dependencies: + __win: '*' + python: '>=3.7' + pywinpty: '>=1.1.0' + tornado: '>=6.1.0' + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.0-pyh08f2357_0.tar.bz2 + hash: + md5: 0152a609d5748ed9887d195b1e61a6c9 + sha256: 5c8fcf31430e0f312bc65ab5aa5b893fcc250820c023b02ff3fd188ae13199a5 + optional: false + category: main + build: pyh08f2357_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 19530 + timestamp: 1666708102607 +- name: threadpoolctl + version: 3.2.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda + hash: + md5: 978d03388b62173b8e6f79162cf52b86 + sha256: 15e2f916fbfe3cc480160aa99eb6ba3edc183fceb234f10151d63870fdc4eccd + optional: false + category: main + build: pyha21a80b_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 20981 + timestamp: 1689261378222 +- name: tiledb + version: 2.16.3 + manager: conda + platform: win-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libabseil: '>=20230802.0,<20230803.0a0' + libcrc32c: '>=1.1.2,<1.2.0a0' + libcurl: '>=8.2.1,<9.0a0' + libgoogle-cloud: '>=2.12.0,<2.13.0a0' + libxml2: '>=2.11.5,<2.12.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openssl: '>=3.1.2,<4.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + zstd: '>=1.5.5,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/tiledb-2.16.3-hbf04793_3.conda + hash: + md5: 3afaf8882d4568eb9c91870102af1b37 + sha256: 4de5494be2ee102d15077bebc63d17422c40dc8d634097136a9a202a3930e502 + optional: false + category: main + build: hbf04793_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: MIT + license_family: MIT + size: 4146973 + timestamp: 1694523739186 +- name: tinycss2 + version: 1.2.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + webencodings: '>=0.4' + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 7234c9eefff659501cd2fe0d2ede4d48 + sha256: f0db1a2298a5e10e30f4b947566c7229442834702f549dded40a73ecdea7502d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 23235 + timestamp: 1666100385187 +- name: tk + version: 8.6.12 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 + hash: + md5: c69a5047cc9291ae40afd4a1ad6f0c0f + sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 + optional: false + category: main + build: h8ffe710_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: TCL + license_family: BSD + size: 3681762 + timestamp: 1645033031535 +- name: tokenize-rt + version: 5.2.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tokenize-rt-5.2.0-pyhd8ed1ab_0.conda + hash: + md5: 5ddff6ac44b25ca5d3e62a82547f3d32 + sha256: fe327c866cd84c71966a89fc8243af66980a7cfacefd5588f4443d580bb93b5d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11545 + timestamp: 1690762379840 +- name: toml + version: 0.10.2 + manager: conda + platform: win-64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18433 + timestamp: 1604308660817 +- name: tomli + version: 2.0.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15940 + timestamp: 1644342331069 +- name: tomli-w + version: 1.0.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-w-1.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 73506d1ab4202481841c68c169b7ef6c + sha256: efb5f78a224c4bb14aab04690c9912256ea12c3a8b8413e60167573ce1282b02 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 10052 + timestamp: 1638551820635 +- name: tornado + version: 6.3.3 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.3.3-py311ha68e1ae_0.conda + hash: + md5: 373efebfbe9d127ef4fa2086637cb2f8 + sha256: 56d0321984aab178de910f5d41e85928e413d01fadf0376d8fc63c6411827227 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 847589 + timestamp: 1692312378110 +- name: traitlets + version: 5.9.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 98443 + timestamp: 1675110676323 +- name: twine + version: 4.0.2 + manager: conda + platform: win-64 + dependencies: + importlib_metadata: '>=3.6' + keyring: '>=15.1' + pkginfo: '>=1.8.1' + python: '>=3.7' + readme_renderer: '>=35.0' + requests: '>=2.20' + requests-toolbelt: '>=0.8.0,!=0.9.0' + rfc3986: '>=1.4.0' + rich: '>=12.0.0' + urllib3: '>=1.26.0' + url: https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda + hash: + md5: e3a16168d6b9deefb8c1caa7943fb49e + sha256: 3e0c4f23d6a7d71783095b715f56c9f5f26feefaa9f30e27793dd12dc28e76c9 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 30903 + timestamp: 1669898686321 +- name: typeguard + version: 4.1.5 + manager: conda + platform: win-64 + dependencies: + importlib_metadata: '>=3.6' + python: '>=3.8' + typing_extensions: '>=4.4.0' + url: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.1.5-pyhd8ed1ab_0.conda + hash: + md5: 1633e6bd58d519b1661b184d6934cbd7 + sha256: 3f399a3b8fcecfc221aa635699162cb78c31a2ae9cf0b8dbf72b9f6db9e22360 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - pytest >=7 + license: MIT + license_family: MIT + noarch: python + size: 33727 + timestamp: 1694433261411 +- name: types-pytz + version: 2023.3.0.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/types-pytz-2023.3.0.1-pyhd8ed1ab_0.conda + hash: + md5: 1b133b01430fc4d03efba737aae0054f + sha256: 272505b7f8acc7dad0a32efc17e7241c18938f98c0055c5d5fb2530a32e34fe1 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 AND MIT + noarch: python + size: 18549 + timestamp: 1691969831255 +- name: typing-extensions + version: 4.7.1 + manager: conda + platform: win-64 + dependencies: + typing_extensions: ==4.7.1 pyha770c72_0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda + hash: + md5: f96688577f1faa58096d06a45136afa2 + sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d + optional: false + category: main + build: hd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 10080 + timestamp: 1688315729011 +- name: typing_extensions + version: 4.7.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda + hash: + md5: c39d6a09fe819de4951c2642629d9115 + sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1 + optional: false + category: main + build: pyha770c72_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 36321 + timestamp: 1688315719627 +- name: typing_inspect + version: 0.9.0 + manager: conda + platform: win-64 + dependencies: + mypy_extensions: '>=0.3.0' + python: '>=3.5' + typing_extensions: '>=3.7.4' + url: https://conda.anaconda.org/conda-forge/noarch/typing_inspect-0.9.0-pyhd8ed1ab_0.conda + hash: + md5: 9e924b76b91908a17e28a19a0ab88687 + sha256: 16e0b825c138e14ebc84623248d91d93a8cff29bb93595cc4aa46ca32f24f1de + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14906 + timestamp: 1685820229594 +- name: typing_utils + version: 0.1.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6.1' + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: eb67e3cace64c66233e2d35949e20f92 + sha256: 9e3758b620397f56fb709f796969de436d63b7117897159619b87938e1f78739 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 13829 + timestamp: 1622899345711 +- name: tzdata + version: 2023c + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + optional: false + category: main + build: h71feb2d_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 +- name: ucrt + version: 10.0.22621.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + hash: + md5: 72608f6cd3e5898229c3ea16deb1ac43 + sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 + optional: false + category: main + build: h57928b3_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-Proprietary + license_family: PROPRIETARY + size: 1283972 + timestamp: 1666630199266 +- name: ukkonen + version: 1.0.1 + manager: conda + platform: win-64 + dependencies: + cffi: '*' + 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' + url: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py311h005e61a_3.tar.bz2 + hash: + md5: 345c6b3bee32bb1d87a4e8759ec6cbff + sha256: 657648ad15dd3062d417040371935983ac5c9a57ec8ff14e9c862a57058a242f + optional: false + category: main + build: py311h005e61a_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: MIT + license_family: MIT + size: 16845 + timestamp: 1666949495412 +- name: uri-template + version: 1.3.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda + hash: + md5: 0944dc65cb4a9b5b68522c3bb585d41c + sha256: b76904b53721dc88a46352324c79d2b077c2f74a9f7208ad2c4249892669ae94 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 23999 + timestamp: 1688655976471 +- name: urllib3 + version: 2.0.4 + manager: conda + platform: win-64 + dependencies: + brotli-python: '>=1.0.9' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.4-pyhd8ed1ab_0.conda + hash: + md5: 18badd8fa3648d1beb1fcc7f2e0f756e + sha256: 06a62b6bff8828161b9cd17dd394e47177f320ca5050f806bc7840f9519e8ea7 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 98368 + timestamp: 1689789963646 +- name: vc + version: '14.3' + manager: conda + platform: win-64 + dependencies: + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda + hash: + md5: 67ff6791f235bb606659bf2a5c169191 + sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 + optional: false + category: main + build: h64f974e_17 + arch: x86_64 + subdir: win-64 + build_number: 17 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17176 + timestamp: 1688020629925 +- name: vc14_runtime + version: 14.36.32532 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hdcecf7f_17.conda + hash: + md5: d0de20f2f3fc806a81b44fcdd941aaf7 + sha256: b317d49af32d5c031828e62c08d56f01d9a64cd3f40d4cccb052bc38c7a9e62e + optional: false + category: main + build: hdcecf7f_17 + arch: x86_64 + subdir: win-64 + build_number: 17 + constrains: + - vs2015_runtime 14.36.32532.* *_17 + license: LicenseRef-ProprietaryMicrosoft + license_family: Proprietary + size: 739437 + timestamp: 1694292382336 +- name: virtualenv + version: 20.24.4 + manager: conda + platform: win-64 + dependencies: + distlib: <1,>=0.3.7 + filelock: <4,>=3.12.2 + platformdirs: <4,>=3.9.1 + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda + hash: + md5: c3feaf947264a59a125e8c26e98c3c5a + sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 3037516 + timestamp: 1693423086816 +- name: vs2015_runtime + version: 14.36.32532 + manager: conda + platform: win-64 + dependencies: + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda + hash: + md5: 4618046c39f7c81861e53ded842e738a + sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 + optional: false + category: main + build: h05e6639_17 + arch: x86_64 + subdir: win-64 + build_number: 17 + license: BSD-3-Clause + license_family: BSD + size: 17207 + timestamp: 1688020635322 +- name: wcwidth + version: 0.2.6 + manager: conda + platform: win-64 + dependencies: + backports.functools_lru_cache: '*' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 29133 + timestamp: 1673864747518 +- name: webcolors + version: '1.13' + manager: conda + platform: win-64 + dependencies: + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda + hash: + md5: 166212fe82dad8735550030488a01d03 + sha256: 6e097d5fe92849ad3af2c2a313771ad2fbf1cadd4dc4afd552303b2bf3f85211 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18186 + timestamp: 1679900907305 +- name: webencodings + version: 0.5.1 + manager: conda + platform: win-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2 + hash: + md5: 3563be4c5611a44210d9ba0c16113136 + sha256: 302f4f4bd1ad00c0be1426ecf6bb01db59cfd8aff3de0cf1596526dca1a6b70e + optional: false + category: main + build: py_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: BSD 3-Clause + license_family: BSD + noarch: python + size: 11901 + timestamp: 1535427077373 +- name: websocket-client + version: 1.6.3 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.3-pyhd8ed1ab_0.conda + hash: + md5: 38563b419c06ed97458d081df36beec0 + sha256: 6b7dbfc6b5b1ac8d5d90b963802c12fbd1ea7c3e515b91928c7945c343aae979 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + noarch: python + size: 45801 + timestamp: 1694440537593 +- name: wheel + version: 0.41.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda + hash: + md5: 1ccd092478b3e0ee10d7a891adbf8a4f + sha256: 21bcec5373b04d739ab65252b5532b04a08d229865ebb24b5b94902d6d0a77b0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 57488 + timestamp: 1692700760369 +- name: win_inet_pton + version: 1.1.0 + manager: conda + platform: win-64 + dependencies: + __win: '*' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + hash: + md5: 30878ecc4bd36e8deeea1e3c151b2e0b + sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 + optional: false + category: main + build: pyhd8ed1ab_6 + arch: x86_64 + subdir: win-64 + build_number: 6 + license: PUBLIC-DOMAIN + noarch: python + size: 8191 + timestamp: 1667051294134 +- name: winpty + version: 0.4.3 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + hash: + md5: 1cee351bf20b830d991dbe0bc8cd7dfe + sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 + optional: false + category: main + build: '4' + arch: x86_64 + subdir: win-64 + build_number: 4 + license: MIT + license_family: MIT + size: 1176306 +- name: wrapt + version: 1.15.0 + manager: conda + platform: win-64 + dependencies: + 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' + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.15.0-py311ha68e1ae_0.conda + hash: + md5: 35cd340b3649a688d4326c90bc388a3a + sha256: b551dbff1aab4d38383746b7a2e11315c41029049931fdb262709efa12b42213 + optional: false + category: main + build: py311ha68e1ae_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 60222 + timestamp: 1677485885235 +- name: xarray + version: 2023.8.0 + manager: conda + platform: win-64 + dependencies: + numpy: '>=1.22' + packaging: '>=21.3' + pandas: '>=1.4' + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-2023.8.0-pyhd8ed1ab_0.conda + hash: + md5: a8104cede521616573e228c27f9edc97 + sha256: f6b4f46ed3b94f5f74823a8341d8aaeb9fe894540715e65bf72fa1f7c72c7e1b + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + constrains: + - dask-core >=2022.7 + - zarr >=2.12 + - flox >=0.5 + - nc-time-axis >=1.4 + - bottleneck >=1.3 + - cftime >=1.6 + - matplotlib-base >=3.5 + - h5py >=3.6 + - distributed >=2022.7 + - netcdf4 >=1.6.0 + - pint >=0.19 + - hdf5 >=1.12 + - seaborn >=0.11 + - toolz >=0.12 + - h5netcdf >=1.0 + - cartopy >=0.20 + - scipy >=1.8 + - iris >=3.2 + - sparse >=0.13 + - numba >=0.55 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 690486 + timestamp: 1692570616396 +- name: xerces-c + version: 3.2.4 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_3.conda + hash: + md5: 28c6b90f40c9c37d3334ba8225143690 + sha256: 76e5ba07c06947ff7dcee6e9fe47e436e7a5ec5d94ad23102186769459af1403 + optional: false + category: main + build: h63175ca_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 3509286 + timestamp: 1692976908514 +- name: xmipy + version: 1.3.1 + manager: conda + platform: win-64 + dependencies: + bmipy: '*' + numpy: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/xmipy-1.3.1-pyhd8ed1ab_0.conda + hash: + md5: a3c8465bfc71004064a30c0238a74ea3 + sha256: d702574ef63e5e44085c390b46090380097b3d63bbcbfe8d9e85f1828663d04c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: CC0-1.0 + noarch: python + size: 18460 + timestamp: 1681486998644 +- name: xorg-libxau + version: 1.0.11 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs: '*' + m2w64-gcc-libs-core: '*' + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda + hash: + md5: c46ba8712093cb0114404ae8a7582e1a + sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77 + optional: false + category: main + build: hcd874cb_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 51297 + timestamp: 1684638355740 +- name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs: '*' + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 + hash: + md5: 46878ebb6b9cbd8afcf8088d7ef00ece + sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93 + optional: false + category: main + build: hcd874cb_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 67908 + timestamp: 1610072296570 +- name: xyzservices + version: 2023.7.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.7.0-pyhd8ed1ab_0.conda + hash: + md5: aacae3c0eaba0204dc6c5497c93c7992 + sha256: 3ca07b5255b4f9b350994bbe4482d44f9d9334610215af5ae174c8c8b99994e4 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 36307 + timestamp: 1689285902230 +- name: xz + version: 5.2.6 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + hash: + md5: 515d77642eaa3639413c6b1bc3f94219 + sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 + optional: false + category: main + build: h8d14728_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 217804 + timestamp: 1660346976440 +- name: yaml + version: 0.2.5 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + hash: + md5: adbfb9f45d1004a26763652246a33764 + sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 + optional: false + category: main + build: h8ffe710_2 + arch: x86_64 + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 63274 + timestamp: 1641347623319 +- name: zeromq + version: 4.3.4 + manager: conda + platform: win-64 + dependencies: + libsodium: '>=1.0.18,<1.0.19.0a0' + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2 + hash: + md5: e1aff0583dda5fb917eb3d2c1025aa80 + sha256: 0489cc6c3bff50620879890431d7142fd6e66b7770ddc6f2d7852094471c0d6c + optional: false + category: main + build: h0e60522_1 + arch: x86_64 + subdir: win-64 + build_number: 1 + license: LGPL-3.0-or-later + license_family: LGPL + size: 9355377 + timestamp: 1629968018045 +- name: zipp + version: 3.16.2 + manager: conda + platform: win-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.2-pyhd8ed1ab_0.conda + hash: + md5: 2da0451b54c4563c32490cb1b7cf68a1 + sha256: 16d72127e150a3d5cbdc0b82c4069ef5be135c64bc99e71e7928507910669b41 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18783 + timestamp: 1689374602448 +- name: zlib + version: 1.2.13 + manager: conda + platform: win-64 + dependencies: + libzlib: ==1.2.13 hcfcfb64_5 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda + hash: + md5: a318e8622e11663f645cc7fa3260f462 + sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 + optional: false + category: main + build: hcfcfb64_5 + arch: x86_64 + subdir: win-64 + build_number: 5 + license: Zlib + license_family: Other + size: 107711 + timestamp: 1686575474476 +- name: zstd + version: 1.5.5 + manager: conda + platform: win-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda + hash: + md5: 792bb5da68bf0a6cac6a6072ecb8dbeb + sha256: d540dd56c5ec772b60e4ce7d45f67f01c6614942225885911964ea1e70bb99e3 + optional: false + category: main + build: h12be248_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 343428 + timestamp: 1693151615801 +version: 1 diff --git a/pixi.toml b/pixi.toml new file mode 100644 index 000000000..7847d39b1 --- /dev/null +++ b/pixi.toml @@ -0,0 +1,73 @@ +[project] +name = "Ribasim" +version = "0.1.0" +description = "Add a short description here" +authors = ["Hofer-Julian "] +channels = ["conda-forge"] +platforms = ["win-64"] + +[tasks] +install-ribasim-python = "pip install --no-deps --editable python/ribasim" +install-ribasim-api = "pip install --no-deps --editable python/ribasim_api" +install-ribasim-testmodels = "pip install --no-deps --editable python/ribasim_testmodels" +install-quartodoc = "pip install quartodoc" +pre-commit-install = "pre-commit install" +post-install = { depends_on = [ + "install-ribasim-python", + "install-ribasim-api", + "install-ribasim-testmodels", + "install-quartodoc", + "pre-commit-install", +] } +instantiate-julia-docs = "cd docs && julia --project -e \"using Pkg; Pkg.instantiate()\"" +build-julia-docs = { cmd = "cd docs && julia --project make.jl", depends_on = [ + "instantiate-julia-docs", +] } +quartodoc-build = "cd docs && quartodoc build && rm objects.json" +quarto-preview = { cmd = "quarto preview docs", depends_on = ["quartodoc-build"] } +quarto-check = { cmd = "quarto check all", depends_on = ["quartodoc-build"] } +quarto-render = "quarto render docs --to html --execute" +mypy-ribasim-python = "mypy --ignore-missing-imports python/ribasim/ribasim" +mypy-ribasim-testmodels = "mypy --ignore-missing-imports python/ribasim_testmodels/ribasim_testmodels" +mypy-ribasim-api = "mypy --ignore-missing-imports python/ribasim_api/ribasim_api" +pre-commit = "pre-commit run --all-files" +lint = { depends_on = [ + "pre-commit", + "mypy-ribasim-python", + "mypy-ribasim-testmodels", + "mypy-ribasim-api", +] } +test-ribasim-python = "pytest python/ribasim/tests" +test-ribasim-python-cov = "pytest --cov=ribasim --cov-report=xml python/ribasim/tests" +test-ribasim-api = "pytest python/ribasim_api/tests" +generate-testmodels = "python utils/generate-testmodels.py" + + +[dependencies] +black = "*" +black-jupyter = "*" +build = "*" +datamodel-code-generator = "*" +geopandas = "*" +jupyterlab = "*" +matplotlib = "*" +mypy = "*" +pandas = "!=2.1.0" +pandas-stubs = "*" +pandera = "*" +pip = "*" +pre-commit = "*" +pyarrow = "*" +pydantic = "~=1.0" +pyogrio = "*" +pytest = "*" +pytest-cov = "*" +python = ">=3.9" +quarto = "*" +ruff = "*" +shapely = ">=2.0" +tomli = "*" +tomli-w = "*" +twine = "*" +xarray = "*" +xmipy = "*" diff --git a/python/ribasim/tests/conftest.py b/python/ribasim/tests/conftest.py index 877cbfa4a..c2e23b670 100644 --- a/python/ribasim/tests/conftest.py +++ b/python/ribasim/tests/conftest.py @@ -1,5 +1,3 @@ -from pathlib import Path - import pytest import ribasim import ribasim_testmodels @@ -24,18 +22,3 @@ def tabulated_rating_curve() -> ribasim.Model: @pytest.fixture() def backwater() -> ribasim.Model: return ribasim_testmodels.backwater_model() - - -# write models to disk for Julia tests to use -if __name__ == "__main__": - datadir = Path("data") - - models = [ - model_generator() - for model_generator in map( - ribasim_testmodels.__dict__.get, ribasim_testmodels.__all__ - ) - ] - - for model in models: - model.write(datadir / model.modelname) diff --git a/utils/generate-testmodels.py b/utils/generate-testmodels.py new file mode 100644 index 000000000..4b5f7dd39 --- /dev/null +++ b/utils/generate-testmodels.py @@ -0,0 +1,16 @@ +from pathlib import Path + +import ribasim_testmodels + +if __name__ == "__main__": + datadir = Path("data") + + models = [ + model_generator() + for model_generator in map( + ribasim_testmodels.__dict__.get, ribasim_testmodels.__all__ + ) + ] + + for model in models: + model.write(datadir / model.modelname)