From b3100a903360c5bfde479d6b7c4e538292e44301 Mon Sep 17 00:00:00 2001 From: HendrikKok Date: Tue, 2 Jul 2024 12:07:09 +0200 Subject: [PATCH 1/3] update preprocessing RibaMetaMod --- docs/coupler_ribametamod_preprocessing.qmd | 220 + pixi.lock | 20178 ------------------- 2 files changed, 220 insertions(+), 20178 deletions(-) create mode 100644 docs/coupler_ribametamod_preprocessing.qmd delete mode 100644 pixi.lock diff --git a/docs/coupler_ribametamod_preprocessing.qmd b/docs/coupler_ribametamod_preprocessing.qmd new file mode 100644 index 0000000..5326e17 --- /dev/null +++ b/docs/coupler_ribametamod_preprocessing.qmd @@ -0,0 +1,220 @@ +--- +title: Pre-processing +--- + +This document describes how to setup a coupled Ribasim-MetaSWAP-MODFLOW6 model. The `primod` Python package is used to setting up coupled models. It takes all three models, derives the exchange relationships, and writes: + +* the Ribasim model +* the MetaSWAP model +* the MODFLOW 6 simulation +* the exchange files +* the iMOD coupler configuration file +* the optional logging configuration file + +The derivation of exchange connections between the models is automatic, and +based on the spatial information provided for both models. + +As `primod` is a Python package, all three models must be represented in Python: + +* The Ribasim model is represented by the + [Model](https://deltares.github.io/Ribasim/python/reference/#model) class of + the `ribasim` Python package. +* The MODFLOW 6 simulation is represented by the + [Modflow6Simulation](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Modflow6Simulation.html) + class of the `imod` Python package. +* The MetaSWAP model is represented by the + [MetaSwapModel](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.MetaSwapModel.html) class of the `imod` Python package + +The combination of the three models is represented by the [RibaMetaMod](primod_api/RibaMetaMod.html#primod.RibaMetaMod) class of `primod`. + +The [Modflow6Simulation](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Modflow6Simulation.html) and Ribasim [Model](https://deltares.github.io/Ribasim/python/reference/#model) can be initialised from a TOML file with associated data. The [MetaSwapModel](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.MetaSwapModel.html) +does not support this yet. Initialising this model can be scripted. + + +## Coupling and model requirements +The [RibaMetaMod](primod_api/RibaMetaMod.html#primod.RibaMetaMod) class includes three seperate couplings. + +### MODFLOW 6 and MetaSWAP +This coupling is equal to the [MetaMod](primod_api/MetaMod.html#primod.MetaMod) driver. This coupling requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages: + +* [Recharge](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Recharge.html) for the exchange of the flux from the unstaurated zone. +* [Wel](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Wel.html) for the optional exchange of irrigation from groundwater + +This coupling requires the following [MetaSWAP](https://deltares.github.io/imod-python/api/msw.html) packages: + +* [Sprinkling](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.Sprinkling.html) to define the maximum irrigation rate. +* [LanduseOptions](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.LanduseOptions.html) to specify the irrigation regime. + +### MODFLOW 6 and Ribasim +This coupling is equal to the one of [RibaMod](primod_api/RibaMod.html#primod.RibaMod). This coupling requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages: + +* [River](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) and/or [Drainage](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Drainage.html) to exchange stage (active) and/or flux (active and passive). + +This coupling has the folowing requirement on the Ribasim model: + +* The [Basins](https://deltares.github.io/Ribasim/reference/node/basin.html) need to be set up with a [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) for active coupling. + +Consistency between MODFLOW 6 and Ribasim subgrid +: During the coupling, water levels should not be set below the bed elevation +of the boundary. For drainage packages, this is the drainage elevation +provided in the MODFLOW 6 input; for river packages, this is the bottom +elevation provided in the MODFLOW 6 input. + +There is potential for inconsistency here, as Ribasim also describes a bed +elevation: the lowest level of the [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) piecewise interpolation table: + +* In case the MODFLOW 6 bed elevation is higher than the [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) elevation, + infiltration will stop before the Ribasim basin is empty. +* In case the MODFLOW 6 bed elevation is lower than the [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid)elevation, + infiltration will proceed even when the Ribasim basin is empty. In this case `primod` will raise an error + +### Ribasim and MetaSWAP +This coupling is used for routing runoff at the subsurface to the Ribasim basins. This coupling requires the following [MetaSWAP](https://deltares.github.io/imod-python/api/msw.html) package: + +* [Ponding](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.Ponding.html) to define the ponding level at which runoff is generated. + +Optionally the irrigation from surface water can be coupled to the [UserDemand](https://deltares.github.io/Ribasim/reference/node/user-demand.html) in Ribasim. In that case the sprinkling realised in MetaSWAP, depends on the water availability for the [UserDemand](https://deltares.github.io/Ribasim/reference/node/user-demand.html) in Ribasim. This coupling requires the following [MetaSWAP](https://deltares.github.io/imod-python/api/msw.html) packages: + +* [Sprinkling](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.Sprinkling.html) to define the maximum irrigation rates. +* [LanduseOptions](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.LanduseOptions.html) to specify the irrigation regime. + +This coupling has the following requirements on the Ribasim model: + +* There should be [User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) defined with one priority per coupled water user. For this priority there should be a rate defined > 0.0 + +If [Allocation](https://deltares.github.io/Ribasim/reference/python/Allocation.html#ribasim.Allocation) is active in the Ribasim model, The demand-realisation cyle is based on the user priority and the water availibility. When it's inactive its based on water availibility alone. + + +## Coupling and model extents +* The start and end times of the Ribasim, MetaSWAP and MODFLOW 6 simulations must align. + `primod` will raise an error otherwise. +* Spatial extents of the models need not coincide: + + Part of the Ribasim basins may be located outside of the MODFLOW 6 and MetaSWAP simulation window. Uncoupled basins will proceed with the regular drainage and irrigation terms define in the model. + + Not every MODFLOW 6 River and Drainage boundary needs to be linked with + Ribasim. Boundaries outside of any basin polygon will simply use the regular + file input. + + Not every MetaSWAP SVAT need to be linked with Ribasim. For uncoupled SVATS, runoff is not routed via the surface water and irrigation from surface water is unlimited. + + The MetaSWAP model does not need to be active in the complete MODFLOW 6 simulation window. Uncoupled MODFLOW 6 nodes can have an aditional [RCH](https://deltares.github.io/imod-python/api/generated/msw/imod.mf6.Recharge.html) and [EVT](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Evapotranspiration.html) package. + + +## Abbreviated examples of coupling + +The following abbreviated example for coupling Runoff: + +* Reads a Ribasim model +* Takes a MetaSWAP model +* Reads a MODFLOW 6 simulation +* Reads a basin definition associated with the Ribasim model +* Defines a driver coupling: which river and drainage packages are coupled +* Sets up a coupled model +* Writes the coupled model + + +``` python +import ribasim +import geopandas as gpd +import imod +import primod + + +ribasim_model = ribasim.Model.read("ribasim/ribasim.toml") +metaswap_model = metaswap_model_from_script +mf6_simulation = imod.mf6.Modflow6Simulation.from_file("modflow/GWF_1.toml") + +basin_definition = gpd.read_file("ribasim_network.gpkg", layer="basin_areas") + +# Active coupling Ribasim - MODFLOW +driver_coupling_ribamod_active = primod.RibaModActiveDriverCoupling( + mf6_model="GWF_1", + mf6_packages=["riv-1"], + basin_definition=basin_definition, +) +# coupling Ribasim - MetaSWAP +driver_coupling_ribameta = primod.RibaMetaDriverCoupling( + ribasim_basin_definition=basin_definition, +) +# coupling MODFLOW 6 - MetaSWAP +driver_coupling_metamod = primod.MetaModDriverCoupling( + mf6_model="GWF_1", + mf6_recharge_package="rch_msw", + mf6_wel_package="well_msw", +) +# generate coupled model +ribametamod_model = primod.RibaMetaMod( + ribasim_model=ribasim_model, + mf6_simulation=mf6sim, + coupling_list=[driver_coupling_ribamod_active, driver_coupling_ribameta,driver_coupling_metamod], +) + +ribametamod_model.write( + directory="coupled-ribametamod-simulation", + modflow6_dll=r"c:\bin\imod_coupler\modflow6\libmf6.dll", + ribasim_dll=r"c:\bin\imod_coupler\ribasim\bin\libribasim.dll", + ribasim_dll_dependency=r"c:\bin\imod_coupler\ribasim\bin", +) +``` + +For including the optional coupling of irrigation from surface water, the folowing adition can be done: + +``` python +# read aditional water-user definition polygon +water_users_definition = gpd.read_file("ribasim_network.gpkg", layer="water_user_areas") + +# add water-user definition to the RibaMetaDriverCoupling +driver_coupling_ribameta = primod.RibaMetaDriverCoupling( + ribasim_basin_definition=basin_definition, + ribasim_user_demand_definition=water_users_definition, +) + +# proceed as previous example + +``` + +## Exchange derivation +The exchanges are derived based on spatial overlap of the models. In general all couplings with ribasim are based on a spatial overlap of the basin and/or water user definition polygons. The coupling between MODFLOW 6 6 and MetaSWAP is based on overlapping grid based coordinates. The coupling based on polygon defninitions is done in the folowing way: + +* Rasterize the basin and/or Water users definition polygons (provided as a + `geopandas.GeoDataFrame`) to the MODFLOW 6 or MetaSWAP model grid. +* Overlay the grid-based variable on the rasterized basin definition, + and derive for each gridcel the basin index. +* Identify the indices of the coupled MODFLOW 6 or MetaSWAP gridcel. +* Store the basin indices and gridcel indices in a table. + +Ribasim and MODFLOW +: For the flux exchange, the Overlay is based on the [river](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) conductance. The indices are based on the package level. For the stage exchange, the mapping is based on the x and y locations of the [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) elements. For every [river](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) conductance gridcell the neirest [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) element is found. + +Ribasim and MetaSWAP +: For Runoff exchange the Overlay is based on the basin definition and all active SVATS. For the irrigation of surface water, the Overlay is based on the water user definition and all SVATS where irrigation from surface water is active. + +MODFLOW 6 and MetaSWAP +: The grid based recharge, storage and well exchange is based on overlapping xy-coordinates. The optional 1-N coupling between MODFLOW 6 and MetaSWAP is based on the subunit coordinate in the MetaSWAP model. + + +## Modifications to the models + +Ribasim +: The `primod.RibaMod` class makes the following alteration to the Ribasim input +before writing the Ribasim model: + +* for basins that are coupled to MODFLOW 6, +the infiltration and drainage columns are set to `NaN` / `Null` (nodata) in +the Basin / Static or Basin / Time tables. + +This ensures that Ribasim does not overwrite the exchange flows while running +coupled with MODFLOW 6. + +Conceptually, it also means that when a basin is coupled, it should generally +located inside of the MODFLOW 6 model; after all, when half of the basin is +located outside of the MODFLOW 6 model, it will not receive drainage or lose +water to infiltration in that half. + +* For all [User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) coupled to MetaSWAP, the rate is set to zero after initialisation of the iMOD-coupler. The rate > 0 is needed to find the coupled indices from the internal +[User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) array. + +Modflow 6 +: For all actively coupled RIV packages an API-package is added to the simulation. This package is used to return the correction flux. When making a water-balance from the MODFLOW 6 output, this package output should be summed with the RIV output + +MetaSWAP +: curently no modifications are made in the MetaSWAP model + + diff --git a/pixi.lock b/pixi.lock deleted file mode 100644 index 7b9ed3f..0000000 --- a/pixi.lock +++ /dev/null @@ -1,20178 +0,0 @@ -version: 5 -environments: - default: - channels: - - url: https://conda.anaconda.org/conda-forge/ - packages: - linux-64: - - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/affine-2.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.9.5-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.11-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h98912ed_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/astunparse-1.6.3-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.17-he0b1f16_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.11-heb1d5e4_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.15-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-hce8ee76_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-h01f5eca_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hdb68c23_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.7-hbfbeace_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-h50844eb_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.7-hb7bd14b_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-hce8ee76_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-hce8ee76_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.6-hf567797_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hbf3e495_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.18.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-hc2324a3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.4.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/bottleneck-1.3.8-py312hc7c0aa3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/branca-0.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.3.1-hbdc6101_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.3-py312h085067d_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/contextily-1.6.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.2.1-py312h8572e83_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.3-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/dart-sass-1.58.3-ha770c72_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-expr-1.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.1-py312h30efb56_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/deno-1.37.2-h335b0a9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/deno-dom-0.1.35-hd9586b0_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distributed-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.0-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/esbuild-0.19.2-ha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fastcore-1.5.42-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.17.3-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_108.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.6-py312h66d9856_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/folium-0.16.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.53.0-py312h9a8786e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.4.1-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.5.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.4-py312h257dd4b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.10-h829c605_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.4-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geopy-2.4.1-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6b2125f_15.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-h0708190_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/glib-2.78.4-hfc55251_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.78.4-hfc55251_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.0-hed5481d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/graphviz-9.0.0-h78e8752_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/griffe-0.45.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.9-h8e1006c_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.9-h98fc4e7_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h280cfa0_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_102.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.36-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/imod-0.17.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.1.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyhd33586a_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.25.0-pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.5-h4bd325d_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py312h7900ff3_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.22.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.7.2-py312h7900ff3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-hee9dde6_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.5-py312h8572e83_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-15.0.2-he70291f_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-15.0.2-hac33072_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-15.0.2-hac33072_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-15.0.2-hd42f311_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-sql-15.0.2-h9241762_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-gandiva-15.0.2-hd4ab825_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-15.0.2-h9241762_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.85.0-ha770c72_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h127d8a8_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h5d6823c_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h119a65a_9.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.4-h9323651_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-hca663fb_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.4-h783c2da_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.49-h4f305b6_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.10.0-default_h5622ce7_1001.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm14-14.0.6-hcd5def8_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hb3ce162_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm16-16.0.6-hb3ce162_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.9.0-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2da1b83_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hb045406_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hb045406_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h5c03a75_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2da1b83_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2da1b83_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h5c03a75_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h07e8aee_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h07e8aee_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-he02047a_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-h39126c6_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-he02047a_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-15.0.2-h6a7eafb_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-16.3-ha72fbe1_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.56.3-he3f83f7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-he02047a_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h7bd4643_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h7f98852_1005.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-ha9c0a0a_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.4.0-h2c329e2_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.7.0-h662e7e4_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-hc051c1a_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h4ab18f5_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/llvmlite-0.42.0-py312hb06c811_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.3-py312h03f37cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mercantile-1.2.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/modflow6-6.5.0-h47e962c_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.6-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.8-py312h2492b07_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.5-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/multimethod-1.9.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_6.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.6.5-nompi_py312h39d4375_101.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.3-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/nss-3.100-hca3bf56_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/numba-0.59.1-py312hacefee8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/numba_celltree-0.1.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.12.1-py312h7070661_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.0-h4ab18f5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.0-h17fec99_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.2-py312h1d6d2e6_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandera-0.19.3-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandera-base-0.19.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.11.1-ha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.52.1-ha41ecd1_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.42-hcad00b1_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py312hdcec9eb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/plum-dispatch-2.3.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/poppler-24.02.0-h590f24d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.3-h8e811e2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/primod-2024.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.3.1-h1d62c97_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-15.0.2-py312h3340c41_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyarrow-hotfix-0.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.18.3-py312h4413252_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pymetis-2023.1.1-py312h546a421_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyogrio-0.7.2-py312h66d9856_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.6.1-py312h38f1c37_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.2-hab00c5b_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.19.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.3-pyh717bed2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.43.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.0.3-py312h8fd38d8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5810be5_19.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/quarto-1.4.550-ha770c72_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/quartodoc-0.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rasterio-1.3.9-py312h26ef92c_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-51.0-hd3aeb46_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/ribasim-2024.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rioxarray-0.15.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.1-py312h4413252_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/rtree-1.2.0-py312hb0aae1a_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.12-h06160fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.5.0-py312h1fcc3ea_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.13.1-py312hc2bc53b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/shapely-2.0.4-py312ha5b4d35_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sphobjinv-2.3.1.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.3-h2c6b66d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h297d8ca_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2021.12.0-h7c56ddd_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.20.1-hcf523ab_7.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-w-1.0.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20240316-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_inspect-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-ha691c75_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py312h8572e83_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.5-ha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.26.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/watchdog-4.0.1-py312h7900ff3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.0.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2024.5.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h8ee46fc_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h8ee46fc_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h8ee46fc_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.5-hac6953d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.41-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-h7f98852_1002.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/xugrid-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2024.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.9.4-py312h98912ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zarr-2.18.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h75354e8_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h4ab18f5_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda - osx-64: - - conda: https://conda.anaconda.org/conda-forge/noarch/affine-2.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.9.5-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.8.2-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py312h104f124_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/astunparse-1.6.3-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.17-hb47d15a_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.11-hbce485b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.15-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h53e3db5_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-he461af8_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-h0afc28a_10.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.7-h6254544_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-hd66502f_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.7-h4907f8a_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h53e3db5_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h53e3db5_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.6-hfb53d2e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h01edc24_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.11.1-hbb1e571_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.10.0-h7728843_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.5.0-h0e82ce4_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.18.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-hafa3907_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.4.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/bottleneck-1.3.8-py312h3f2338b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/branca-0.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.3.1-h60fb419_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.3-py312h5dc8b90_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/contextily-1.6.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.2.1-py312h9230928_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cytoolz-0.12.3-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/dart-sass-1.58.3-h694c41f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-expr-1.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.1-py312hede676d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/deno-1.37.2-h51b076b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/deno-dom-0.1.35-h08cba0f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distributed-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.0-he965462_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/esbuild-0.19.2-h694c41f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fastcore-1.5.42-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.17.3-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.1-gpl_h6b92a41_108.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.6-py312hc18349f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/folium-0.16.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.53.0-py312hbd25219_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/freexl-2.0.0-h3ec172f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.4.1-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.5.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.8.4-py312h1be6df0_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.10-hd9e0ca3_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.4-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geopy-2.4.1-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h509af15_15.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gettext-tools-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.2-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gl2ps-1.4.2-h4cff582_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/glib-2.78.4-h2d185b6_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.78.4-h2d185b6_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.0-h31b1b29_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.9-h1951705_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/graphviz-9.0.0-hee74176_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/griffe-0.45.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.22.9-h3fb38fc_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.22.9-hf63bbb8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h8ca4665_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.3.0-hf45c392_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_102.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.36-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/imod-0.17.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.1.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyh3cd1d5f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.25.0-pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.5-h940c156_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py312hb401068_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.22.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.7.2-py312hb401068_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.3-hb2b617a_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.5-py312h49ebfd2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hc1bcbd7_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-15.0.2-h965e444_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-15.0.2-ha0df490_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-15.0.2-ha0df490_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-15.0.2-h41520de_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-sql-15.0.2-hb2e0ddf_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-gandiva-15.0.2-h6ac0def_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-15.0.2-hb2e0ddf_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-devel-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h80904bb_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.85.0-h694c41f_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-15.0.7-default_h7151d67_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-15.0.7-default_h0edc4dd_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-17.0.6-h88467a6_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.19-ha4e1b8e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h0dceb68_9.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.8.4-h46636ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-devel-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.78.4-hab64008_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.2-h384b2fc_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.10.0-default_h456cccd_1001.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libidn2-2.3.7-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-devel-0.22.5-h5ff76d1_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-hc8e404f_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-hbedff68_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7760872_113.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.0.0-hcdf21a5_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.0.0-hb622c4e_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.0.0-hb622c4e_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.0.0-h321ab60_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.0.0-hcdf21a5_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.0.0-h321ab60_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.0.0-hb2e0ddf_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.0.0-hb2e0ddf_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.0.0-ha0df490_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.0.0-h70945bb_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.0.0-ha0df490_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-15.0.2-h7cd3cfe_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libpq-16.3-h4501773_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.56.3-h1877882_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-hf05f67e_15.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-hf036a51_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-hebe6af1_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-h0d85af4_1005.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h684deea_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libunistring-0.9.10-h0d85af4_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.0-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.4.0-hc207709_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-h3e169fe_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h87427d6_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.6-h15ab845_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/llvmlite-0.42.0-py312h534208b_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.7.2-py312hb401068_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-4.3.3-py312h904eaf1_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.8.4-py312hb6d62fa_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mercantile-1.2.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.5-h37d7099_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.8-py312hc3c9ca0_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.5-py312h97956c7_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/multimethod-1.9.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.0.33-h1d20c9b_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.0.33-hed35180_6.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.6.5-nompi_py312hb3bfefa_101.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.9.1-h8e11ae5_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.11.3-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/nss-3.100-h6606ded_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/numba-0.59.1-py312h04e34b5_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/numba_celltree-0.1.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/numcodecs-0.12.1-py312h28f332c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py312he3a82b2_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.4.1-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.0-h87427d6_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.0-hf146577_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.2-py312h1171441_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandera-0.19.3-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandera-base-0.19.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.11.1-h694c41f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.52.1-h7f2093b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.42-h0ad2156_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-10.3.0-py312h0c923fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.43.4-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/plum-dispatch-2.3.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/poppler-24.02.0-h0c752f9_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.3-h1d90168_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/primod-2024.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/proj-9.3.1-h81faed2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.14-he965462_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-15.0.2-py312h352451a_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyarrow-hotfix-0.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pydantic-core-2.18.3-py312ha47ea1c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pymetis-2023.1.1-py312h2c024a5_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.2-py312h74abf1d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.2-py312h74abf1d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyogrio-0.7.2-py312h3aaa50d_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.6.1-py312h14d93e9_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.2-h9f0c242_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.19.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.3-pyh717bed2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.43.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-26.0.3-py312ha04878a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/qt-main-5.15.8-h4385fff_19.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/quarto-1.4.550-h694c41f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/quartodoc-0.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rasterio-1.3.9-py312h2bf6802_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/ribasim-2024.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rioxarray-0.15.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.18.1-py312ha47ea1c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rtree-1.2.0-py312h8974cf7_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.5.0-py312hc214ba5_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.13.1-py312hb9702fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/shapely-2.0.4-py312h3daf033_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.0-h6dc393e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sphobjinv-2.3.1.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.3-h7461747_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.0.0-h73e2aa4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h3c5361c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-devel-2021.12.0-h7393e1e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.20.1-h9fa30f9_7.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-w-1.0.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20240316-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_inspect-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2024a-h10d778d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py312h49ebfd2_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.8-h6aefe2f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.5-h694c41f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.26.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-io-ffmpeg-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/watchdog-4.0.1-py312hbd25219_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.0.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2024.5.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.5-hbbe9ea5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/xugrid-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2024.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/yarl-1.9.4-py312h41838bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zarr-2.18.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-hde137ed_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h87427d6_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda - win-64: - - conda: https://conda.anaconda.org/conda-forge/noarch/affine-2.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.9.5-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aom-3.8.2-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py312he70551f_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/astunparse-1.6.3-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.17-hb40cdec_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.11-ha21e00f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.15-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-ha21e00f_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-hf668b60_8.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-hd704247_10.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.7-h14865c8_6.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.3-h748201e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.7-h5da7064_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-ha21e00f_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-ha21e00f_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.6-h5bc0ceb_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h5d77392_6.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/azure-core-cpp-1.11.1-h249a519_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/azure-storage-blobs-cpp-12.10.0-h91493d7_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/azure-storage-common-cpp-12.5.0-h91493d7_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.18.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hbd69f2e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.4.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bottleneck-1.3.8-py312ha90f08f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/branca-0.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.28.1-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.0-h1fef639_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.3.1-h9b0cee5_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cftime-1.6.3-py312h1a27103_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/contextily-1.6.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.2.1-py312h0d7def4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cytoolz-0.12.3-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/dart-sass-1.58.3-h57928b3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dask-expr-1.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.1-py312h53d5487_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/deno-1.37.2-hc8b987e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/deno-dom-0.1.35-h8b8d39b_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distributed-2024.5.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/double-conversion-3.3.0-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/esbuild-0.19.2-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fastcore-1.5.42-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.17.3-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-6.1.1-gpl_h66c0b5b_108.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.6-py312h95cbb4d_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/folium-0.16.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.53.0-py312h4389bb4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/freexl-2.0.0-h8276f4a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.4.1-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.5.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gdal-3.8.4-py312h36e25a9_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.4-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/geopy-2.4.1-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/geos-3.12.1-h1537add_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hbf5ca3a_15.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/getopt-win32-0.1-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gettext-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gettext-tools-0.22.5-h7d00a51_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gl2ps-1.4.2-h0597ee9_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/glib-2.78.4-h12be248_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.78.4-h12be248_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/graphviz-9.0.0-h51cb2cd_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/griffe-0.45.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.9-h001b923_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.9-hb4038d2_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-8.3.0-h7ab893a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_h2b43c12_102.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/icu-73.2-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.36-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/imod-0.17.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.1.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.1.0-h57928b3_966.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyha63f2e9_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.25.0-pyh7428d3b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/jsoncpp-1.9.5-h2d74725_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py312h2e8e312_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.22.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.7.2-py312h2e8e312_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.3-h6c43f9b_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.5-py312h0d7def4_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240116.2-cxx17_h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-15.0.2-h45212c0_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-15.0.2-h8681a6d_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-15.0.2-h8681a6d_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-15.0.2-h83a3238_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-15.0.2-h21569af_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-15.0.2-h05de715_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-15.0.2-hea7f8fd_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libasprintf-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libasprintf-devel-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-22_win64_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libboost-headers-1.85.0-h57928b3_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-22_win64_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libclang-15.0.7-default_h3a3e6c3_5.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libclang13-15.0.7-default_hf64faad_5.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.19-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-h312136b_9.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgdal-3.8.4-h7c2897a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgettextpo-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgettextpo-devel-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.78.4-h16e383f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.22.0-h9cad5c0_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.22.0-hb581fae_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.62.2-h5273850_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.10.0-default_h8125262_1001.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libintl-devel-0.22.5-h5728263_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-haf3e7a6_1018.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-22_win64_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_h07c049d_113.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libparquet-15.0.2-h39135fc_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.43-h19919ed_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libpq-16.3-hab9416b_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.3-h503648d_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2023.09.01-hf8d8778_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-h94c4f80_15.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h5a68840_5.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.1.0-hf2f0abc_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libtheora-1.1.1-h8d14728_1005.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-h6e2ebb7_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-1.4.0-h2466b09_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.4.0-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h283a6d9_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libzip-1.10.1-h1d365fa_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-h2466b09_6.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/llvmlite-0.42.0-py312h7894644_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-4.3.3-py312h594ca44_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mercantile-1.2.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/metis-5.1.1-h63175ca_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/minizip-4.0.5-h5bed578_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.1.0-h66d3029_692.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.8-py312hd5eb7cc_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.5-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/multimethod-1.9.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/netcdf4-1.6.5-nompi_py312h2188312_101.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/nlohmann_json-3.11.3-h1537add_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/numba-0.59.1-py312h115d327_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/numba_celltree-0.1.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.12.1-py312h275cf98_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openh264-2.4.1-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.0-h2466b09_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.0-h7e885a9_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.2-py312h72972c8_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandera-0.19.3-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandera-base-0.19.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.11.1-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pango-1.52.1-h07c897b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.42-h17e33f8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py312h6f6a607_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.43.4-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/plum-dispatch-2.3.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/poppler-24.02.0-hc2f3c52_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/postgresql-16.3-h7f155c9_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/primod-2024.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/proj-9.3.1-he13c7e8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-15.0.2-py312h0247585_3_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyarrow-hotfix-0.6-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.18.3-py312h2615798_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pymetis-2023.1.1-py312hb9d1568_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyogrio-0.7.2-py312he3b4e22_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyproj-3.6.1-py312hc725b1e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.2-h2628c8c_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.19.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.3-pyh717bed2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.43.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-306-py312h53d5487_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.13-py312h53d5487_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.0.3-py312hd7027bb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h9e85ed6_19.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/quarto-1.4.550-h57928b3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/quartodoc-0.7.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/rasterio-1.3.9-py312hc028deb_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/ribasim-2024.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rioxarray-0.15.5-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.1-py312h2615798_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/rtree-1.2.0-py312h72b5f30_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.5.0-py312h816cc57_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/scipy-1.13.1-py312h1f4e10d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/shapely-2.0.4-py312h91267bd_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.2.0-hfb803bf_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.12.0-h64d2f7d_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sphobjinv-2.3.1.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/sqlite-3.45.3-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/svt-av1-2.0.0-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.12.0-hc790b64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-devel-2021.12.0-hb551fcf_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tiledb-2.20.1-hc9ddcec_7.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-w-1.0.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20240316-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_inspect-0.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py312h0d7def4_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/uriparser-0.9.8-h5a68840_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/utfcpp-4.0.5-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_20.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33135-h835141b_20.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.26.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33135-h22015db_20.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vtk-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vtk-base-9.2.6-qt_py312h1234567_220.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/watchdog-4.0.1-py312h2e8e312_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/win32_setctime-1.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.0.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2024.5.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.5-h63175ca_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.9-hefa74cf_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/xugrid-0.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2024.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/yarl-1.9.4-py312he70551f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zarr-2.18.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-he1f189c_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-h2466b09_6.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda -packages: -- kind: conda - name: _libgcc_mutex - version: '0.1' - build: conda_forge - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - md5: d7c89558ba9fa0495403155b64376d81 - license: None - size: 2562 - timestamp: 1578324546067 -- kind: conda - name: _openmp_mutex - version: '4.5' - build: 2_gnu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - md5: 73aaf86a425cc6e73fcf236a5a46396d - depends: - - _libgcc_mutex 0.1 conda_forge - - libgomp >=7.5.0 - constrains: - - openmp_impl 9999 - license: BSD-3-Clause - license_family: BSD - size: 23621 - timestamp: 1650670423406 -- kind: conda - name: affine - version: 2.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/affine-2.4.0-pyhd8ed1ab_0.conda - sha256: fbf0288cae7c6e5005280436ff73c95a36c5a4c978ba50175cc8e3eb22abc5f9 - md5: ae5f4ad87126c55ba3f690ef07f81d64 - depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 18726 - timestamp: 1674245215155 -- kind: conda - name: aiohttp - version: 3.9.5 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.9.5-py312h41838bb_0.conda - sha256: fce6b95a067af67fc5bd04a7d3e95e49da32ee09585f36bfc9ecc0460d2044a6 - md5: 559e0083034b5313393798e733f784bf - depends: - - aiosignal >=1.1.2 - - attrs >=17.3.0 - - frozenlist >=1.1.1 - - multidict >=4.5,<7.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yarl >=1.0,<2.0 - license: MIT AND Apache-2.0 - license_family: Apache - size: 773888 - timestamp: 1713965168770 -- kind: conda - name: aiohttp - version: 3.9.5 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.9.5-py312h98912ed_0.conda - sha256: 4727041c2bf3ee90f1a3bba68f846f6ea34f59b292bf5bc390db3bc4ae56d315 - md5: edc01db954d139fe398a5f378f96ab4d - depends: - - aiosignal >=1.1.2 - - attrs >=17.3.0 - - frozenlist >=1.1.1 - - libgcc-ng >=12 - - multidict >=4.5,<7.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yarl >=1.0,<2.0 - license: MIT AND Apache-2.0 - license_family: Apache - size: 803624 - timestamp: 1713964952117 -- kind: conda - name: aiohttp - version: 3.9.5 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.9.5-py312he70551f_0.conda - sha256: 5fdb9b9670d7c6ff91163e4302f050d0d4a5813a44ad543cc05893099ac7808a - md5: ed8105878c3c2a7d78f5d57ea63a8e14 - depends: - - aiosignal >=1.1.2 - - attrs >=17.3.0 - - frozenlist >=1.1.1 - - multidict >=4.5,<7.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - yarl >=1.0,<2.0 - license: MIT AND Apache-2.0 - license_family: Apache - size: 762890 - timestamp: 1713965487462 -- kind: conda - name: aiosignal - version: 1.3.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783 - md5: d1e1eb7e21a9e2c74279d87dafb68156 - depends: - - frozenlist >=1.1.0 - - python >=3.7 - license: Apache-2.0 - license_family: APACHE - size: 12730 - timestamp: 1667935912504 -- kind: conda - name: alsa-lib - version: 1.2.11 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.11-hd590300_1.conda - sha256: 0e2b75b9834a6e520b13db516f7cf5c9cea8f0bbc9157c978444173dacb98fec - md5: 0bb492cca54017ea314b809b1ee3a176 - depends: - - libgcc-ng >=12 - license: LGPL-2.1-or-later - license_family: GPL - size: 554699 - timestamp: 1709396557528 -- kind: conda - name: annotated-types - version: 0.7.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - sha256: 668f0825b6c18e4012ca24a0070562b6ec801ebc7008228a428eb52b4038873f - md5: 7e9f4612544c8edbfd6afad17f1bd045 - depends: - - python >=3.7 - - typing-extensions >=4.0.0 - license: MIT - license_family: MIT - size: 18235 - timestamp: 1716290348421 -- kind: conda - name: anyio - version: 4.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.3.0-pyhd8ed1ab_0.conda - sha256: 86aca4a31c09f9b4dbdb332cd9a6a7dbab62ca734d3f832651c0ab59c6a7f52e - md5: ac95aa8ed65adfdde51132595c79aade - depends: - - exceptiongroup >=1.0.2 - - idna >=2.8 - - python >=3.8 - - sniffio >=1.1 - - typing_extensions >=4.1 - constrains: - - trio >=0.23 - - uvloop >=0.17 - license: MIT - license_family: MIT - size: 102331 - timestamp: 1708355504396 -- kind: conda - name: aom - version: 3.8.2 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda - sha256: 49b1352e2b9710b7b5400c0f2a86c0bb805091ecfc6c84d3dbf064effe33bfbf - md5: 625e1fed28a5139aed71b3a76117ef84 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 2696998 - timestamp: 1710388229587 -- kind: conda - name: aom - version: 3.8.2 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aom-3.8.2-h63175ca_0.conda - sha256: dd79f4e3660ab169f4e2d9bf2d9e74001dcf6dfaa8d1168373b3450af5282286 - md5: 6691dd6833a29c95e3a16e08841a0f43 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 1968537 - timestamp: 1710388705950 -- kind: conda - name: aom - version: 3.8.2 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.8.2-h73e2aa4_0.conda - sha256: 967d05b46e0a8153c57070a94262d38ffc03378803c1faa0bad258e8635d3775 - md5: a519a6b9f8f0e2ce1b4ee77cbc6a0a09 - depends: - - libcxx >=16 - license: BSD-2-Clause - license_family: BSD - size: 2922373 - timestamp: 1710388791338 -- kind: conda - name: appnope - version: 0.1.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_0.conda - sha256: 45ae2d41f4a4dcf8707633d3d7ae376fc62f0c09b1d063c3049c3f6f8c911670 - md5: cc4834a9ee7cc49ce8d25177c47b10d8 - depends: - - python >=3.7 - license: BSD-2-Clause - license_family: BSD - size: 10241 - timestamp: 1707233195627 -- kind: conda - name: argon2-cffi - version: 23.1.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda - sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677 - md5: 3afef1f55a1366b4d3b6a0d92e2235e4 - depends: - - argon2-cffi-bindings - - python >=3.7 - - typing-extensions - constrains: - - argon2_cffi ==999 - license: MIT - license_family: MIT - size: 18602 - timestamp: 1692818472638 -- kind: conda - name: argon2-cffi-bindings - version: 21.2.0 - build: py312h104f124_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py312h104f124_4.conda - sha256: aa321e91f0ff365b5261fa1dcffa2d32aa957561bdbb38988e52e28e25a762a8 - md5: dddfb6125aed1fb84eb13319007c08fd - depends: - - cffi >=1.0.1 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 32556 - timestamp: 1695387174872 -- kind: conda - name: argon2-cffi-bindings - version: 21.2.0 - build: py312h98912ed_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h98912ed_4.conda - sha256: 8ddb4a586bc128f1b9484f82c5cb0226340527fbfe093adf3b76b7e755e11477 - md5: 00536e0a1734dcde9815fe227f32fc5a - depends: - - cffi >=1.0.1 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 35142 - timestamp: 1695386704886 -- kind: conda - name: argon2-cffi-bindings - version: 21.2.0 - build: py312he70551f_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py312he70551f_4.conda - sha256: 4c3c428b994400ca753d9d0adbb11ce2d2a87f4dacd86c91d6cf985c5d89a3e1 - md5: 69b7a1d899d46b91f8eecab9abf9728c - depends: - - cffi >=1.0.1 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 34750 - timestamp: 1695387347676 -- kind: conda - name: arrow - version: 1.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda - sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db - md5: b77d8c2313158e6e461ca0efb1c2c508 - depends: - - python >=3.8 - - python-dateutil >=2.7.0 - - types-python-dateutil >=2.8.10 - license: Apache-2.0 - license_family: Apache - size: 100096 - timestamp: 1696129131844 -- kind: conda - name: asciitree - version: 0.3.3 - build: py_2 - build_number: 2 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 - sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 - md5: c0481c9de49f040272556e2cedf42816 - depends: - - python - license: MIT - license_family: MIT - size: 6164 - timestamp: 1531050741142 -- kind: conda - name: asttokens - version: 2.4.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - sha256: 708168f026df19a0344983754d27d1f7b28bb21afc7b97a82f02c4798a3d2111 - md5: 5f25798dcefd8252ce5f9dc494d5f571 - depends: - - python >=3.5 - - six >=1.12.0 - license: Apache-2.0 - license_family: Apache - size: 28922 - timestamp: 1698341257884 -- kind: conda - name: astunparse - version: 1.6.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/astunparse-1.6.3-pyhd8ed1ab_0.tar.bz2 - sha256: e5173d1ed038038e24c0623f0219dc587ee8663cf7efa737e7075128edbc6c60 - md5: 000b6f68a0bfaba800ced7500c11780f - depends: - - python >=3.6 - - six >=1.6.1,<2.0 - license: BSD-3-Clause AND PSF-2.0 - size: 15539 - timestamp: 1610696401707 -- kind: conda - name: async-lru - version: 2.0.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 - md5: 3d081de3a6ea9f894bbb585e8e3a4dcb - depends: - - python >=3.8 - - typing_extensions >=4.0.0 - license: MIT - license_family: MIT - size: 15342 - timestamp: 1690563152778 -- kind: conda - name: atk-1.0 - version: 2.38.0 - build: h1d18e73_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2 - sha256: 7af1f86cfc85b1e57547e2a81c069095545ff6a52f3f8e15184df954dce446dd - md5: 5a538295f97a484ee332aacc131718b5 - depends: - - libcxx >=14.0.4 - - libglib >=2.74.1,<3.0a0 - constrains: - - atk-1.0 2.38.0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 367515 - timestamp: 1667421223751 -- kind: conda - name: atk-1.0 - version: 2.38.0 - build: hd4edc92_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2 - sha256: 2f9314de13c1f0b54510a2afa0cdc02c0e3f828fccfc4277734f9590b11a65f1 - md5: 6c72ec3e660a51736913ef6ea68c454b - depends: - - libgcc-ng >=12 - - libglib >=2.74.1,<3.0a0 - - libstdcxx-ng >=12 - constrains: - - atk-1.0 2.38.0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 551928 - timestamp: 1667420962627 -- kind: conda - name: attr - version: 2.5.1 - build: h166bdaf_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 - sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 - md5: d9c69a24ad678ffce24c6543a0176b00 - depends: - - libgcc-ng >=12 - license: GPL-2.0-or-later - license_family: GPL - size: 71042 - timestamp: 1660065501192 -- kind: conda - name: attrs - version: 23.2.0 - build: pyh71513ae_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea - md5: 5e4c0743c70186509d1412e03c2d8dfa - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 54582 - timestamp: 1704011393776 -- kind: conda - name: aws-c-auth - version: 0.7.17 - build: hb40cdec_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.17-hb40cdec_2.conda - sha256: 3a86263b08f8a454ebbc21ffa9f71a3daa86e32e2605e125878bec2d46147c32 - md5: 1d8527b98fbf4a803e92c2ee3d241ed8 - depends: - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 100109 - timestamp: 1712671026674 -- kind: conda - name: aws-c-auth - version: 0.7.17 - build: hb47d15a_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.17-hb47d15a_2.conda - sha256: b3bada3f35ae0b60b6ae575e2aeae3d7c828f362161dfbe3ebcf469f2f7ac73a - md5: 0152c8670d2459a170019a59985b8a88 - depends: - - __osx >=10.9 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - license: Apache-2.0 - license_family: Apache - size: 91309 - timestamp: 1712670722676 -- kind: conda - name: aws-c-auth - version: 0.7.17 - build: he0b1f16_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.17-he0b1f16_2.conda - sha256: 607755dd09088b0d7898733edbe91aea979c599dc8d710b0d267b71424673032 - md5: ea6d998135d5f8932cffc91381104690 - depends: - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 104450 - timestamp: 1712670541560 -- kind: conda - name: aws-c-cal - version: 0.6.11 - build: ha21e00f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.11-ha21e00f_0.conda - sha256: 3925aa37d9cbceb4cceb10ac1f602ca9e86bbea53ebbc2f560b97f51989c56bc - md5: 683d416db152019f181c34e74a3fd0a2 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 45832 - timestamp: 1712495134572 -- kind: conda - name: aws-c-cal - version: 0.6.11 - build: hbce485b_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.11-hbce485b_0.conda - sha256: a390f2c964408e9215046220351498bc80ca551be9dfac95702ce1be1dcfa436 - md5: a7b19e98d30d51fdf0546e048cc0a262 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - license: Apache-2.0 - license_family: Apache - size: 38803 - timestamp: 1712495186044 -- kind: conda - name: aws-c-cal - version: 0.6.11 - build: heb1d5e4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.11-heb1d5e4_0.conda - sha256: f1b40106a70cc294aab350daa97c760a9875073f58a5b7a25370c31fed8a2c15 - md5: 98784bb35b316e2ba8698f4a75326e9a - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - libgcc-ng >=12 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: Apache - size: 46257 - timestamp: 1712494861919 -- kind: conda - name: aws-c-common - version: 0.9.15 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.15-h10d778d_0.conda - sha256: fed4405a55bce4dc7e947d8604d853ac46b17cf09712f1253932e9cc0fe70f92 - md5: be6037c84d354c0303fdb077967f6048 - license: Apache-2.0 - license_family: Apache - size: 209383 - timestamp: 1712101871696 -- kind: conda - name: aws-c-common - version: 0.9.15 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.15-hcfcfb64_0.conda - sha256: 038e4c01a81ac7807e9942009e2db88dea977754f4d2f35f822367132d9a8abf - md5: 6e02bac6dfcf279e2b0b2a3602d7b49b - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 223866 - timestamp: 1712102088444 -- kind: conda - name: aws-c-common - version: 0.9.15 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.15-hd590300_0.conda - sha256: e4251e5fa2656140628f40b74e61cf5048dfd4346f6d81517d346b371113496e - md5: ad8955a300fd09e97e76c38638ac7157 - depends: - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 226559 - timestamp: 1712101677803 -- kind: conda - name: aws-c-compression - version: 0.2.18 - build: h53e3db5_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h53e3db5_3.conda - sha256: b35df886c7a8751fb5d1204510335241ddc9115fb4970c65ac12bbb307f6f8ad - md5: b4341460c51c457c6e5ac58d76f44d17 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - license: Apache-2.0 - license_family: Apache - size: 17976 - timestamp: 1712138779036 -- kind: conda - name: aws-c-compression - version: 0.2.18 - build: ha21e00f_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-ha21e00f_3.conda - sha256: c0e05c48a2420bf1e192ba61d9f41fad075186fa12f9018fef4a52f31883f0ee - md5: 15ff0ff5c09bd7c0c6dea51e5ef427b4 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 22479 - timestamp: 1712139181716 -- kind: conda - name: aws-c-compression - version: 0.2.18 - build: hce8ee76_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-hce8ee76_3.conda - sha256: ab0617f2d66d5d88fc6c7edb6ecd4589e0a744ccaeff95765371c9cabdb29722 - md5: b19224a5179ecb512c4aac9f8a6d57a7 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 19134 - timestamp: 1712138634166 -- kind: conda - name: aws-c-event-stream - version: 0.4.2 - build: h01f5eca_8 - build_number: 8 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-h01f5eca_8.conda - sha256: 688b81ed93151868df2717556d3b93dcfaf6bf129a1474f14e0c993095816d3f - md5: afb85fc0f01032d115c57c961950e7d8 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 53700 - timestamp: 1712507243610 -- kind: conda - name: aws-c-event-stream - version: 0.4.2 - build: he461af8_8 - build_number: 8 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-he461af8_8.conda - sha256: 6a795f72cf2cbf50900cd167942db0361b33e19af4735a36de848b16efa01108 - md5: e06f07aca12555762e986004e013c0e6 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - libcxx >=16 - license: Apache-2.0 - license_family: Apache - size: 46574 - timestamp: 1712507348124 -- kind: conda - name: aws-c-event-stream - version: 0.4.2 - build: hf668b60_8 - build_number: 8 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-hf668b60_8.conda - sha256: cc2b8b8338b51b1c05827532e22902005fb68cbb7c85b3e8c6917531721923cd - md5: 61ff0e83fdad92ccf13812b54c447507 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 54179 - timestamp: 1712507805607 -- kind: conda - name: aws-c-http - version: 0.8.1 - build: h0afc28a_10 - build_number: 10 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-h0afc28a_10.conda - sha256: 1418ec0dc04e9f00fbd2931f079c6e758b5b7fa7bff65d55eb5d585a60d162b4 - md5: 012d9d06c0b4a37f711a8f905a0f4fd8 - depends: - - __osx >=10.9 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-compression >=0.2.18,<0.2.19.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - license: Apache-2.0 - license_family: Apache - size: 162863 - timestamp: 1712654842013 -- kind: conda - name: aws-c-http - version: 0.8.1 - build: hd704247_10 - build_number: 10 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-hd704247_10.conda - sha256: 8a869b0f15bd85eb46b4faa14cadb691d756f8a74279edede1d769fea62d0acc - md5: 6abc1e3bdf18f682c7f42a08669b5662 - depends: - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-compression >=0.2.18,<0.2.19.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc >=14.3,<15 - - vc14_runtime >=14.29.30139 - - vc14_runtime >=14.38.33130 - license: Apache-2.0 - license_family: Apache - size: 180594 - timestamp: 1712655088873 -- kind: conda - name: aws-c-http - version: 0.8.1 - build: hdb68c23_10 - build_number: 10 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hdb68c23_10.conda - sha256: a13e77f6b40de79b33711f70b8180943053cc162efdb357bc9cd577f0ac69818 - md5: cb6065938167da2d2f078c2f08473b84 - depends: - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-compression >=0.2.18,<0.2.19.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 195362 - timestamp: 1712654535499 -- kind: conda - name: aws-c-io - version: 0.14.7 - build: h14865c8_6 - build_number: 6 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.7-h14865c8_6.conda - sha256: 63046d2b42b5d7fb94fa90a261c1dbef729b458e5a2465ea8dbb74959baca0f0 - md5: e26a1f9f7170b5e683b22a6a7e95d945 - depends: - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 159681 - timestamp: 1713347479651 -- kind: conda - name: aws-c-io - version: 0.14.7 - build: h6254544_6 - build_number: 6 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.7-h6254544_6.conda - sha256: 5d2327f3742cfabd53bf8c935eb2cffd50e3ea8c03c9fee12940b2ffb94ad1cb - md5: 9c997fbd219f8db5714dbdc240e355a0 - depends: - - __osx >=10.9 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - license: Apache-2.0 - license_family: Apache - size: 137495 - timestamp: 1713347345969 -- kind: conda - name: aws-c-io - version: 0.14.7 - build: hbfbeace_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.7-hbfbeace_6.conda - sha256: 10c8df9b71be8aba9b1aad48b123fc81896eb7b73c686042bed4a9e77d92e812 - md5: d6382461de9a91a2665e964f92d8da0a - depends: - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - libgcc-ng >=12 - - s2n >=1.4.12,<1.4.13.0a0 - license: Apache-2.0 - license_family: Apache - size: 158124 - timestamp: 1713346977725 -- kind: conda - name: aws-c-mqtt - version: 0.10.3 - build: h50844eb_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-h50844eb_4.conda - sha256: e80a6cea0a3d954cdb63b49d80a62f1982bb13722c0c99ba83b15820e61d4760 - md5: e72fdd8942f266ea79c70ec085661d6c - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 163794 - timestamp: 1712547607752 -- kind: conda - name: aws-c-mqtt - version: 0.10.3 - build: h748201e_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.3-h748201e_4.conda - sha256: eeec7e222cb8ecf0df2e5d5c17a511ba8b16af22b12bdf6d6a9540b6e6aeb3bd - md5: 235f22fb6ae78c9807273f7726021465 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc >=14.3,<15 - - vc14_runtime >=14.29.30139 - - vc14_runtime >=14.38.33130 - license: Apache-2.0 - license_family: Apache - size: 158520 - timestamp: 1712547856285 -- kind: conda - name: aws-c-mqtt - version: 0.10.3 - build: hd66502f_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-hd66502f_4.conda - sha256: 7c1f640276ad3be6095bf12c1debecde3458321d18eedca40daec6d0036ef0f9 - md5: 89e656a48d3c1e094366648d33320ff0 - depends: - - __osx >=10.9 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - license: Apache-2.0 - license_family: Apache - size: 139268 - timestamp: 1712547737430 -- kind: conda - name: aws-c-s3 - version: 0.5.7 - build: h4907f8a_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.7-h4907f8a_1.conda - sha256: 1a6b336545f635702c4113272a413b8509762cf3572abe7e3854bdbf9807a9ed - md5: 7591a42fcec5b6ccf27247f66782687f - depends: - - __osx >=10.9 - - aws-c-auth >=0.7.17,<0.7.18.0a0 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - license: Apache-2.0 - license_family: Apache - size: 93544 - timestamp: 1712685831186 -- kind: conda - name: aws-c-s3 - version: 0.5.7 - build: h5da7064_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.7-h5da7064_1.conda - sha256: 0da7ee2d40bd6ed559a4aa52430dd71c8abde10c193f7ea8799a221cb1ceeef0 - md5: 4b80f4d4191132572fe83b622442918a - depends: - - aws-c-auth >=0.7.17,<0.7.18.0a0 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 104398 - timestamp: 1712686192455 -- kind: conda - name: aws-c-s3 - version: 0.5.7 - build: hb7bd14b_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.7-hb7bd14b_1.conda - sha256: 94e2d5174ba344357801a44c303f513ae40f37c2defcc3d3747809ac11be1e27 - md5: 82bd3d7da86d969c62ff541bab19526a - depends: - - aws-c-auth >=0.7.17,<0.7.18.0a0 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - libgcc-ng >=12 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: Apache - size: 108249 - timestamp: 1712685968385 -- kind: conda - name: aws-c-sdkutils - version: 0.1.15 - build: h53e3db5_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h53e3db5_3.conda - sha256: 6b6b1652ede11c5ba4b6458b1fb88760658bb024ac5f06d2adf7130aa5550376 - md5: 569179357460c6f2acd2c3507c77c4c2 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - license: Apache-2.0 - license_family: Apache - size: 49610 - timestamp: 1712146120263 -- kind: conda - name: aws-c-sdkutils - version: 0.1.15 - build: ha21e00f_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-ha21e00f_3.conda - sha256: 1c72977356cbac9e805c0325692628edf4d30c3bb09fbe5ddd91d709f410bcc5 - md5: 7b10fea2a5418a3ad31507a8e3019019 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 53883 - timestamp: 1712146320267 -- kind: conda - name: aws-c-sdkutils - version: 0.1.15 - build: hce8ee76_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-hce8ee76_3.conda - sha256: 72fd73a5de0730997a36bf20ac1cb8cf7c67e40225c280b3dc5e46bc61c7d157 - md5: 0c4f0205a1ae4ca6c89af922ec54271c - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 55146 - timestamp: 1712145768196 -- kind: conda - name: aws-checksums - version: 0.1.18 - build: h53e3db5_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h53e3db5_3.conda - sha256: b62bcee0d6accf5b9e790cdb6171678ac6c865acc9df46249f36e554654f218b - md5: 2e78e8a3675a597ff8deaf118c7b714b - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - license: Apache-2.0 - license_family: Apache - size: 48730 - timestamp: 1712146097053 -- kind: conda - name: aws-checksums - version: 0.1.18 - build: ha21e00f_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-ha21e00f_3.conda - sha256: c7759b8b3c163916ab47ae0f65549ce7c4e78d54bf9daadd5fa035b4b04500bb - md5: a593ee36f55e9af14d7a7f9f8f854fcc - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 52267 - timestamp: 1712145968515 -- kind: conda - name: aws-checksums - version: 0.1.18 - build: hce8ee76_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-hce8ee76_3.conda - sha256: de0ba47fc8feaaa087d9128e4b5402af72bd46af52b885dee87adfb9e285a816 - md5: 9aa734a17b9b0b793c7696435fe7789a - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - libgcc-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 50068 - timestamp: 1712145648515 -- kind: conda - name: aws-crt-cpp - version: 0.26.6 - build: h5bc0ceb_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.6-h5bc0ceb_4.conda - sha256: 901ec0e31aa75ae80935a051a1387f55e2b3e0e4a97b31635b88310505e4afa2 - md5: 056f3eaae2910ed8aca0f17cb2378f6f - depends: - - aws-c-auth >=0.7.17,<0.7.18.0a0 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-c-mqtt >=0.10.3,<0.10.4.0a0 - - aws-c-s3 >=0.5.7,<0.5.8.0a0 - - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 246123 - timestamp: 1712753024280 -- kind: conda - name: aws-crt-cpp - version: 0.26.6 - build: hf567797_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.6-hf567797_4.conda - sha256: 45007f9367f9f41185a5b274a1dc6c44ceae9fb0a4e44eae3542deaab53559fb - md5: ffb662b31aef333e68a00dd17fda2027 - depends: - - aws-c-auth >=0.7.17,<0.7.18.0a0 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-c-mqtt >=0.10.3,<0.10.4.0a0 - - aws-c-s3 >=0.5.7,<0.5.8.0a0 - - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 335145 - timestamp: 1712752545390 -- kind: conda - name: aws-crt-cpp - version: 0.26.6 - build: hfb53d2e_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.6-hfb53d2e_4.conda - sha256: bcb8587d5c1689009badefc13320ba161479aab9affa8d205583059dabe576bd - md5: a4491c9681a6bf71a226c544990c9112 - depends: - - __osx >=10.9 - - aws-c-auth >=0.7.17,<0.7.18.0a0 - - aws-c-cal >=0.6.11,<0.6.12.0a0 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.7,<0.14.8.0a0 - - aws-c-mqtt >=0.10.3,<0.10.4.0a0 - - aws-c-s3 >=0.5.7,<0.5.8.0a0 - - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - libcxx >=16 - license: Apache-2.0 - license_family: Apache - size: 283365 - timestamp: 1712752909519 -- kind: conda - name: aws-sdk-cpp - version: 1.11.267 - build: h01edc24_6 - build_number: 6 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h01edc24_6.conda - sha256: a406e26d63b84615e7a9924ae02f609e2a2b1abc201278ddd840787352902353 - md5: bb12f6114bfc032af2e689e0e1eae1c7 - depends: - - __osx >=10.9 - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - libcurl >=8.7.1,<9.0a0 - - libcxx >=16 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: Apache - size: 3394339 - timestamp: 1712754051179 -- kind: conda - name: aws-sdk-cpp - version: 1.11.267 - build: h5d77392_6 - build_number: 6 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h5d77392_6.conda - sha256: 9f21b50aaf0eecdc885151dc754fdc5902194e82850629686a0f2f2572b95760 - md5: 1d1a457905f69984e81e541d1ede18e7 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 3435756 - timestamp: 1712754553202 -- kind: conda - name: aws-sdk-cpp - version: 1.11.267 - build: hbf3e495_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hbf3e495_6.conda - sha256: f9cc828d2eba6a0490e0e79795360dfd744e5042f7105311ab0e5927b56121eb - md5: a6caf5a0d9ca940d95f21d40afe8f857 - depends: - - aws-c-common >=0.9.15,<0.9.16.0a0 - - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - - aws-checksums >=0.1.18,<0.1.19.0a0 - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - libcurl >=8.7.1,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: Apache - size: 3643894 - timestamp: 1712753061178 -- kind: conda - name: azure-core-cpp - version: 1.11.1 - build: h249a519_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/azure-core-cpp-1.11.1-h249a519_1.conda - sha256: 5cfaed8d28aeceb700b524cff6285777de3a9a732acf7cef4994818df93301f3 - md5: c4d3c999a102779040815db07d1a2928 - depends: - - libcurl >=8.5.0,<9.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 485251 - timestamp: 1707404588911 -- kind: conda - name: azure-core-cpp - version: 1.11.1 - build: h91d86a7_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda - sha256: 810a890bf66d6368637399ef415dcc8152acd28f4b4b61d4048b7be7cba17d4c - md5: 2dbab1d281b7e1da05eee544cbdc8af6 - depends: - - libcurl >=8.5.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.2.1,<4.0a0 - license: MIT - license_family: MIT - size: 342651 - timestamp: 1707403920150 -- kind: conda - name: azure-core-cpp - version: 1.11.1 - build: hbb1e571_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.11.1-hbb1e571_1.conda - sha256: 4b22a5e01ebd7f09c869cea73ae4853fb18a10a5716c8984598327e34eb2f9da - md5: 6e982efd0947cd3e9ba4223fbd988508 - depends: - - libcurl >=8.5.0,<9.0a0 - - libcxx >=16 - - openssl >=3.2.1,<4.0a0 - license: MIT - license_family: MIT - size: 300137 - timestamp: 1707404257146 -- kind: conda - name: azure-storage-blobs-cpp - version: 12.10.0 - build: h00ab1b0_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda - sha256: c88f6bc72ef42fd09471d4c4b2293fa17f730e3ba10290a0bb86de0ff7e9b195 - md5: 1e63d3866554a4d2e3d1cba5f21a2841 - depends: - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - azure-storage-common-cpp >=12.5.0,<12.5.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 517087 - timestamp: 1707950609283 -- kind: conda - name: azure-storage-blobs-cpp - version: 12.10.0 - build: h7728843_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.10.0-h7728843_1.conda - sha256: 2c68d1d28bdf9d465843bdb6818868e0b0af46dafc1f4e41df0af33241707113 - md5: dc24ba551b749b6bab11e0ef22dc3438 - depends: - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - azure-storage-common-cpp >=12.5.0,<12.5.1.0a0 - - libcxx >=16 - license: MIT - license_family: MIT - size: 411847 - timestamp: 1707950907168 -- kind: conda - name: azure-storage-blobs-cpp - version: 12.10.0 - build: h91493d7_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/azure-storage-blobs-cpp-12.10.0-h91493d7_1.conda - sha256: e3444d2331c9b40c68a8c5dc07ca3b7cc6c610ab6a23c2ca192f2f93ea5d18b9 - md5: a542efec5e16debff638674a0fee1316 - depends: - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - azure-storage-common-cpp >=12.5.0,<12.5.1.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 961363 - timestamp: 1707951394595 -- kind: conda - name: azure-storage-common-cpp - version: 12.5.0 - build: h0e82ce4_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.5.0-h0e82ce4_4.conda - sha256: ecff365d3cdf3b5b04a6f823ec75b07459fb6cc312475180f7a33a237242ea27 - md5: 8a980ef5c6bc0677f5a60d5d60a4efdd - depends: - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - libcxx >=16 - - libxml2 >=2.12.5,<3.0a0 - - openssl >=3.2.1,<4.0a0 - license: MIT - license_family: MIT - size: 110010 - timestamp: 1707412948544 -- kind: conda - name: azure-storage-common-cpp - version: 12.5.0 - build: h91493d7_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/azure-storage-common-cpp-12.5.0-h91493d7_4.conda - sha256: 65e56d7a782db1036d4ef47aa701037fb96849247de03db874e511e8a2791cb5 - md5: 2a7ee0e1ffc37e91aa5c1d59d4aea8b8 - depends: - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 223885 - timestamp: 1707412994783 -- kind: conda - name: azure-storage-common-cpp - version: 12.5.0 - build: h94269e2_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda - sha256: 7143e85cfadcc3c789c879e66c3e6dbf8b6d5822d1d75b5b3063955279348233 - md5: f364272cb4c2f4ce2341067107b82865 - depends: - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxml2 >=2.12.5,<3.0a0 - - openssl >=3.2.1,<4.0a0 - license: MIT - license_family: MIT - size: 132389 - timestamp: 1707412427618 -- kind: conda - name: babel - version: 2.14.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda - sha256: 8584e3da58e92b72641c89ff9b98c51f0d5dbe76e527867804cbdf03ac91d8e6 - md5: 9669586875baeced8fc30c0826c3270e - depends: - - python >=3.7 - - pytz - - setuptools - license: BSD-3-Clause - license_family: BSD - size: 7609750 - timestamp: 1702422720584 -- kind: conda - name: beartype - version: 0.18.5 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/beartype-0.18.5-pyhd8ed1ab_0.conda - sha256: b68b7db7b849d999c5cc97b831e06a490c3dcb64aad84367c0969139a7a8f844 - md5: 28786996506a2f2dd7819b5f3705f4e4 - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 766954 - timestamp: 1713735111213 -- kind: conda - name: beautifulsoup4 - version: 4.12.3 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda - sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317 - md5: 332493000404d8411859539a5a630865 - depends: - - python >=3.6 - - soupsieve >=1.2 - license: MIT - license_family: MIT - size: 118200 - timestamp: 1705564819537 -- kind: conda - name: bleach - version: 6.1.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda - sha256: 845e77ef495376c5c3c328ccfd746ca0ef1978150cae8eae61a300fe7755fb08 - md5: 0ed9d7c0e9afa7c025807a9a8136ea3e - depends: - - packaging - - python >=3.6 - - setuptools - - six >=1.9.0 - - webencodings - license: Apache-2.0 - license_family: Apache - size: 131220 - timestamp: 1696630354218 -- kind: conda - name: blosc - version: 1.21.5 - build: hafa3907_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-hafa3907_1.conda - sha256: a2e867d61ce398187d59f59e034e8651c825cb33224d2c6f315876b6df5e2161 - md5: 937b9f86de960cd40c8ef5c7421b7028 - depends: - - __osx >=10.9 - - libcxx >=16 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 46932 - timestamp: 1712682252461 -- kind: conda - name: blosc - version: 1.21.5 - build: hbd69f2e_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hbd69f2e_1.conda - sha256: a74c8a91bee3947f9865abd057ce33a1ebb728f04041bfd47bc478fdc133ca22 - md5: 06c7d9a1cdecef43921be8b577a61ee7 - depends: - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc >=14.3,<15 - - vc14_runtime >=14.29.30139 - - vc14_runtime >=14.38.33130 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 50488 - timestamp: 1712682670189 -- kind: conda - name: blosc - version: 1.21.5 - build: hc2324a3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-hc2324a3_1.conda - sha256: fde5e8ad75d2a5f154e29da7763a5dd9ee5b5b5c3fc22a1f5170296c8f6f3f62 - md5: 11d76bee958b1989bd1ac6ee7372ea6d - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 48693 - timestamp: 1712681892833 -- kind: conda - name: bokeh - version: 3.4.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.4.1-pyhd8ed1ab_0.conda - sha256: 0289e61d7a30a693cf79d36484abd13f72ad785bd23cadc227c29dca89d95046 - md5: 0f8e0831bbf38d83973438ce9af9af9a - depends: - - contourpy >=1.2 - - jinja2 >=2.9 - - numpy >=1.16 - - packaging >=16.8 - - pandas >=1.2 - - pillow >=7.1.0 - - python >=3.9 - - pyyaml >=3.10 - - tornado >=6.2 - - xyzservices >=2021.09.1 - license: BSD-3-Clause - license_family: BSD - size: 4689064 - timestamp: 1712901219432 -- kind: conda - name: bottleneck - version: 1.3.8 - build: py312h3f2338b_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bottleneck-1.3.8-py312h3f2338b_0.conda - sha256: 699c3490cf860db9e5a6544c72c9c3deda30c8d32afe19fb65cd1a1e91d9cdb0 - md5: 9b349a4f2f4f0f0504df974c69373947 - depends: - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - size: 138816 - timestamp: 1708966641035 -- kind: conda - name: bottleneck - version: 1.3.8 - build: py312ha90f08f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bottleneck-1.3.8-py312ha90f08f_0.conda - sha256: ecac799ad963b2e0e5972a5043d79d6bb9fefe8f36342c2a38b4cf4a59670ed2 - md5: 0b016786e84c29ec5e4cd2598f10d7b6 - depends: - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 128342 - timestamp: 1708966736960 -- kind: conda - name: bottleneck - version: 1.3.8 - build: py312hc7c0aa3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bottleneck-1.3.8-py312hc7c0aa3_0.conda - sha256: 644a99090231448ca0fdc15e0aa75a06d092b3a2e097644e460d30bae199b96b - md5: fe9385961ed6437472b05f2025b9e606 - depends: - - libgcc-ng >=12 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - size: 140417 - timestamp: 1708966223802 -- kind: conda - name: branca - version: 0.7.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/branca-0.7.2-pyhd8ed1ab_0.conda - sha256: 9f7df349cb5a8852804d5bb1f5f49e3076a55ac7229b9c114bb5f7461f497ba7 - md5: 5f1c719f1cac0aee5e6bd6ca7d54a7fa - depends: - - jinja2 >=3 - - python >=3.7 - license: MIT - license_family: MIT - size: 28923 - timestamp: 1714071906758 -- kind: conda - name: brotli - version: 1.1.0 - build: h0dc2134_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda - sha256: 4bf66d450be5d3f9ebe029b50f818d088b1ef9666b1f19e90c85479c77bbdcde - md5: 9272dd3b19c4e8212f8542cefd5c3d67 - depends: - - brotli-bin 1.1.0 h0dc2134_1 - - libbrotlidec 1.1.0 h0dc2134_1 - - libbrotlienc 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - size: 19530 - timestamp: 1695990310168 -- kind: conda - name: brotli - version: 1.1.0 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-hcfcfb64_1.conda - sha256: b927c95121c5f3d82fe084730281739fb04621afebf2d9f05711a0f42d27e326 - md5: f47f6db2528e38321fb00ae31674c133 - depends: - - brotli-bin 1.1.0 hcfcfb64_1 - - libbrotlidec 1.1.0 hcfcfb64_1 - - libbrotlienc 1.1.0 hcfcfb64_1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 19772 - timestamp: 1695990547936 -- kind: conda - name: brotli - version: 1.1.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda - sha256: f2d918d351edd06c55a6c2d84b488fe392f85ea018ff227daac07db22b408f6b - md5: f27a24d46e3ea7b70a1f98e50c62508f - depends: - - brotli-bin 1.1.0 hd590300_1 - - libbrotlidec 1.1.0 hd590300_1 - - libbrotlienc 1.1.0 hd590300_1 - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 19383 - timestamp: 1695990069230 -- kind: conda - name: brotli-bin - version: 1.1.0 - build: h0dc2134_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda - sha256: 7ca3cfb4c5df314ed481301335387ab2b2ee651e2c74fbb15bacc795c664a5f1 - md5: ece565c215adcc47fc1db4e651ee094b - depends: - - libbrotlidec 1.1.0 h0dc2134_1 - - libbrotlienc 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - size: 16660 - timestamp: 1695990286737 -- kind: conda - name: brotli-bin - version: 1.1.0 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-hcfcfb64_1.conda - sha256: 4fbcb8f94acc97b2b04adbc64e304acd7c06fa0cf01953527bddae46091cc942 - md5: 0105229d7c5fabaa840043a86c10ec64 - depends: - - libbrotlidec 1.1.0 hcfcfb64_1 - - libbrotlienc 1.1.0 hcfcfb64_1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 20885 - timestamp: 1695990517506 -- kind: conda - name: brotli-bin - version: 1.1.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda - sha256: a641abfbaec54f454c8434061fffa7fdaa9c695e8a5a400ed96b4f07c0c00677 - md5: 39f910d205726805a958da408ca194ba - depends: - - libbrotlidec 1.1.0 hd590300_1 - - libbrotlienc 1.1.0 hd590300_1 - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 18980 - timestamp: 1695990054140 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h30efb56_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h30efb56_1.conda - sha256: b68706698b6ac0d31196a8bcb061f0d1f35264bcd967ea45e03e108149a74c6f - md5: 45801a89533d3336a365284d93298e36 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 hd590300_1 - license: MIT - license_family: MIT - size: 350604 - timestamp: 1695990206327 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312h53d5487_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h53d5487_1.conda - sha256: 769e276ecdebf86f097786cbde1ebd11e018cd6cd838800995954fe6360e0797 - md5: d01a6667b99f0e8ad4097af66c938e62 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - libbrotlicommon 1.1.0 hcfcfb64_1 - license: MIT - license_family: MIT - size: 322514 - timestamp: 1695991054894 -- kind: conda - name: brotli-python - version: 1.1.0 - build: py312heafc425_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312heafc425_1.conda - sha256: fc55988f9bc05a938ea4b8c20d6545bed6e9c6c10aa5147695f981136ca894c1 - md5: a288b88f06b8bfe0dedaf5c4b6ac6b7a - depends: - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - libbrotlicommon 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - size: 366883 - timestamp: 1695990710194 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h10d778d_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - license: bzip2-1.0.6 - license_family: BSD - size: 127885 - timestamp: 1699280178474 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hcfcfb64_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 - md5: 26eb8ca6ea332b675e11704cce84a3be - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 - license_family: BSD - size: 124580 - timestamp: 1699280668742 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hd590300_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 - md5: 69b8b6202a07720f448be700e300ccf4 - depends: - - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - size: 254228 - timestamp: 1699279927352 -- kind: conda - name: c-ares - version: 1.28.1 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a - md5: d5eb7992227254c0e9a0ce71151f0079 - license: MIT - license_family: MIT - size: 152607 - timestamp: 1711819681694 -- kind: conda - name: c-ares - version: 1.28.1 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.28.1-hcfcfb64_0.conda - sha256: 44ded34fdac46d4a37942c1cae3fc871dc6ecb13e0408442c6f8797671b332e6 - md5: 3b2a518680f790a79a7e77bad1861c3a - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 159060 - timestamp: 1711820066438 -- kind: conda - name: c-ares - version: 1.28.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a - md5: dcde58ff9a1f30b0037a2315d1846d1f - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 168875 - timestamp: 1711819445938 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: h56e8100_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 - md5: 63da060240ab8087b60d1357051ea7d6 - license: ISC - size: 155886 - timestamp: 1706843918052 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: h8857fd0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - license: ISC - size: 155665 - timestamp: 1706843838227 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb - md5: 2f4327a1cbe7f022401b236e915a5fef - license: ISC - size: 155432 - timestamp: 1706843687645 -- kind: conda - name: cached-property - version: 1.5.2 - build: hd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - md5: 9b347a7ec10940d3f7941ff6c460b551 - depends: - - cached_property >=1.5.2,<1.5.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 4134 - timestamp: 1615209571450 -- kind: conda - name: cached_property - version: 1.5.2 - build: pyha770c72_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - md5: 576d629e47797577ab0f1b351297ef4a - depends: - - python >=3.6 - license: BSD-3-Clause - license_family: BSD - size: 11065 - timestamp: 1615209567874 -- kind: conda - name: cairo - version: 1.18.0 - build: h1fef639_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.0-h1fef639_0.conda - sha256: 451e714f065b5dd0c11169058be56b10973dfd7d9a0fccf9c6a05d1e09995730 - md5: b3fe2c6381ec74afe8128e16a11eee02 - depends: - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - icu >=73.2,<74.0a0 - - libglib >=2.78.0,<3.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pixman >=0.42.2,<1.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zlib - license: LGPL-2.1-only or MPL-1.1 - size: 1520159 - timestamp: 1697029136038 -- kind: conda - name: cairo - version: 1.18.0 - build: h3faef2a_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda - sha256: 142e2639a5bc0e99c44d76f4cc8dce9c6a2d87330c4beeabb128832cd871a86e - md5: f907bb958910dc404647326ca80c263e - depends: - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - icu >=73.2,<74.0a0 - - libgcc-ng >=12 - - libglib >=2.78.0,<3.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libstdcxx-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pixman >=0.42.2,<1.0a0 - - xorg-libice >=1.1.1,<2.0a0 - - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxrender >=0.9.11,<0.10.0a0 - - zlib - license: LGPL-2.1-only or MPL-1.1 - size: 982351 - timestamp: 1697028423052 -- kind: conda - name: cairo - version: 1.18.0 - build: h99e66fa_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda - sha256: f8d1142cf244eadcbc44e8ca2266aa61a05b6cda5571f9b745ba32c7ebbfdfba - md5: 13f830b1bf46018f7062d1b798d53eca - depends: - - __osx >=10.9 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - icu >=73.2,<74.0a0 - - libcxx >=16.0.6 - - libglib >=2.78.0,<3.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pixman >=0.42.2,<1.0a0 - - zlib - license: LGPL-2.1-only or MPL-1.1 - size: 885311 - timestamp: 1697028802967 -- kind: conda - name: certifi - version: 2024.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda - sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54 - md5: 0876280e409658fc6f9e75d035960333 - depends: - - python >=3.7 - license: ISC - size: 160559 - timestamp: 1707022289175 -- kind: conda - name: cffi - version: 1.16.0 - build: py312h38bf5a0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda - sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e - md5: a45759c013ab20b9017ef9539d234dd7 - depends: - - libffi >=3.4,<4.0a0 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 282370 - timestamp: 1696002004433 -- kind: conda - name: cffi - version: 1.16.0 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda - sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 - md5: 5a51096925d52332c62bfd8904899055 - depends: - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 287805 - timestamp: 1696002408940 -- kind: conda - name: cffi - version: 1.16.0 - build: py312hf06ca03_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda - sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 - md5: 56b0ca764ce23cc54f3f7e2a7b970f6d - depends: - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - pycparser - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 294523 - timestamp: 1696001868949 -- kind: conda - name: cfgv - version: 3.3.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 - sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - md5: ebb5f5f7dc4f1a3780ef7ea7738db08c - depends: - - python >=3.6.1 - license: MIT - license_family: MIT - size: 10788 - timestamp: 1629909423398 -- kind: conda - name: cfitsio - version: 4.3.1 - build: h60fb419_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.3.1-h60fb419_0.conda - sha256: 5bd157478529ff4d05b8e8654de0580609177252eb11ecf5201b831effeeb2ec - md5: 03ab895afe3804b527c12193a9612cac - depends: - - bzip2 >=1.0.8,<2.0a0 - - libcurl >=8.4.0,<9.0a0 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - libzlib >=1.2.13,<2.0.0a0 - license: LicenseRef-fitsio - size: 804415 - timestamp: 1700704377677 -- kind: conda - name: cfitsio - version: 4.3.1 - build: h9b0cee5_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.3.1-h9b0cee5_0.conda - sha256: 9fb11c689bb4c88e031c931cae23b09880e7a8c17713261844c16f5e88f349f2 - md5: eb7f15f7b2160dec9e803a86dcbe1d03 - depends: - - libcurl >=8.4.0,<9.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LicenseRef-fitsio - size: 563597 - timestamp: 1700704657931 -- kind: conda - name: cfitsio - version: 4.3.1 - build: hbdc6101_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.3.1-hbdc6101_0.conda - sha256: b91003bff71351a0132c84d69fbb5afcfa90e57d83f76a180c6a5a0289099fb1 - md5: dcea02841b33a9c49f74ca9328de919a - depends: - - bzip2 >=1.0.8,<2.0a0 - - libcurl >=8.4.0,<9.0a0 - - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - - libzlib >=1.2.13,<2.0.0a0 - license: LicenseRef-fitsio - size: 875191 - timestamp: 1700704197213 -- kind: conda - name: cftime - version: 1.6.3 - build: py312h085067d_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.3-py312h085067d_1.conda - sha256: f44b52abbd753b94ff86b857b6697e6151b99c61ad650a0b353161a2350d0549 - md5: b121b9dd4935f63959eb35cc6c36973b - depends: - - libgcc-ng >=12 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 246686 - timestamp: 1715919293013 -- kind: conda - name: cftime - version: 1.6.3 - build: py312h1a27103_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cftime-1.6.3-py312h1a27103_1.conda - sha256: 048516c00b1febf8d67c638c1dd1612cc100fe43313449bfb7923da4b744a9b7 - md5: 9023a3d5c0d04bd7c0436e0af3968260 - depends: - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 178452 - timestamp: 1715919920692 -- kind: conda - name: cftime - version: 1.6.3 - build: py312h5dc8b90_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.3-py312h5dc8b90_1.conda - sha256: 32984358b7d50244d64ad69c3b1e28c0fad2ddaf843f5820ba60ff6926e7639d - md5: 4ba8e17996ed89bf06469a19a00d1cb8 - depends: - - __osx >=10.13 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 207899 - timestamp: 1715919346445 -- kind: conda - name: charset-normalizer - version: 3.3.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda - sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9 - md5: 7f4a9e3fcff3f6356ae99244a014da6a - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 46597 - timestamp: 1698833765762 -- kind: conda - name: click - version: 8.1.7 - build: unix_pyh707e725_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec - md5: f3ad426304898027fc619827ff428eca - depends: - - __unix - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 84437 - timestamp: 1692311973840 -- kind: conda - name: click - version: 8.1.7 - build: win_pyh7428d3b_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 - md5: 3549ecbceb6cd77b91a105511b7d0786 - depends: - - __win - - colorama - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 85051 - timestamp: 1692312207348 -- kind: conda - name: click-plugins - version: 1.1.1 - build: py_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 - sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 - md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f - depends: - - click >=3.0 - - python - license: BSD-3-Clause - license_family: BSD - size: 8992 - timestamp: 1554588104889 -- kind: conda - name: cligj - version: 0.7.2 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 - sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 - md5: a29b7c141d6b2de4bb67788a5f107734 - depends: - - click >=4.0 - - python <4.0 - license: BSD-3-Clause - license_family: BSD - size: 10255 - timestamp: 1633637895378 -- kind: conda - name: cloudpickle - version: 3.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda - sha256: 0dfbc1ffa72e7a0882f486c9b1e4e9cccb68cf5c576fe53a89d076c9f1d43754 - md5: 753d29fe41bb881e4b9c004f0abf973f - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 24746 - timestamp: 1697464875382 -- kind: conda - name: colorama - version: 0.4.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - md5: 3faab06a954c2a04039983f2c4a50d99 - depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 25170 - timestamp: 1666700778190 -- kind: conda - name: comm - version: 0.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - sha256: e923acf02708a8a0b591f3bce4bdc11c8e63b73198b99b35fe6cd96bfb6a0dbe - md5: 948d84721b578d426294e17a02e24cbb - depends: - - python >=3.6 - - traitlets >=5.3 - license: BSD-3-Clause - license_family: BSD - size: 12134 - timestamp: 1710320435158 -- kind: conda - name: contextily - version: 1.6.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/contextily-1.6.0-pyhd8ed1ab_0.conda - sha256: 3e70e8cdffc1b6134076f720e864caa29250160a2c4f726dbf557210554fbf46 - md5: a3e5ccece003758e379be05cb5a08dff - depends: - - geopy - - joblib - - matplotlib-base - - mercantile - - pillow - - python >=3.8 - - rasterio - - requests - - xyzservices - license: BSD-3-Clause - license_family: BSD - size: 20675 - timestamp: 1710889182405 -- kind: conda - name: contourpy - version: 1.2.1 - build: py312h0d7def4_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.2.1-py312h0d7def4_0.conda - sha256: 3af3de9a099d9ab88d24d0956c3acb838a774b64e52afa25abeed7b31c1174ef - md5: bc0160f16ae02e18de578eaddadd4f61 - depends: - - numpy >=1.20 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 206433 - timestamp: 1712430299728 -- kind: conda - name: contourpy - version: 1.2.1 - build: py312h8572e83_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.2.1-py312h8572e83_0.conda - sha256: b0731336b9788c247b11a592352f700a647119340b549aba9e933835c7c77df0 - md5: 12c6a831ef734f0b2dd4caff514cbb7f - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - numpy >=1.20 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 256764 - timestamp: 1712430146809 -- kind: conda - name: contourpy - version: 1.2.1 - build: py312h9230928_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.2.1-py312h9230928_0.conda - sha256: 3879ed298cc9ec5486d13b7d65da960c813925837fe67fc385c9b31f7eefddc0 - md5: 079df34ce7c71259cfdd394645370891 - depends: - - libcxx >=16 - - numpy >=1.20 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 248928 - timestamp: 1712430234380 -- kind: conda - name: cycler - version: 0.12.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda - sha256: f221233f21b1d06971792d491445fd548224641af9443739b4b7b6d5d72954a8 - md5: 5cd86562580f274031ede6aa6aa24441 - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 13458 - timestamp: 1696677888423 -- kind: conda - name: cytoolz - version: 0.12.3 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cytoolz-0.12.3-py312h41838bb_0.conda - sha256: 79df086b364cb7b80c367d6b19fc2fad7879e89d811bb7e9c25ddf02e94d7959 - md5: b8e837f24cd0f2a2478ecf2299ce55a8 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - toolz >=0.10.0 - license: BSD-3-Clause - license_family: BSD - size: 342008 - timestamp: 1706897335369 -- kind: conda - name: cytoolz - version: 0.12.3 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.3-py312h98912ed_0.conda - sha256: 8fae95ac24fb9dc05ee0284c929869cb97467319460bafac52956c79b1fee3f0 - md5: a4fbffb84a54767266c69e3699078a00 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - toolz >=0.10.0 - license: BSD-3-Clause - license_family: BSD - size: 393874 - timestamp: 1706897203319 -- kind: conda - name: cytoolz - version: 0.12.3 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-0.12.3-py312he70551f_0.conda - sha256: 9b3a63be81910d653e2ef7ceba12f22c92e22ca2fd5cb37e72aa1bef8e6d8fc3 - md5: bf01d5b4e152592d0483cc10df040ad8 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - toolz >=0.10.0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 315464 - timestamp: 1706897770551 -- kind: conda - name: dart-sass - version: 1.58.3 - build: h57928b3_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/dart-sass-1.58.3-h57928b3_1.conda - sha256: b974772f376bea3afc8ecacf916fce3170b02604310c4a1d25fc39f1c44bd532 - md5: 717501926d44c46117979fc54892c560 - license: MIT - license_family: MIT - size: 2846260 - timestamp: 1683598954152 -- kind: conda - name: dart-sass - version: 1.58.3 - build: h694c41f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/dart-sass-1.58.3-h694c41f_1.conda - sha256: d6bd5e712d55ef3e2b222fcb98eb20ab8e72042594e38369c28b8fb75ce7a1f8 - md5: 5151299fff69a62e792c79d1b726a470 - license: MIT - license_family: MIT - size: 2810170 - timestamp: 1683598628559 -- kind: conda - name: dart-sass - version: 1.58.3 - build: ha770c72_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/dart-sass-1.58.3-ha770c72_1.conda - sha256: a94f8024ac8a09cbf265c62d2bd57e709802868ef656c6cafe5864ed20bf94af - md5: d54982a58cd9be3d00a7efe76ba6f60c - license: MIT - license_family: MIT - size: 2961769 - timestamp: 1683598364427 -- kind: conda - name: dask - version: 2024.5.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dask-2024.5.2-pyhd8ed1ab_0.conda - sha256: d2aee458f58253629c23905342daab9317a74b51241f284fe80aedee19f4a01a - md5: 6bb2c18b838161e550a30de0fdff6993 - depends: - - bokeh >=2.4.2,!=3.0.* - - cytoolz >=0.11.0 - - dask-core >=2024.5.2,<2024.5.3.0a0 - - dask-expr >=1.1,<1.2 - - distributed >=2024.5.2,<2024.5.3.0a0 - - jinja2 >=2.10.3 - - lz4 >=4.3.2 - - numpy >=1.21 - - pandas >=1.3 - - pyarrow >=7.0 - - pyarrow-hotfix - - python >=3.9 - constrains: - - openssl !=1.1.1e - license: BSD-3-Clause - license_family: BSD - size: 7501 - timestamp: 1717199573919 -- kind: conda - name: dask-core - version: 2024.5.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2024.5.2-pyhd8ed1ab_0.conda - sha256: dfa55fbb760b668a01de676cc86f8d39c8ad31a0f89881596cd43880c327b411 - md5: 1a57a819915e1c169b74933720b138f2 - depends: - - click >=8.1 - - cloudpickle >=1.5.0 - - fsspec >=2021.09.0 - - importlib_metadata >=4.13.0 - - packaging >=20.0 - - partd >=1.2.0 - - python >=3.9 - - pyyaml >=5.3.1 - - toolz >=0.10.0 - license: BSD-3-Clause - license_family: BSD - size: 881607 - timestamp: 1717190846928 -- kind: conda - name: dask-expr - version: 1.1.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dask-expr-1.1.2-pyhd8ed1ab_0.conda - sha256: 10a66058440dc54a07c8f00d45259487acf24013ca48387e6680b0a9cc198f70 - md5: 34db694d2afc672094f1a74af51cb44e - depends: - - dask-core 2024.5.2 - - pandas >=2 - - pyarrow - - python >=3.9 - license: BSD-3-Clause - license_family: BSD - size: 157959 - timestamp: 1717193453751 -- kind: conda - name: dav1d - version: 1.2.1 - build: h0dc2134_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda - sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96 - md5: 9d88733c715300a39f8ca2e936b7808d - license: BSD-2-Clause - license_family: BSD - size: 668439 - timestamp: 1685696184631 -- kind: conda - name: dav1d - version: 1.2.1 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda - sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 - md5: ed2c27bda330e3f0ab41577cf8b9b585 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 618643 - timestamp: 1685696352968 -- kind: conda - name: dav1d - version: 1.2.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda - sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 - md5: 418c6ca5929a611cbd69204907a83995 - depends: - - libgcc-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 760229 - timestamp: 1685695754230 -- kind: conda - name: dbus - version: 1.13.6 - build: h5008d03_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 - md5: ecfff944ba3960ecb334b9a2663d708d - depends: - - expat >=2.4.2,<3.0a0 - - libgcc-ng >=9.4.0 - - libglib >=2.70.2,<3.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 618596 - timestamp: 1640112124844 -- kind: conda - name: debugpy - version: 1.8.1 - build: py312h30efb56_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.1-py312h30efb56_0.conda - sha256: 8a8bd15c7a8435991649ab334816d4d64970c5b0d016f59806bc45f54f31a924 - md5: bdd639417094ace2fb1ce10b20d68d5d - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 2079306 - timestamp: 1707444570818 -- kind: conda - name: debugpy - version: 1.8.1 - build: py312h53d5487_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.1-py312h53d5487_0.conda - sha256: 5e8beecf42088481c88aa97118c52b2142f0e0d48ffed877e973c309c7fc83af - md5: 4094ccb019f079de8b0f61a5f366d294 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 3105043 - timestamp: 1707445249662 -- kind: conda - name: debugpy - version: 1.8.1 - build: py312hede676d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.1-py312hede676d_0.conda - sha256: f957393cb09e3df00176079253e0f845ab8c87dbca3c38e1a14df21ffe9d7083 - md5: e0de4e018d6013b6c2e2ae42640fb65c - depends: - - libcxx >=16 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 2065572 - timestamp: 1707444822563 -- kind: conda - name: decorator - version: 5.1.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - md5: 43afe5ab04e35e17ba28649471dd7364 - depends: - - python >=3.5 - license: BSD-2-Clause - license_family: BSD - size: 12072 - timestamp: 1641555714315 -- kind: conda - name: defusedxml - version: 0.7.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be - md5: 961b3a227b437d82ad7054484cfa71b2 - depends: - - python >=3.6 - license: PSF-2.0 - license_family: PSF - size: 24062 - timestamp: 1615232388757 -- kind: conda - name: deno - version: 1.37.2 - build: h335b0a9_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/deno-1.37.2-h335b0a9_1.conda - sha256: b14a2f951839e1b511283ed135d31e1168e62c6f360d00ba55a52e38d2ed1e34 - md5: 50fe6d0064adfd83846a6f9c87da03e3 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 33937403 - timestamp: 1698785299272 -- kind: conda - name: deno - version: 1.37.2 - build: h51b076b_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/deno-1.37.2-h51b076b_1.conda - sha256: ec5a5f6219ee6dda4dff7673af05321934ffa041ef71407509ac84f887e66b88 - md5: d452ae5711d2261a9a2600c1c9cb95f1 - depends: - - __osx >=10.11 - license: MIT - license_family: MIT - size: 28443709 - timestamp: 1698786998658 -- kind: conda - name: deno - version: 1.37.2 - build: hc8b987e_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/deno-1.37.2-hc8b987e_1.conda - sha256: 075fd651513a4458a67ad7f1f635019d342b3047ba9b453acb1fc65f39279581 - md5: 9e817ed60642f1c1b4d19f7998b3ff21 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 27940247 - timestamp: 1698788945614 -- kind: conda - name: deno-dom - version: 0.1.35 - build: h08cba0f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/deno-dom-0.1.35-h08cba0f_1.conda - sha256: b743fc9a6bcb5991321a4a7c35fcdac04b64b13b232f624052b34e31585a2e74 - md5: a066a401b756000c623b09113f59f9c1 - depends: - - deno >=1.24.2 - license: MIT - license_family: MIT - size: 372486 - timestamp: 1682953705956 -- kind: conda - name: deno-dom - version: 0.1.35 - build: h8b8d39b_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/deno-dom-0.1.35-h8b8d39b_1.conda - sha256: b8368da706bb912606eb5063e1535fe3075a23c063461a13cf95d05567ae4e15 - md5: e1b95d707e592ee1f8d20986c449d927 - depends: - - deno >=1.24.2 - license: MIT - license_family: MIT - size: 298218 - timestamp: 1682953841090 -- kind: conda - name: deno-dom - version: 0.1.35 - build: hd9586b0_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/deno-dom-0.1.35-hd9586b0_1.conda - sha256: 386c157bf2eebe4fc58e63c26784d084eaa71cf1020257c30a430624631415fd - md5: 263ee0870b18b013d9ec8539113ac69f - depends: - - deno >=1.24.2 - license: MIT - license_family: MIT - size: 1062480 - timestamp: 1682953401972 -- kind: conda - name: distlib - version: 0.3.8 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e - md5: db16c66b759a64dc5183d69cc3745a52 - depends: - - python 2.7|>=3.6 - license: Apache-2.0 - license_family: APACHE - size: 274915 - timestamp: 1702383349284 -- kind: conda - name: distributed - version: 2024.5.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2024.5.2-pyhd8ed1ab_0.conda - sha256: 1cd3946f4476d592e2f925a5bd998d5609c3da643e7ac6bcb13f14adb517a456 - md5: 2fa6807bd19e5cdc77fe1b6a42c86228 - depends: - - click >=8.0 - - cloudpickle >=1.5.0 - - cytoolz >=0.10.1 - - dask-core >=2024.5.2,<2024.5.3.0a0 - - jinja2 >=2.10.3 - - locket >=1.0.0 - - msgpack-python >=1.0.0 - - packaging >=20.0 - - psutil >=5.7.2 - - python >=3.9 - - pyyaml >=5.3.1 - - sortedcontainers >=2.0.5 - - tblib >=1.6.0 - - toolz >=0.10.0 - - tornado >=6.0.4 - - urllib3 >=1.24.3 - - zict >=3.0.0 - constrains: - - openssl !=1.1.1e - license: BSD-3-Clause - license_family: BSD - size: 796292 - timestamp: 1717193974728 -- kind: conda - name: double-conversion - version: 3.3.0 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.0-h59595ed_0.conda - sha256: 9eee491a73b67fd64379cf715f85f8681568ebc1f02f9e11b4c50d46a3323544 - md5: c2f83a5ddadadcdb08fe05863295ee97 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 78645 - timestamp: 1686489937183 -- kind: conda - name: double-conversion - version: 3.3.0 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/double-conversion-3.3.0-h63175ca_0.conda - sha256: 735d40b44a0f39386d1e2988384b6d78a98efd4fa1818e7f2f6fb01f91e16b64 - md5: 1a8bc18b24014167b2184c5afbe6037e - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 70425 - timestamp: 1686490368655 -- kind: conda - name: double-conversion - version: 3.3.0 - build: he965462_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.0-he965462_0.conda - sha256: 74b7e151887e2c79de5dfc2079bc4621a1bd85b8bed4595be3e0b7313808a498 - md5: a3de9d9550078b51db74fde63b1ccae6 - depends: - - libcxx >=15.0.7 - license: BSD-3-Clause - license_family: BSD - size: 67397 - timestamp: 1686490152080 -- kind: conda - name: eigen - version: 3.4.0 - build: h00ab1b0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda - sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34 - md5: b1b879d6d093f55dd40d58b5eb2f0699 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MPL-2.0 - license_family: MOZILLA - size: 1088433 - timestamp: 1690272126173 -- kind: conda - name: eigen - version: 3.4.0 - build: h1c7c39f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda - sha256: 187c0677e0cdcdc39aed716687a6290dd5b7f52b49eedaef2ed76be6cd0a5a3d - md5: 5b2cfc277e3d42d84a2a648825761156 - depends: - - libcxx >=15.0.7 - license: MPL-2.0 - license_family: MOZILLA - size: 1090184 - timestamp: 1690272503232 -- kind: conda - name: eigen - version: 3.4.0 - build: h91493d7_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda - sha256: 633a6a8db1f9a010cb0619f3446fb61f62dea348b09615ffae9744ab1001c24c - md5: 305b3ca7023ac046b9a42a48661f6512 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MPL-2.0 - license_family: MOZILLA - size: 1089706 - timestamp: 1690273089254 -- kind: conda - name: entrypoints - version: '0.4' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 - sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af - md5: 3cf04868fee0a029769bd41f4b2fbf2d - depends: - - python >=3.6 - license: MIT - license_family: MIT - size: 9199 - timestamp: 1643888357950 -- kind: conda - name: esbuild - version: 0.19.2 - build: h57928b3_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/esbuild-0.19.2-h57928b3_0.conda - sha256: 7a6354b23d03a4eaff672e4d20cf4a6c554da31be506050055af97f4b023a8b9 - md5: 7250cb4e9c20f9f7acdf4b523844ad90 - license: MIT - license_family: MIT - size: 3430198 - timestamp: 1693244283213 -- kind: conda - name: esbuild - version: 0.19.2 - build: h694c41f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/esbuild-0.19.2-h694c41f_0.conda - sha256: 3c52971d424630e4e5e749208c144bd070b94ae404aa8ea72ae20c9e5300517d - md5: 61cc0fd0aa08d9a37b2df02b88c00203 - constrains: - - __osx>=10.12 - license: MIT - license_family: MIT - size: 3465734 - timestamp: 1693243810332 -- kind: conda - name: esbuild - version: 0.19.2 - build: ha770c72_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/esbuild-0.19.2-ha770c72_0.conda - sha256: bb6dee100b3f62ee088a212834c9d47ad158f3fc678ff595e402803db5fab871 - md5: 8fa87b764cf6143cb66e9cc3548b186a - license: MIT - license_family: MIT - size: 3376650 - timestamp: 1693243729127 -- kind: conda - name: exceptiongroup - version: 1.2.0 - build: pyhd8ed1ab_2 - build_number: 2 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d - md5: 8d652ea2ee8eaee02ed8dc820bc794aa - depends: - - python >=3.7 - license: MIT and PSF-2.0 - size: 20551 - timestamp: 1704921321122 -- kind: conda - name: executing - version: 2.0.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda - sha256: c738804ab1e6376f8ea63372229a04c8d658dc90fd5a218c6273a2eaf02f4057 - md5: e16be50e378d8a4533b989035b196ab8 - depends: - - python >=2.7 - license: MIT - license_family: MIT - size: 27689 - timestamp: 1698580072627 -- kind: conda - name: expat - version: 2.5.0 - build: h63175ca_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda - sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf - md5: 87c77fe1b445aedb5c6d207dd236fa3e - depends: - - libexpat 2.5.0 h63175ca_1 - license: MIT - license_family: MIT - size: 226571 - timestamp: 1680190888036 -- kind: conda - name: expat - version: 2.5.0 - build: hcb278e6_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda - sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f - md5: 8b9b5aca60558d02ddaa09d599e55920 - depends: - - libexpat 2.5.0 hcb278e6_1 - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 136778 - timestamp: 1680190541750 -- kind: conda - name: expat - version: 2.5.0 - build: hf0c8a7f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda - sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 - md5: e12630038077877cbb6c7851e139c17c - depends: - - libexpat 2.5.0 hf0c8a7f_1 - license: MIT - license_family: MIT - size: 120323 - timestamp: 1680191057827 -- kind: conda - name: fastcore - version: 1.5.42 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fastcore-1.5.42-pyhd8ed1ab_0.conda - sha256: 0ad7911ed8346257ef98f2fb3f431be7e82012c2c8f56ed871915f315f8c3bd7 - md5: 8ddf43483215b4f12c6a8df7c06e804d - depends: - - packaging - - pip - - python >=3.6 - license: Apache-2.0 - license_family: APACHE - size: 68419 - timestamp: 1717069063610 -- kind: conda - name: fasteners - version: 0.17.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.17.3-pyhd8ed1ab_0.tar.bz2 - sha256: 42be6ac8478051b26751d778490d6a71de12e5c6443e145ff3eddbc577d9bcda - md5: 348e27e78a5e39090031448c72f66d5e - depends: - - python >=3.6 - license: Apache-2.0 - license_family: APACHE - size: 19975 - timestamp: 1643971626978 -- kind: conda - name: ffmpeg - version: 6.1.1 - build: gpl_h66c0b5b_108 - build_number: 108 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-6.1.1-gpl_h66c0b5b_108.conda - sha256: b3e1c32f150a4f8afba0ba304af7a1cb073d5d46f8e29a671ce9c0ae1cf965c3 - md5: 3918f1f54a5d4ae01671879fa8649a37 - depends: - - aom >=3.8.2,<3.9.0a0 - - bzip2 >=1.0.8,<2.0a0 - - dav1d >=1.2.1,<1.2.2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - libiconv >=1.17,<2.0a0 - - libopus >=1.3.1,<2.0a0 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openh264 >=2.4.1,<2.4.2.0a0 - - svt-av1 >=2.0.0,<2.0.1.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - x264 >=1!164.3095,<1!165 - - x265 >=3.5,<3.6.0a0 - - xz >=5.2.6,<6.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 9616766 - timestamp: 1712658196820 -- kind: conda - name: ffmpeg - version: 6.1.1 - build: gpl_h6b92a41_108 - build_number: 108 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.1-gpl_h6b92a41_108.conda - sha256: b1d3f50780db24a5656dfb51129fc36e38a369f23d9d3c8edd5de6d8d8cd7e36 - md5: 5bcbd435d3b3204d0ef0916ff3e3032c - depends: - - __osx >=10.13 - - aom >=3.8.2,<3.9.0a0 - - bzip2 >=1.0.8,<2.0a0 - - dav1d >=1.2.1,<1.2.2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - gmp >=6.3.0,<7.0a0 - - gnutls >=3.7.9,<3.8.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - lame >=3.100,<3.101.0a0 - - libass >=0.17.1,<0.17.2.0a0 - - libcxx >=16 - - libiconv >=1.17,<2.0a0 - - libopenvino >=2024.0.0,<2024.0.1.0a0 - - libopenvino-auto-batch-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-auto-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-hetero-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-ir-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-onnx-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-paddle-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-pytorch-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-tensorflow-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.0.0,<2024.0.1.0a0 - - libopus >=1.3.1,<2.0a0 - - libvpx >=1.14.0,<1.15.0a0 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openh264 >=2.4.1,<2.4.2.0a0 - - svt-av1 >=2.0.0,<2.0.1.0a0 - - x264 >=1!164.3095,<1!165 - - x265 >=3.5,<3.6.0a0 - - xz >=5.2.6,<6.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 9694369 - timestamp: 1712658377331 -- kind: conda - name: ffmpeg - version: 6.1.1 - build: gpl_hee4b679_108 - build_number: 108 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_108.conda - sha256: daa3955e9d087197a90c4464d75260b73ab77e06feb1158f7814f2bff8489134 - md5: 66701e0a42c7f02d79d3856942f14e05 - depends: - - aom >=3.8.2,<3.9.0a0 - - bzip2 >=1.0.8,<2.0a0 - - dav1d >=1.2.1,<1.2.2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - gmp >=6.3.0,<7.0a0 - - gnutls >=3.7.9,<3.8.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - lame >=3.100,<3.101.0a0 - - libass >=0.17.1,<0.17.2.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libopenvino >=2024.0.0,<2024.0.1.0a0 - - libopenvino-auto-batch-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-auto-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-hetero-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-intel-gpu-plugin >=2024.0.0,<2024.0.1.0a0 - - libopenvino-ir-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-onnx-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-paddle-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-pytorch-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-tensorflow-frontend >=2024.0.0,<2024.0.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.0.0,<2024.0.1.0a0 - - libopus >=1.3.1,<2.0a0 - - libstdcxx-ng >=12 - - libva >=2.21.0,<3.0a0 - - libvpx >=1.14.0,<1.15.0a0 - - libxcb >=1.15,<1.16.0a0 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openh264 >=2.4.1,<2.4.2.0a0 - - svt-av1 >=2.0.0,<2.0.1.0a0 - - x264 >=1!164.3095,<1!165 - - x265 >=3.5,<3.6.0a0 - - xorg-libx11 >=1.8.9,<2.0a0 - - xz >=5.2.6,<6.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 9782121 - timestamp: 1712657205196 -- kind: conda - name: filelock - version: 3.14.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.14.0-pyhd8ed1ab_0.conda - sha256: 6031be667e1b0cc0dee713f1cbca887cdee4daafa8bac478da33096f3147d38b - md5: 831d85ae0acfba31b8efd0f0d07da736 - depends: - - python >=3.7 - license: Unlicense - size: 15902 - timestamp: 1714422911808 -- kind: conda - name: fiona - version: 1.9.6 - build: py312h66d9856_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.6-py312h66d9856_0.conda - sha256: 8b9f2377852498c97397125847a012a9efe9bca35931ca97f178c0ff190a07a9 - md5: a7e2048665753cff7f947af55f2dddb0 - depends: - - attrs >=19.2.0 - - certifi - - click >=8.0,<9.dev0 - - click-plugins >=1.0 - - cligj >=0.5 - - gdal - - libgcc-ng >=12 - - libgdal >=3.8.4,<3.9.0a0 - - libstdcxx-ng >=12 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - shapely - - six - license: BSD-3-Clause - license_family: BSD - size: 980142 - timestamp: 1709930966672 -- kind: conda - name: fiona - version: 1.9.6 - build: py312h95cbb4d_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.6-py312h95cbb4d_0.conda - sha256: 56018dea5019718f994314ff2f9688bac416d79b4e6aebe984f7dc50f44bf4fd - md5: c8572c3ebc648b53a07a2f49a03039f6 - depends: - - attrs >=19.2.0 - - certifi - - click >=8.0,<9.dev0 - - click-plugins >=1.0 - - cligj >=0.5 - - gdal - - libgdal >=3.8.4,<3.9.0a0 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - shapely - - six - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 815828 - timestamp: 1709931822140 -- kind: conda - name: fiona - version: 1.9.6 - build: py312hc18349f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.6-py312hc18349f_0.conda - sha256: d4b9b7d3077fea8fe688da939837a768fbe91101fe6edd6fecbaacb365d05096 - md5: 7677246f7ad31813a4e361482abeb0ab - depends: - - attrs >=19.2.0 - - certifi - - click >=8.0,<9.dev0 - - click-plugins >=1.0 - - cligj >=0.5 - - gdal - - libcxx >=16 - - libgdal >=3.8.4,<3.9.0a0 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - shapely - - six - license: BSD-3-Clause - license_family: BSD - size: 859073 - timestamp: 1709931456769 -- kind: conda - name: fmt - version: 10.2.1 - build: h00ab1b0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - md5: 35ef8bc24bd34074ebae3c943d551728 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 193853 - timestamp: 1704454679950 -- kind: conda - name: fmt - version: 10.2.1 - build: h181d51b_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - sha256: 4593d75b6a1e0b5b43fdcba6b968537638a6e469521fb4c3073929f973891828 - md5: 4253b572559cc775cae49def5c97b3c0 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 185170 - timestamp: 1704455079451 -- kind: conda - name: fmt - version: 10.2.1 - build: h7728843_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc - md5: ab205d53bda43d03f5c5b993ccb406b3 - depends: - - libcxx >=15 - license: MIT - license_family: MIT - size: 181468 - timestamp: 1704454938658 -- kind: conda - name: folium - version: 0.16.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/folium-0.16.0-pyhd8ed1ab_0.conda - sha256: 9696ffafd873a40815312e9ea245a863b7796b73dd2759f93174cd65d6bf2144 - md5: cb1d2aa705a5b1f0fbdabd1beebce205 - depends: - - branca >=0.6.0 - - jinja2 >=2.9 - - numpy - - python >=3.7 - - requests - - xyzservices - license: MIT - license_family: MIT - size: 73615 - timestamp: 1709209389903 -- kind: conda - name: font-ttf-dejavu-sans-mono - version: '2.37' - build: hab24e00_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b - md5: 0c96522c6bdaed4b1566d11387caaf45 - license: BSD-3-Clause - license_family: BSD - size: 397370 - timestamp: 1566932522327 -- kind: conda - name: font-ttf-inconsolata - version: '3.000' - build: h77eed37_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c - md5: 34893075a5c9e55cdafac56607368fc6 - license: OFL-1.1 - license_family: Other - size: 96530 - timestamp: 1620479909603 -- kind: conda - name: font-ttf-source-code-pro - version: '2.038' - build: h77eed37_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 - md5: 4d59c254e01d9cde7957100457e2d5fb - license: OFL-1.1 - license_family: Other - size: 700814 - timestamp: 1620479612257 -- kind: conda - name: font-ttf-ubuntu - version: '0.83' - build: h77eed37_2 - build_number: 2 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda - sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 - md5: cbbe59391138ea5ad3658c76912e147f - license: LicenseRef-Ubuntu-Font-Licence-Version-1.0 - license_family: Other - size: 1622566 - timestamp: 1714483134319 -- kind: conda - name: fontconfig - version: 2.14.2 - build: h14ed4e7_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda - sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 - md5: 0f69b688f52ff6da70bccb7ff7001d1d - depends: - - expat >=2.5.0,<3.0a0 - - freetype >=2.12.1,<3.0a0 - - libgcc-ng >=12 - - libuuid >=2.32.1,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: MIT - license_family: MIT - size: 272010 - timestamp: 1674828850194 -- kind: conda - name: fontconfig - version: 2.14.2 - build: h5bb23bf_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda - sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 - md5: 86cc5867dfbee4178118392bae4a3c89 - depends: - - expat >=2.5.0,<3.0a0 - - freetype >=2.12.1,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: MIT - license_family: MIT - size: 237068 - timestamp: 1674829100063 -- kind: conda - name: fontconfig - version: 2.14.2 - build: hbde0cde_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda - sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 - md5: 08767992f1a4f1336a257af1241034bd - depends: - - 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 - license: MIT - license_family: MIT - size: 190111 - timestamp: 1674829354122 -- kind: conda - name: fonts-conda-ecosystem - version: '1' - build: '0' - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - md5: fee5683a3f04bd15cbd8318b096a27ab - depends: - - fonts-conda-forge - license: BSD-3-Clause - license_family: BSD - size: 3667 - timestamp: 1566974674465 -- kind: conda - name: fonts-conda-forge - version: '1' - build: '0' - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 - md5: f766549260d6815b0c52253f1fb1bb29 - depends: - - font-ttf-dejavu-sans-mono - - font-ttf-inconsolata - - font-ttf-source-code-pro - - font-ttf-ubuntu - license: BSD-3-Clause - license_family: BSD - size: 4102 - timestamp: 1566932280397 -- kind: conda - name: fonttools - version: 4.53.0 - build: py312h4389bb4_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.53.0-py312h4389bb4_0.conda - sha256: 0ee09cfd9085188ba5025784471dbed7ac9b9d4c335837ad9e83db8bf6dd71e4 - md5: 8a2e27d4a2e4d38f2f605d2c902ad8c3 - depends: - - brotli - - munkres - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 2403967 - timestamp: 1717209956772 -- kind: conda - name: fonttools - version: 4.53.0 - build: py312h9a8786e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.53.0-py312h9a8786e_0.conda - sha256: 807618ba95becec0607e71b47f4f88679bce0924fc7926fe5715708a448b38e2 - md5: 8490346e9d5efd7a6869582aa0c95b25 - depends: - - brotli - - libgcc-ng >=12 - - munkres - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 2823081 - timestamp: 1717209380114 -- kind: conda - name: fonttools - version: 4.53.0 - build: py312hbd25219_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.53.0-py312hbd25219_0.conda - sha256: 4f1cc0c19a9a214a12613f570eb9736f68be02af89c386b23df3447fe9c0f5b9 - md5: ce2e9b0279cbbae03017ec7be748b255 - depends: - - __osx >=10.13 - - brotli - - munkres - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 2741413 - timestamp: 1717209389839 -- kind: conda - name: fqdn - version: 1.5.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - sha256: 6cfd1f9bcd2358a69fb571f4b3af049b630d52647d906822dbedac03e84e4f63 - md5: 642d35437078749ef23a5dca2c9bb1f3 - depends: - - cached-property >=1.3.0 - - python >=2.7,<4 - license: MPL-2.0 - license_family: MOZILLA - size: 14395 - timestamp: 1638810388635 -- kind: conda - name: freetype - version: 2.12.1 - build: h267a509_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda - sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6 - md5: 9ae35c3d96db2c94ce0cef86efdfa2cb - depends: - - libgcc-ng >=12 - - libpng >=1.6.39,<1.7.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: GPL-2.0-only OR FTL - size: 634972 - timestamp: 1694615932610 -- kind: conda - name: freetype - version: 2.12.1 - build: h60636b9_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda - sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e - md5: 25152fce119320c980e5470e64834b50 - depends: - - libpng >=1.6.39,<1.7.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: GPL-2.0-only OR FTL - size: 599300 - timestamp: 1694616137838 -- kind: conda - name: freetype - version: 2.12.1 - build: hdaf720e_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda - sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728 - md5: 3761b23693f768dc75a8fd0a73ca053f - depends: - - libpng >=1.6.39,<1.7.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: GPL-2.0-only OR FTL - size: 510306 - timestamp: 1694616398888 -- kind: conda - name: freexl - version: 2.0.0 - build: h3ec172f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/freexl-2.0.0-h3ec172f_0.conda - sha256: 9d59f1894c3b526e6806e376e979b81d0df23a836415122b86458aef72cda24a - md5: 640c34a8084e2a812bcee5b804597fc9 - depends: - - libexpat >=2.5.0,<3.0a0 - - libiconv >=1.17,<2.0a0 - - minizip >=4.0.1,<5.0a0 - license: MPL-1.1 - license_family: MOZILLA - size: 54007 - timestamp: 1694952882265 -- kind: conda - name: freexl - version: 2.0.0 - build: h743c826_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda - sha256: 9213f60ba710ecfd3632ce47e036775c9f15ce80a6682ff63cbf12d9dddd5382 - md5: 12e6988845706b2cfbc3bc35c9a61a95 - depends: - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - minizip >=4.0.1,<5.0a0 - license: MPL-1.1 - license_family: MOZILLA - size: 59769 - timestamp: 1694952692595 -- kind: conda - name: freexl - version: 2.0.0 - build: h8276f4a_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/freexl-2.0.0-h8276f4a_0.conda - sha256: 9ef2fcf3b35703bf61a8359038c4b707382f3d5f0c4020f3f8ffb2f665daabae - md5: 8e02e06229c677cbc9f5dc69ba49052c - depends: - - libexpat >=2.5.0,<3.0a0 - - libiconv >=1.17,<2.0a0 - - minizip >=4.0.1,<5.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MPL-1.1 - license_family: MOZILLA - size: 77439 - timestamp: 1694953013560 -- kind: conda - name: fribidi - version: 1.0.10 - build: h36c2ea0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 - sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 - md5: ac7bc6a654f8f41b352b38f4051135f8 - depends: - - libgcc-ng >=7.5.0 - license: LGPL-2.1 - size: 114383 - timestamp: 1604416621168 -- kind: conda - name: fribidi - version: 1.0.10 - build: h8d14728_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 - sha256: e0323e6d7b6047042970812ee810c6b1e1a11a3af4025db26d0965ae5d206104 - md5: 807e81d915f2bb2e49951648615241f6 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: LGPL-2.1 - size: 64567 - timestamp: 1604417122064 -- kind: conda - name: fribidi - version: 1.0.10 - build: hbcb3906_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 - sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5 - md5: f1c6b41e0f56998ecd9a3e210faa1dc0 - license: LGPL-2.1 - size: 65388 - timestamp: 1604417213 -- kind: conda - name: frozenlist - version: 1.4.1 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.4.1-py312h41838bb_0.conda - sha256: 0b8160b6cbfb92a63afee33640ea4e8174e8f6374b1baa55086b0f50d9477c64 - md5: 2057c85ac7062a3acf8a66af2523e6bf - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: APACHE - size: 53108 - timestamp: 1702646114976 -- kind: conda - name: frozenlist - version: 1.4.1 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.4.1-py312h98912ed_0.conda - sha256: ad36b190476451b366e55a43430673ab9aeb1bfc128cad7245226d92373be450 - md5: 2715764dfa5fb00343e03d5a59b64582 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: APACHE - size: 60685 - timestamp: 1702645610971 -- kind: conda - name: frozenlist - version: 1.4.1 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.4.1-py312he70551f_0.conda - sha256: 1bd946a7b2d33955d6a9c01f48903d9d6c173d176278390e6bea1cd49fce4804 - md5: 76c4af78fdeaa3a6a2e8ac1d16c97ba2 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 53711 - timestamp: 1702646171104 -- kind: conda - name: fsspec - version: 2024.5.0 - build: pyhff2d567_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.5.0-pyhff2d567_0.conda - sha256: 34149798edaf7f67251ee09612cd50b52ee8a69b45e63ddb79732085ae7423cd - md5: d73e9932511ef7670b2cc0ebd9dfbd30 - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 216196 - timestamp: 1715865901761 -- kind: conda - name: gdal - version: 3.8.4 - build: py312h1be6df0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.8.4-py312h1be6df0_0.conda - sha256: 79b1336c723167ef74601d28e2df6da07c2de61e06adf45311ebe0df992f545d - md5: 830c34b2c5f5274d95498d268fcb8126 - depends: - - hdf5 >=1.14.3,<1.14.4.0a0 - - libcxx >=16 - - libgdal 3.8.4 h46636ed_0 - - libxml2 >=2.12.5,<3.0a0 - - numpy >=1.26.4,<2.0a0 - - openssl >=3.2.1,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 1639977 - timestamp: 1708281649303 -- kind: conda - name: gdal - version: 3.8.4 - build: py312h257dd4b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.4-py312h257dd4b_0.conda - sha256: 9c9965dd32d9cf019428423b6a304a65135161ed677101754f53c0f14f44c308 - md5: bc136e43dd613ff29c9b57e3083f7113 - depends: - - hdf5 >=1.14.3,<1.14.4.0a0 - - libgcc-ng >=12 - - libgdal 3.8.4 h9323651_0 - - libstdcxx-ng >=12 - - libxml2 >=2.12.5,<3.0a0 - - numpy >=1.26.4,<2.0a0 - - openssl >=3.2.1,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 1663663 - timestamp: 1708279858483 -- kind: conda - name: gdal - version: 3.8.4 - build: py312h36e25a9_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gdal-3.8.4-py312h36e25a9_0.conda - sha256: 01ea749dd43c989807677665d06c9f7828ec3b273d61622567595a8c80d9a12a - md5: f8506cdf29c7ab42cb942e93ead3fabf - depends: - - hdf5 >=1.14.3,<1.14.4.0a0 - - libgdal 3.8.4 h7c2897a_0 - - libxml2 >=2.12.5,<3.0a0 - - numpy >=1.26.4,<2.0a0 - - openssl >=3.2.1,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 1621277 - timestamp: 1708282168889 -- kind: conda - name: gdk-pixbuf - version: 2.42.10 - build: h829c605_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.10-h829c605_5.conda - sha256: bacd1cc3ed77699dec11ea5a670160db3cf701f1b19f34f1a19be36cae25c396 - md5: 8fdb82e5d9694dd8e9ed9ac8fdf48a26 - depends: - - libglib >=2.78.4,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.43,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 573339 - timestamp: 1710203544212 -- kind: conda - name: gdk-pixbuf - version: 2.42.10 - build: hd9e0ca3_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.10-hd9e0ca3_5.conda - sha256: e15a0923d2640020dc7f2ff2b04f09face4ddce6484e09f78752cd0e65ad1cdf - md5: 308cefd960b6ba51bdbdc5ba9e9b2377 - depends: - - libglib >=2.78.4,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.43,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 550156 - timestamp: 1710203904195 -- kind: conda - name: geographiclib - version: '2.0' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_0.tar.bz2 - sha256: a158e9430662daa29609da21f5d9f18d2093ef37b357c1b594c6f27545aaff3e - md5: 6b1f32359fc5d2ab7b491d0029bfffeb - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 37606 - timestamp: 1650904813447 -- kind: conda - name: geopandas - version: 0.14.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.4-pyhd8ed1ab_0.conda - sha256: a08d4c641dbf7b27b1195c270816cea801edae74dd609012d03ae5ad35c9dccc - md5: acc01facf6f915b6289a064957a58cc1 - depends: - - fiona >=1.8.21 - - folium - - geopandas-base 0.14.4 pyha770c72_0 - - mapclassify >=2.4.0 - - matplotlib-base - - python >=3.9 - - rtree - - xyzservices - license: BSD-3-Clause - license_family: BSD - size: 7691 - timestamp: 1714335630563 -- kind: conda - name: geopandas-base - version: 0.14.4 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.4-pyha770c72_0.conda - sha256: 9dc4b7ee08b60be28a7284104e7147ecf23fcbe3718eeb271712deb92ff3ff06 - md5: b7a9e8e5865cc474fb0856577898316a - depends: - - packaging - - pandas >=1.4.0 - - pyproj >=3.3.0 - - python >=3.9 - - shapely >=1.8.0 - license: BSD-3-Clause - license_family: BSD - size: 1021307 - timestamp: 1714335625468 -- kind: conda - name: geopy - version: 2.4.1 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/geopy-2.4.1-pyhd8ed1ab_1.conda - sha256: 24fce5e30307da0e7961a1e37f64eea4bc060b1496e7a84d1c44ba9ad7c4bfb6 - md5: 358c17429c97883b2cb9ab5f64bc161b - depends: - - geographiclib >=1.52 - - python >=3.7 - license: MIT - license_family: MIT - size: 72883 - timestamp: 1709140298005 -- kind: conda - name: geos - version: 3.12.1 - build: h1537add_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/geos-3.12.1-h1537add_0.conda - sha256: d7a6bb89063df38b24843e5b4c99da602333ac4e1c1e39c069f2021827d3c98d - md5: 02fdccc66ed44a8f9f3731d15f445724 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.1-only - size: 1561705 - timestamp: 1699778438983 -- kind: conda - name: geos - version: 3.12.1 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda - sha256: 2593b255cb9c4639d6ea261c47aaed1380216a366546f0468e95c36c2afd1c1a - md5: 8c0f4f71f5a59ceb0c6fa9f51501066d - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: LGPL-2.1-only - size: 1736070 - timestamp: 1699778102442 -- kind: conda - name: geos - version: 3.12.1 - build: h93d8f39_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda - sha256: 6feffb0d1999a22c5f94d2168b1af9c5fbdd25c9a963a6825ee32cf05e5c07f5 - md5: d13f05ed3985f57456b610bab66366db - depends: - - __osx >=10.9 - - libcxx >=16.0.6 - license: LGPL-2.1-only - size: 1462098 - timestamp: 1699778844758 -- kind: conda - name: geotiff - version: 1.7.1 - build: h509af15_15 - build_number: 15 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h509af15_15.conda - sha256: e6047c9008746788d265ec6b30551387efd204a5a9a599f0f0359956e8513e76 - md5: 96cb876ae9551821ad4cd6ce860d75f1 - depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - zlib - license: MIT - license_family: MIT - size: 118949 - timestamp: 1702091820418 -- kind: conda - name: geotiff - version: 1.7.1 - build: h6b2125f_15 - build_number: 15 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6b2125f_15.conda - sha256: f7dcc865f5522713048397702490ba917abf9d2fbfe89d6b703e0ea333a27b01 - md5: 218a726155bd9ae1787b26054eed8566 - depends: - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libstdcxx-ng >=12 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - zlib - license: MIT - license_family: MIT - size: 133164 - timestamp: 1702091590935 -- kind: conda - name: geotiff - version: 1.7.1 - build: hbf5ca3a_15 - build_number: 15 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hbf5ca3a_15.conda - sha256: 7e50e631cf86ebf19e1a25e13b4d778d6166f17a28583c18c3794576b370fbcf - md5: b57ca6d86e2f217bf5277e15361e88a8 - depends: - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zlib - license: MIT - license_family: MIT - size: 125707 - timestamp: 1702092204962 -- kind: conda - name: getopt-win32 - version: '0.1' - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/getopt-win32-0.1-hcfcfb64_1.conda - sha256: f3b6e689724a62f36591f6f0e4657db5507feca78e7ef08690a6b2a384216a5c - md5: 714d0882dc5e692ca4683d8e520f73c6 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-3.0-only - license_family: GPL - size: 21903 - timestamp: 1694400856979 -- kind: conda - name: gettext - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.22.5-h5728263_2.conda - sha256: cd4ef93fd052a4fe89a4db963c9d69e60c8a434d41968fc9dc8726db67191582 - md5: da84216f88a8c89eb943c683ceb34d7d - depends: - - gettext-tools 0.22.5 h7d00a51_2 - - libasprintf 0.22.5 h5728263_2 - - libasprintf-devel 0.22.5 h5728263_2 - - libgettextpo 0.22.5 h5728263_2 - - libgettextpo-devel 0.22.5 h5728263_2 - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5728263_2 - - libintl-devel 0.22.5 h5728263_2 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 34028 - timestamp: 1712517225377 -- kind: conda - name: gettext - version: 0.22.5 - build: h59595ed_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda - sha256: 386181254ddd2aed1fccdfc217da5b6545f6df4e9979ad8e08f5e91e22eaf7dc - md5: 219ba82e95d7614cf7140d2a4afc0926 - depends: - - gettext-tools 0.22.5 h59595ed_2 - - libasprintf 0.22.5 h661eb56_2 - - libasprintf-devel 0.22.5 h661eb56_2 - - libgcc-ng >=12 - - libgettextpo 0.22.5 h59595ed_2 - - libgettextpo-devel 0.22.5 h59595ed_2 - - libstdcxx-ng >=12 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 475058 - timestamp: 1712512357949 -- kind: conda - name: gettext - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.22.5-h5ff76d1_2.conda - sha256: ba9a4680b018a4ca517ec20beb25b09c97e293ecd16b931075e689db10291712 - md5: c09b3dcf2adc5a2a32d11ab90289b8fa - depends: - - gettext-tools 0.22.5 h5ff76d1_2 - - libasprintf 0.22.5 h5ff76d1_2 - - libasprintf-devel 0.22.5 h5ff76d1_2 - - libcxx >=16 - - libgettextpo 0.22.5 h5ff76d1_2 - - libgettextpo-devel 0.22.5 h5ff76d1_2 - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5ff76d1_2 - - libintl-devel 0.22.5 h5ff76d1_2 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 481687 - timestamp: 1712513003915 -- kind: conda - name: gettext-tools - version: 0.22.5 - build: h59595ed_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda - sha256: 67d7b1d6fe4f1c516df2000640ec7dcfebf3ff6ea0785f0276870e730c403d33 - md5: 985f2f453fb72408d6b6f1be0f324033 - depends: - - libgcc-ng >=12 - license: GPL-3.0-or-later - license_family: GPL - size: 2728420 - timestamp: 1712512328692 -- kind: conda - name: gettext-tools - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gettext-tools-0.22.5-h5ff76d1_2.conda - sha256: 4db71a66340d068c57e16c574c356db6df54ac0147b5b26d3313093f7854ee6d - md5: 37e1cb0efeff4d4623a6357e37e0105d - depends: - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5ff76d1_2 - license: GPL-3.0-or-later - license_family: GPL - size: 2501207 - timestamp: 1712512940076 -- kind: conda - name: gettext-tools - version: 0.22.5 - build: h7d00a51_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gettext-tools-0.22.5-h7d00a51_2.conda - sha256: e3621dc3d48399c89bf0dd512a6a398d354429b3b84219473d674aa56e0feef2 - md5: ef1c3bb48c013099c4872640a5f2096c - depends: - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5728263_2 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: GPL-3.0-or-later - license_family: GPL - size: 3415835 - timestamp: 1712516856107 -- kind: conda - name: gflags - version: 2.2.2 - build: hb1e8313_1004 - build_number: 1004 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 - sha256: 39540f879057ae529cad131644af111a8c3c48b384ec6212de6a5381e0863948 - md5: 3f59cc77a929537e42120faf104e0d16 - depends: - - libcxx >=10.0.1 - license: BSD-3-Clause - license_family: BSD - size: 94612 - timestamp: 1599590973213 -- kind: conda - name: gflags - version: 2.2.2 - build: he1b5a44_1004 - build_number: 1004 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 - sha256: a853c0cacf53cfc59e1bca8d6e5cdfe9f38fce836f08c2a69e35429c2a492e77 - md5: cddaf2c63ea4a5901cf09524c490ecdc - depends: - - libgcc-ng >=7.5.0 - - libstdcxx-ng >=7.5.0 - license: BSD-3-Clause - license_family: BSD - size: 116549 - timestamp: 1594303828933 -- kind: conda - name: giflib - version: 5.2.2 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.2-h10d778d_0.conda - sha256: 2c825df829097536314a195ae5cacaa8695209da6b4400135a65d8e23c008ff8 - md5: 03e8c9b4d3da5f3d6eabdd020c2d63ac - license: MIT - license_family: MIT - size: 74516 - timestamp: 1712692686914 -- kind: conda - name: giflib - version: 5.2.2 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda - sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff - md5: 3bf7b9fd5a7136126e0234db4b87c8b6 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 77248 - timestamp: 1712692454246 -- kind: conda - name: gl2ps - version: 1.4.2 - build: h0597ee9_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gl2ps-1.4.2-h0597ee9_0.tar.bz2 - sha256: 6d4f45a6c4021c439b846356effac330d01a95a606e2eab9b5bd0cbdb1875b64 - md5: 9f17f1b93f610b4bea2a256d528fe8f6 - depends: - - libpng >=1.6.37,<1.7.0a0 - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - - zlib >=1.2.11,<1.3.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 75904 - timestamp: 1607159229446 -- kind: conda - name: gl2ps - version: 1.4.2 - build: h0708190_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-h0708190_0.tar.bz2 - sha256: feaf757731cfb8231d8a6c5b3446bbc428aa1cca126f09628ccafaa98a80f022 - md5: 438718bf8921ac70956d919d0e2cc487 - depends: - - libgcc-ng >=9.3.0 - - libpng >=1.6.37,<1.7.0a0 - - zlib >=1.2.11,<1.3.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 150419 - timestamp: 1607158896675 -- kind: conda - name: gl2ps - version: 1.4.2 - build: h4cff582_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gl2ps-1.4.2-h4cff582_0.tar.bz2 - sha256: 668be06fc02b924eaf6c4f37c760804a8ca76bd119b5caa6eca51d8e96e957b3 - md5: a9e91533b95cd019d58f4b3ef9bbddf0 - depends: - - libpng >=1.6.37,<1.7.0a0 - - zlib >=1.2.11,<1.3.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 73640 - timestamp: 1607158843927 -- kind: conda - name: glew - version: 2.1.0 - build: h046ec9c_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 - sha256: 1d114d93fd4bf043aa6fccc550379c0ac0a48461633cd1e1e49abe55be8562df - md5: 6b753c8c7e4c46a8eb17b6f1781f958a - depends: - - libcxx >=11.0.0 - license: BSD-3-Clause - license_family: BSD - size: 708867 - timestamp: 1607113212595 -- kind: conda - name: glew - version: 2.1.0 - build: h39d44d4_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 - sha256: 6a780b5ca7253129ea5e63671f0aeafc8f119167e170a60ccbd8573669ef848d - md5: 840d21c1ee66b91af3d0211e7766393a - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: BSD-3-Clause - license_family: BSD - size: 963275 - timestamp: 1607113700054 -- kind: conda - name: glew - version: 2.1.0 - build: h9c3ff4c_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 - sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae - md5: fb05eb5c47590b247658243d27fc32f1 - depends: - - libgcc-ng >=9.3.0 - - libglu - - libstdcxx-ng >=9.3.0 - - xorg-libx11 - - xorg-libxext - license: BSD-3-Clause - license_family: BSD - size: 662569 - timestamp: 1607113198887 -- kind: conda - name: glib - version: 2.78.4 - build: h12be248_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/glib-2.78.4-h12be248_0.conda - sha256: 941aaf433be2b147738b4f2729008faa6639ed55b59381605f1cfb8d0dabac27 - md5: 0080f150ed83685497f841f4b70fca1f - depends: - - gettext >=0.21.1,<1.0a0 - - glib-tools 2.78.4 h12be248_0 - - libglib 2.78.4 h16e383f_0 - - libzlib >=1.2.13,<2.0.0a0 - - python * - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.1-or-later - size: 506268 - timestamp: 1708285308336 -- kind: conda - name: glib - version: 2.78.4 - build: h2d185b6_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/glib-2.78.4-h2d185b6_0.conda - sha256: 546775c50a28dcbe22b784d6cc4e8ba3774aac59517858529742657b0563c326 - md5: 0383ef91e41caea857176363c2bf7387 - depends: - - gettext >=0.21.1,<1.0a0 - - glib-tools 2.78.4 h2d185b6_0 - - libcxx >=16 - - libglib 2.78.4 hab64008_0 - - libzlib >=1.2.13,<2.0.0a0 - - python * - license: LGPL-2.1-or-later - size: 488242 - timestamp: 1708285214506 -- kind: conda - name: glib - version: 2.78.4 - build: hfc55251_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.78.4-hfc55251_0.conda - sha256: 316c95dcbde46b7418d2b667a7e0c1d05101b673cd8c691d78d8699600a07a5b - md5: f36a7b2420c3fc3c48a3d609841d8fee - depends: - - gettext >=0.21.1,<1.0a0 - - glib-tools 2.78.4 hfc55251_0 - - libgcc-ng >=12 - - libglib 2.78.4 h783c2da_0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - python * - license: LGPL-2.1-or-later - size: 489127 - timestamp: 1708284952839 -- kind: conda - name: glib-tools - version: 2.78.4 - build: h12be248_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.78.4-h12be248_0.conda - sha256: 936c16a45216916d3fecce9353953bac0dcf3e24cf4999d5cab7b7e601dd274c - md5: 9e2a4c1cace3fbdeb11f20578484ddaf - depends: - - libglib 2.78.4 h16e383f_0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.1-or-later - size: 145970 - timestamp: 1708285241564 -- kind: conda - name: glib-tools - version: 2.78.4 - build: h2d185b6_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.78.4-h2d185b6_0.conda - sha256: bf3d98bd8a1e0b105d124468c3ca276194c1a06ddc4a9dc44a77df65c44f8eb8 - md5: f91cde30ad552c39b485bb5ad0ce454c - depends: - - libcxx >=16 - - libglib 2.78.4 hab64008_0 - - libzlib >=1.2.13,<2.0.0a0 - license: LGPL-2.1-or-later - size: 97529 - timestamp: 1708285134585 -- kind: conda - name: glib-tools - version: 2.78.4 - build: hfc55251_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.78.4-hfc55251_0.conda - sha256: e94494b895f77ba54922ffb1dcfb7f1a987591b823eb5ce608afb2e2391d7d82 - md5: d184ba1bf15a2bbb3be6118c90fd487d - depends: - - libgcc-ng >=12 - - libglib 2.78.4 h783c2da_0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: LGPL-2.1-or-later - size: 111383 - timestamp: 1708284914557 -- kind: conda - name: glog - version: 0.7.0 - build: h31b1b29_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.0-h31b1b29_0.conda - sha256: 49d39c6b0c38d9f2badfc37450ea45a40493669561d588ee81d9e5b7ed4478b7 - md5: bda05f8f4c205124348c764dd82db33a - depends: - - __osx >=10.12 - - gflags >=2.2.2,<2.3.0a0 - - libcxx >=16 - license: BSD-3-Clause - license_family: BSD - size: 115506 - timestamp: 1708261022187 -- kind: conda - name: glog - version: 0.7.0 - build: hed5481d_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.0-hed5481d_0.conda - sha256: 19f41db8f189ed9caec68ffb9ec97d5518b5ee6b58e0636d185f392f688a84a1 - md5: a9ea19c48e11754899299f8123070f4e - depends: - - gflags >=2.2.2,<2.3.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 143596 - timestamp: 1708260910243 -- kind: conda - name: gmp - version: 6.3.0 - build: h59595ed_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda - sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 - md5: e358c7c5f6824c272b5034b3816438a7 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 569852 - timestamp: 1710169507479 -- kind: conda - name: gmp - version: 6.3.0 - build: h73e2aa4_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda - sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 - md5: 92f8d748d95d97f92fc26cfac9bb5b6e - depends: - - libcxx >=16 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 519804 - timestamp: 1710170159201 -- kind: conda - name: gnutls - version: 3.7.9 - build: h1951705_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.9-h1951705_0.conda - sha256: 6754e835f78733ddded127e0a044c476be466f67f6b5881b685730590bf8436f - md5: b43bd7c59ff7f7163106a58a493b51f9 - depends: - - __osx >=10.9 - - gettext >=0.21.1,<1.0a0 - - libcxx >=16.0.6 - - libidn2 >=2,<3.0a0 - - libtasn1 >=4.19.0,<5.0a0 - - nettle >=3.9.1,<3.10.0a0 - - p11-kit >=0.24.1,<0.25.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 1980037 - timestamp: 1701111603786 -- kind: conda - name: gnutls - version: 3.7.9 - build: hb077bed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda - sha256: 52d824a5d2b8a5566cd469cae6ad6920469b5a15b3e0ddc609dd29151be71be2 - md5: 33eded89024f21659b1975886a4acf70 - depends: - - libgcc-ng >=12 - - libidn2 >=2,<3.0a0 - - libstdcxx-ng >=12 - - libtasn1 >=4.19.0,<5.0a0 - - nettle >=3.9.1,<3.10.0a0 - - p11-kit >=0.24.1,<0.25.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 1974935 - timestamp: 1701111180127 -- kind: conda - name: graphite2 - version: 1.3.13 - build: h59595ed_1003 - build_number: 1003 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda - sha256: 0595b009f20f8f60f13a6398e7cdcbd2acea5f986633adcf85f5a2283c992add - md5: f87c7b7c2cb45f323ffbce941c78ab7c - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: LGPL-2.0-or-later - license_family: LGPL - size: 96855 - timestamp: 1711634169756 -- kind: conda - name: graphite2 - version: 1.3.13 - build: h63175ca_1003 - build_number: 1003 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda - sha256: 25040a4f371b9b51663f546bac620122c237fa1d5d32968e21b0751af9b7f56f - md5: 3194499ee7d1a67404a87d0eefdd92c6 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.0-or-later - license_family: LGPL - size: 95406 - timestamp: 1711634622644 -- kind: conda - name: graphite2 - version: 1.3.13 - build: h73e2aa4_1003 - build_number: 1003 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda - sha256: b71db966e47cd83b16bfcc2099b8fa87c07286f24a0742078fede4c84314f91a - md5: fc7124f86e1d359fc5d878accd9e814c - depends: - - libcxx >=16 - license: LGPL-2.0-or-later - license_family: LGPL - size: 84384 - timestamp: 1711634311095 -- kind: conda - name: graphviz - version: 9.0.0 - build: h51cb2cd_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/graphviz-9.0.0-h51cb2cd_1.conda - sha256: 6ec8b6be4e155b1928340961d4806460a21f55709aa092d90695eb531c1d145e - md5: 9e73e70557ae3c1c9d4bdf70f47dd141 - depends: - - cairo >=1.18.0,<2.0a0 - - getopt-win32 >=0.1,<0.2.0a0 - - gts >=0.7.6,<0.8.0a0 - - libexpat >=2.5.0,<3.0a0 - - libgd >=2.3.3,<2.4.0a0 - - libglib >=2.78.1,<3.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - pango >=1.50.14,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: EPL-1.0 - license_family: Other - size: 1134308 - timestamp: 1700902326239 -- kind: conda - name: graphviz - version: 9.0.0 - build: h78e8752_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/graphviz-9.0.0-h78e8752_1.conda - sha256: 1813800d655c120a3941d543a6fc64e3c178c737f1c84f6b7ebe1f19f27fa4fb - md5: a3f4cd4a512ec5db35ffbf25ba11f537 - depends: - - cairo >=1.18.0,<2.0a0 - - fonts-conda-ecosystem - - gdk-pixbuf >=2.42.10,<3.0a0 - - gtk2 - - gts >=0.7.6,<0.8.0a0 - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libgd >=2.3.3,<2.4.0a0 - - libglib >=2.78.1,<3.0a0 - - librsvg >=2.56.3,<3.0a0 - - libstdcxx-ng >=12 - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - pango >=1.50.14,<2.0a0 - license: EPL-1.0 - license_family: Other - size: 2310834 - timestamp: 1700901584973 -- kind: conda - name: graphviz - version: 9.0.0 - build: hee74176_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/graphviz-9.0.0-hee74176_1.conda - sha256: 3080dc2f9ea708af0ea94d49348cff05884a149214a5e225e9647eff4cdac849 - md5: 7cd479251093c332aa9fe93cfb8f698b - depends: - - __osx >=10.9 - - cairo >=1.18.0,<2.0a0 - - fonts-conda-ecosystem - - gdk-pixbuf >=2.42.10,<3.0a0 - - gtk2 - - gts >=0.7.6,<0.8.0a0 - - libcxx >=16.0.6 - - libexpat >=2.5.0,<3.0a0 - - libgd >=2.3.3,<2.4.0a0 - - libglib >=2.78.1,<3.0a0 - - librsvg >=2.56.3,<3.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - pango >=1.50.14,<2.0a0 - license: EPL-1.0 - license_family: Other - size: 4712901 - timestamp: 1700901972742 -- kind: conda - name: griffe - version: 0.45.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/griffe-0.45.2-pyhd8ed1ab_0.conda - sha256: d1e59d459a6e2d14a77bd327523ac19caa1b03bba732622d603b6cbb70b35d6b - md5: 409a74bc6c127c7a623777547d03d587 - depends: - - astunparse >=1.6 - - colorama >=0.4 - - python >=3.8 - license: MIT - license_family: MIT - size: 92053 - timestamp: 1716536711364 -- kind: conda - name: gst-plugins-base - version: 1.22.9 - build: h001b923_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.9-h001b923_1.conda - sha256: e2c37128de5bdc12e3656c9c50e7b1459d8890ea656b866e68293e334356b652 - md5: ef961ec5b46ac75cebd3d68460691c27 - depends: - - gettext >=0.21.1,<1.0a0 - - gstreamer 1.22.9 hb4038d2_1 - - libglib >=2.78.4,<3.0a0 - - libogg >=1.3.4,<1.4.0a0 - - libvorbis >=1.3.7,<1.4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.0-or-later - license_family: LGPL - size: 2035564 - timestamp: 1711211913043 -- kind: conda - name: gst-plugins-base - version: 1.22.9 - build: h3fb38fc_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.22.9-h3fb38fc_0.conda - sha256: c633c837b6e24da03129144ac1ab5940f43035a639b39bb2a1b086ea2f025e8f - md5: a0a4e1596c79cb67ba243e5e4dfd559f - depends: - - gettext >=0.21.1,<1.0a0 - - gstreamer 1.22.9 hf63bbb8_0 - - libcxx >=15 - - libglib >=2.78.3,<3.0a0 - - libogg >=1.3.4,<1.4.0a0 - - libopus >=1.3.1,<2.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libvorbis >=1.3.7,<1.4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 2344738 - timestamp: 1706155251056 -- kind: conda - name: gst-plugins-base - version: 1.22.9 - build: h8e1006c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.9-h8e1006c_0.conda - sha256: a4312c96a670fdbf9ff0c3efd935e42fa4b655ff33dcc52c309b76a2afaf03f0 - md5: 614b81f8ed66c56b640faee7076ad14a - depends: - - __glibc >=2.17,<3.0.a0 - - alsa-lib >=1.2.10,<1.3.0.0a0 - - gettext >=0.21.1,<1.0a0 - - gstreamer 1.22.9 h98fc4e7_0 - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libglib >=2.78.3,<3.0a0 - - libogg >=1.3.4,<1.4.0a0 - - libopus >=1.3.1,<2.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libstdcxx-ng >=12 - - libvorbis >=1.3.7,<1.4.0a0 - - libxcb >=1.15,<1.16.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxau >=1.0.11,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxrender >=0.9.11,<0.10.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 2709696 - timestamp: 1706154948546 -- kind: conda - name: gstreamer - version: 1.22.9 - build: h98fc4e7_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.9-h98fc4e7_0.conda - sha256: aa2395bf1790f72d2706bac77430f765ec1318ca22e60e791c13ae452c045263 - md5: bcc7157b06fce7f5e055402a8135dfd8 - depends: - - __glibc >=2.17,<3.0.a0 - - gettext >=0.21.1,<1.0a0 - - glib >=2.78.3,<3.0a0 - - libgcc-ng >=12 - - libglib >=2.78.3,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libstdcxx-ng >=12 - license: LGPL-2.0-or-later - license_family: LGPL - size: 1981554 - timestamp: 1706154826325 -- kind: conda - name: gstreamer - version: 1.22.9 - build: hb4038d2_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.9-hb4038d2_1.conda - sha256: 4d42bc24434db62c093748ea3ad0b6ba3872b6810b761363585513ebd79b4f87 - md5: 70557ab875e72c1f21e8d2351aeb9c54 - depends: - - gettext >=0.21.1,<1.0a0 - - glib >=2.78.4,<3.0a0 - - libglib >=2.78.4,<3.0a0 - - libiconv >=1.17,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.0-or-later - license_family: LGPL - size: 1936661 - timestamp: 1711211717228 -- kind: conda - name: gstreamer - version: 1.22.9 - build: hf63bbb8_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.22.9-hf63bbb8_0.conda - sha256: be9d64972f997e1f865673cbb059a8c653f1fb38ff5e6c6a049699823bad0d9f - md5: 1581bb03c4655191284a3eab9ee8690d - depends: - - gettext >=0.21.1,<1.0a0 - - glib >=2.78.3,<3.0a0 - - libcxx >=15 - - libglib >=2.78.3,<3.0a0 - - libiconv >=1.17,<2.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 1781693 - timestamp: 1706154946526 -- kind: conda - name: gtk2 - version: 2.24.33 - build: h280cfa0_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h280cfa0_4.conda - sha256: b946ba60d177d72157cad8af51723f1d081a4794741d35debe53f8b2c807f3af - md5: 410f86e58e880dcc7b0e910a8e89c05c - depends: - - atk-1.0 >=2.38.0 - - cairo >=1.18.0,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - gdk-pixbuf >=2.42.10,<3.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - libgcc-ng >=12 - - libglib >=2.78.4,<3.0a0 - - pango >=1.50.14,<2.0a0 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxrender >=0.9.11,<0.10.0a0 - license: LGPL-2.1-or-later - size: 6478240 - timestamp: 1710142047337 -- kind: conda - name: gtk2 - version: 2.24.33 - build: h8ca4665_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h8ca4665_4.conda - sha256: 5283dfb9a96d78a67e0cbf6e4592411bb19eaf27f2c7c14b47e63162e71317d2 - md5: ff451625250bf843393ca3d660accab3 - depends: - - atk-1.0 >=2.38.0 - - cairo >=1.18.0,<2.0a0 - - gdk-pixbuf >=2.42.10,<3.0a0 - - gettext >=0.21.1,<1.0a0 - - libglib >=2.78.4,<3.0a0 - - pango >=1.50.14,<2.0a0 - license: LGPL-2.1-or-later - size: 6137964 - timestamp: 1710142524166 -- kind: conda - name: gts - version: 0.7.6 - build: h53e17e3_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda - sha256: d5b82a36f7e9d7636b854e56d1b4fe01c4d895128a7b73e2ec6945b691ff3314 - md5: 848cc963fcfbd063c7a023024aa3bec0 - depends: - - libcxx >=15.0.7 - - libglib >=2.76.3,<3.0a0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 280972 - timestamp: 1686545425074 -- kind: conda - name: gts - version: 0.7.6 - build: h6b5321d_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda - sha256: b79755d2f9fc2113b6949bfc170c067902bc776e2c20da26e746e780f4f5a2d4 - md5: a41f14768d5e377426ad60c613f2923b - depends: - - libglib >=2.76.3,<3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.0-or-later - license_family: LGPL - size: 188688 - timestamp: 1686545648050 -- kind: conda - name: gts - version: 0.7.6 - build: h977cf35_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda - sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b - md5: 4d8df0b0db060d33c9a702ada998a8fe - depends: - - libgcc-ng >=12 - - libglib >=2.76.3,<3.0a0 - - libstdcxx-ng >=12 - license: LGPL-2.0-or-later - license_family: LGPL - size: 318312 - timestamp: 1686545244763 -- kind: conda - name: h11 - version: 0.14.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - sha256: 817d2c77d53afe3f3d9cf7f6eb8745cdd8ea76c7adaa9d7ced75c455a2c2c085 - md5: b21ed0883505ba1910994f1df031a428 - depends: - - python >=3 - - typing_extensions - license: MIT - license_family: MIT - size: 48251 - timestamp: 1664132995560 -- kind: conda - name: h2 - version: 4.1.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a - md5: b748fbf7060927a6e82df7cb5ee8f097 - depends: - - hpack >=4.0,<5 - - hyperframe >=6.0,<7 - - python >=3.6.1 - license: MIT - license_family: MIT - size: 46754 - timestamp: 1634280590080 -- kind: conda - name: harfbuzz - version: 8.3.0 - build: h3d44ed6_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda - sha256: 4b55aea03b18a4084b750eee531ad978d4a3690f63019132c26c6ad26bbe3aed - md5: 5a6f6c00ef982a9bc83558d9ac8f64a0 - depends: - - cairo >=1.18.0,<2.0a0 - - freetype >=2.12.1,<3.0a0 - - graphite2 - - icu >=73.2,<74.0a0 - - libgcc-ng >=12 - - libglib >=2.78.1,<3.0a0 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 1547473 - timestamp: 1699925311766 -- kind: conda - name: harfbuzz - version: 8.3.0 - build: h7ab893a_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-8.3.0-h7ab893a_0.conda - sha256: 5365595303d95810d10662b46f9e857cedc82757cc7b5576bda30e15d66bb3ad - md5: b8ef0beb91df83c5e6038c9509b9f730 - depends: - - cairo >=1.18.0,<2.0a0 - - freetype >=2.12.1,<3.0a0 - - graphite2 - - icu >=73.2,<74.0a0 - - libglib >=2.78.1,<3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 1070592 - timestamp: 1699926990335 -- kind: conda - name: harfbuzz - version: 8.3.0 - build: hf45c392_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.3.0-hf45c392_0.conda - sha256: c6ea14e4f4869bc78b27276c09832af845dfa415585362ed6064e37a1b5fe9c5 - md5: 41d890485f909e4ecdc608741718c75e - depends: - - __osx >=10.9 - - cairo >=1.18.0,<2.0a0 - - freetype >=2.12.1,<3.0a0 - - graphite2 - - icu >=73.2,<74.0a0 - - libcxx >=16.0.6 - - libglib >=2.78.1,<3.0a0 - license: MIT - license_family: MIT - size: 1342172 - timestamp: 1699925847743 -- kind: conda - name: hdf4 - version: 4.2.15 - build: h2a13503_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda - sha256: 0d09b6dc1ce5c4005ae1c6a19dc10767932ef9a5e9c755cfdbb5189ac8fb0684 - md5: bd77f8da987968ec3927990495dc22e4 - depends: - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 756742 - timestamp: 1695661547874 -- kind: conda - name: hdf4 - version: 4.2.15 - build: h5557f11_7 - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda - sha256: 52fa5dde69758c19c69ab68a3d7ebfb2c9042e3a55d405c29a59d3b0584fd790 - md5: 84344a916a73727c1326841007b52ca8 - depends: - - libjpeg-turbo >=3.0.0,<4.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 779637 - timestamp: 1695662145568 -- kind: conda - name: hdf4 - version: 4.2.15 - build: h8138101_7 - build_number: 7 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda - sha256: 8c767cc71226e9eb62649c903c68ba73c5f5e7e3696ec0319d1f90586cebec7d - md5: 7ce543bf38dbfae0de9af112ee178af2 - depends: - - libcxx >=15.0.7 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 724103 - timestamp: 1695661907511 -- kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_h2b43c12_102 - build_number: 102 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_h2b43c12_102.conda - sha256: f9e4a563a217ee80df9d90076be8dca91344c5f4e5ab103c6f2673cd06fd2f07 - md5: ef60988e99d4110d992cd84e6b581ee4 - depends: - - libaec >=1.1.3,<2.0a0 - - libcurl >=8.8.0,<9.0a0 - - libzlib >=1.2.13,<2.0a0 - - openssl >=3.3.0,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 2043200 - timestamp: 1716901165922 -- kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_h687a608_102 - build_number: 102 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_102.conda - sha256: f223e8bcb5c7ad5815abd7582f321322999e0ee830cbec7f1d4dd44766d3369e - md5: b7f214127eb5d1af1b1b4108a04196a6 - depends: - - __osx >=10.13 - - libaec >=1.1.3,<2.0a0 - - libcurl >=8.8.0,<9.0a0 - - libcxx >=16 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - libzlib >=1.2.13,<2.0a0 - - openssl >=3.3.0,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 3735586 - timestamp: 1716901800340 -- kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_hdf9ad27_102 - build_number: 102 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_102.conda - sha256: fcd864371b32e29557dddd7a9fdc60247586fbf321c06fa63dc287e3572ce99f - md5: d8cb3688b92e891e1e5f613517a50ca8 - depends: - - libaec >=1.1.3,<2.0a0 - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0a0 - - openssl >=3.3.0,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 3889436 - timestamp: 1716901447176 -- kind: conda - name: hpack - version: 4.0.0 - build: pyh9f0ad1d_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8 - md5: 914d6646c4dbb1fd3ff539830a12fd71 - depends: - - python - license: MIT - license_family: MIT - size: 25341 - timestamp: 1598856368685 -- kind: conda - name: httpcore - version: 1.0.5 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda - sha256: 4025644200eefa0598e4600a66fd4804a57d9fd7054a5c8c45e508fd875e0b84 - md5: a6b9a0158301e697e4d0a36a3d60e133 - depends: - - anyio >=3.0,<5.0 - - certifi - - h11 >=0.13,<0.15 - - h2 >=3,<5 - - python >=3.8 - - sniffio 1.* - license: BSD-3-Clause - license_family: BSD - size: 45816 - timestamp: 1711597091407 -- kind: conda - name: httpx - version: 0.27.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda - sha256: fdaf341fb2630b7afe8238315448fc93947f77ebfa4da68bb349e1bcf820af58 - md5: 9f359af5a886fd6ca6b2b6ea02e58332 - depends: - - anyio - - certifi - - httpcore 1.* - - idna - - python >=3.8 - - sniffio - license: BSD-3-Clause - license_family: BSD - size: 64651 - timestamp: 1708531043505 -- kind: conda - name: hyperframe - version: 6.0.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 - sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330 - md5: 9f765cbfab6870c8435b9eefecd7a1f4 - depends: - - python >=3.6 - license: MIT - license_family: MIT - size: 14646 - timestamp: 1619110249723 -- kind: conda - name: icu - version: '73.2' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 - md5: cc47e1facc155f91abd89b11e48e72ff - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 12089150 - timestamp: 1692900650789 -- kind: conda - name: icu - version: '73.2' - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/icu-73.2-h63175ca_0.conda - sha256: 423aaa2b69d713520712f55c7c71994b7e6f967824bb39b59ad968e7b209ce8c - md5: 0f47d9e3192d9e09ae300da0d28e0f56 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 13422193 - timestamp: 1692901469029 -- kind: conda - name: icu - version: '73.2' - build: hf5e326d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 - md5: 5cc301d759ec03f28328428e28f65591 - license: MIT - license_family: MIT - size: 11787527 - timestamp: 1692901622519 -- kind: conda - name: identify - version: 2.5.36 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.36-pyhd8ed1ab_0.conda - sha256: dc98ab2233d3ed3692499e2a06b027489ee317658cef9277ec23cab00236f31c - md5: ba68cb5105760379432cebc82b45af40 - depends: - - python >=3.6 - - ukkonen - license: MIT - license_family: MIT - size: 78375 - timestamp: 1713673091737 -- kind: conda - name: idna - version: '3.7' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda - sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b - md5: c0cc1420498b17414d8617d0b9f506ca - depends: - - python >=3.6 - license: BSD-3-Clause - license_family: BSD - size: 52718 - timestamp: 1713279497047 -- kind: conda - name: imod - version: 0.17.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/imod-0.17.1-pyhd8ed1ab_0.conda - sha256: 04ee2597339b064222064d1a5ce92e8aaf8d8314079226857b27e07386e88320 - md5: 0bb1b0307bced5eeca1b302c2b693644 - depends: - - affine - - bottleneck - - cftime >=1.0 - - contextily >=1.0 - - cytoolz - - dask - - fastcore - - geopandas - - graphviz - - jinja2 - - loguru - - matplotlib-base - - netcdf4 - - numba >=0.50 - - numpy - - pandas - - pooch - - pymetis - - python >=3.10 - - python-dateutil - - python-graphviz - - pyvista - - rasterio >=1.0 - - scipy - - scooby - - shapely >=2.0 - - tomli >=1.1.0 - - tomli-w - - toolz - - tqdm - - vtk >=9.0 - - xarray >=2023.08.0 - - xugrid >=0.10.0 - - zarr - license: MIT - license_family: MIT - size: 1544205 - timestamp: 1715936697280 -- kind: conda - name: importlib-metadata - version: 7.1.0 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda - sha256: cc2e7d1f7f01cede30feafc1118b7aefa244d0a12224513734e24165ae12ba49 - md5: 0896606848b2dc5cebdf111b6543aa04 - depends: - - python >=3.8 - - zipp >=0.5 - license: Apache-2.0 - license_family: APACHE - size: 27043 - timestamp: 1710971498183 -- kind: conda - name: importlib-resources - version: 6.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib-resources-6.4.0-pyhd8ed1ab_0.conda - sha256: 38db827f445ae437a15d50a94816ae67a48285d0700f736af3eb90800a71f079 - md5: dcbadab7a68738a028e195ab68ab2d2e - depends: - - importlib_resources >=6.4.0,<6.4.1.0a0 - - python >=3.8 - license: Apache-2.0 - license_family: APACHE - size: 9657 - timestamp: 1711041029062 -- kind: conda - name: importlib_metadata - version: 7.1.0 - build: hd8ed1ab_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.1.0-hd8ed1ab_0.conda - sha256: 01dc057a45dedcc742a71599f67c7383ae2bf873be6018ebcbd06ac8d994dedb - md5: 6ef2b72d291b39e479d7694efa2b2b98 - depends: - - importlib-metadata >=7.1.0,<7.1.1.0a0 - license: Apache-2.0 - license_family: APACHE - size: 9444 - timestamp: 1710971502542 -- kind: conda - name: importlib_resources - version: 6.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda - sha256: c6ae80c0beaeabb342c5b041f19669992ae6e937dbec56ced766cb035900f9de - md5: c5d3907ad8bd7bf557521a1833cf7e6d - depends: - - python >=3.8 - - zipp >=3.1.0 - constrains: - - importlib-resources >=6.4.0,<6.4.1.0a0 - license: Apache-2.0 - license_family: APACHE - size: 33056 - timestamp: 1711041009039 -- kind: conda - name: intel-openmp - version: 2024.1.0 - build: h57928b3_966 - build_number: 966 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.1.0-h57928b3_966.conda - sha256: 77465396f2636c8b3b3a587f1636ee35c17a73e2a2c7e0ea0957b05f84704cf3 - md5: 35d7ea07ad6c878bd7240d2d6c1b8657 - license: LicenseRef-IntelSimplifiedSoftwareOct2022 - license_family: Proprietary - size: 1616293 - timestamp: 1716560867765 -- kind: conda - name: ipykernel - version: 6.29.3 - build: pyh3cd1d5f_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyh3cd1d5f_0.conda - sha256: ef2f9c1d83afd693db3793c368c5c6afcd37a416958ece490a2e1fbcd85012eb - md5: 28e74fca8d8abf09c1ed0d190a17e307 - depends: - - __osx - - appnope - - 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 >=24 - - tornado >=6.1 - - traitlets >=5.4.0 - license: BSD-3-Clause - license_family: BSD - size: 119602 - timestamp: 1708996878886 -- kind: conda - name: ipykernel - version: 6.29.3 - build: pyha63f2e9_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyha63f2e9_0.conda - sha256: 93ff46322a2512e9fb4ba456b1f0120d2f628a4b851f3102561a351e528d24d0 - md5: d86f243bdd45a8019050e7326ed7bb2e - depends: - - __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 >=24 - - tornado >=6.1 - - traitlets >=5.4.0 - license: BSD-3-Clause - license_family: BSD - size: 119670 - timestamp: 1708996955969 -- kind: conda - name: ipykernel - version: 6.29.3 - build: pyhd33586a_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyhd33586a_0.conda - sha256: 0314f15e666fd9a4fb653aae37d2cf4dc6bc3a18c0d9c2671a6a0783146adcfa - md5: e0deff12c601ce5cb7476f93718f3168 - depends: - - __linux - - 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 >=24 - - tornado >=6.1 - - traitlets >=5.4.0 - license: BSD-3-Clause - license_family: BSD - size: 119050 - timestamp: 1708996727913 -- kind: conda - name: ipython - version: 8.25.0 - build: pyh707e725_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.25.0-pyh707e725_0.conda - sha256: 4a53d39e44ce8bb7ce75f50b9e2f594e0bac12812cfe1e7525bb285d64a69d78 - md5: 98466a37c08f3bdbb500786271859517 - depends: - - __unix - - decorator - - exceptiongroup - - jedi >=0.16 - - matplotlib-inline - - pexpect >4.3 - - pickleshare - - prompt-toolkit >=3.0.41,<3.1.0 - - pygments >=2.4.0 - - python >=3.10 - - stack_data - - traitlets >=5.13.0 - - typing_extensions >=4.6 - license: BSD-3-Clause - license_family: BSD - size: 598836 - timestamp: 1717182833704 -- kind: conda - name: ipython - version: 8.25.0 - build: pyh7428d3b_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.25.0-pyh7428d3b_0.conda - sha256: a6db9bc794ccb0e654e313aa165af340a0f60349f6667707783dd96c1b1ed6b1 - md5: fdead7917816e9d03238fbd4da9a674e - depends: - - __win - - colorama - - decorator - - exceptiongroup - - jedi >=0.16 - - matplotlib-inline - - pickleshare - - prompt-toolkit >=3.0.41,<3.1.0 - - pygments >=2.4.0 - - python >=3.10 - - stack_data - - traitlets >=5.13.0 - - typing_extensions >=4.6 - license: BSD-3-Clause - license_family: BSD - size: 597676 - timestamp: 1717183379377 -- kind: conda - name: isoduration - version: 20.11.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 - sha256: 7bb5c4d994361022f47a807b5e7d101b3dce16f7dd8a0af6ffad9f479d346493 - md5: 4cb68948e0b8429534380243d063a27a - depends: - - arrow >=0.15.0 - - python >=3.7 - license: MIT - license_family: MIT - size: 17189 - timestamp: 1638811664194 -- kind: conda - name: jedi - version: 0.19.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda - sha256: 362f0936ef37dfd1eaa860190e42a6ebf8faa094eaa3be6aa4d9ace95f40047a - md5: 81a3be0b2023e1ea8555781f0ad904a2 - depends: - - parso >=0.8.3,<0.9.0 - - python >=3.6 - license: MIT - license_family: MIT - size: 841312 - timestamp: 1696326218364 -- kind: conda - name: jinja2 - version: 3.1.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda - sha256: 27380d870d42d00350d2d52598cddaf02f9505fb24be09488da0c9b8d1428f2d - md5: 7b86ecb7d3557821c649b3c31e3eb9f2 - depends: - - markupsafe >=2.0 - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 111565 - timestamp: 1715127275924 -- kind: conda - name: joblib - version: 1.4.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda - sha256: 8ad719524b1039510fcbd75eb776123189d75e2c09228189257ddbcab86f5b64 - md5: 25df261d4523d9f9783bcdb7208d872f - depends: - - python >=3.8 - - setuptools - license: BSD-3-Clause - license_family: BSD - size: 219731 - timestamp: 1714665585214 -- kind: conda - name: json-c - version: '0.17' - build: h7ab15ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda - sha256: 5646496ca07dfa1486d27ed07282967007811dfc63d6394652e87f94166ecae3 - md5: 9961b1f100c3b6852bd97c9233d06979 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 83050 - timestamp: 1691933952501 -- kind: conda - name: json-c - version: '0.17' - build: h8e11ae5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda - sha256: 2a493095fe1292108ff1799a1b47ababe82d844bfa3abcf2252676c1017a1e04 - md5: 266d2e4ebbf37091c8322937392bb540 - license: MIT - license_family: MIT - size: 71671 - timestamp: 1691934144512 -- kind: conda - name: json5 - version: 0.9.25 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda - sha256: 0c75e428970e8bb72ba1dd3a6dc32b8d68f6534b4fe16b38e53364963fdc8e38 - md5: 5d8c241a9261e720a34a07a3e1ac4109 - depends: - - python >=3.7,<4.0 - license: Apache-2.0 - license_family: APACHE - size: 27995 - timestamp: 1712986338874 -- kind: conda - name: jsoncpp - version: 1.9.5 - build: h2d74725_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/jsoncpp-1.9.5-h2d74725_1.tar.bz2 - sha256: e18239f954eae60d953e4870b2a87e6f8c5ae1567dd797eb1da1f467b68a2057 - md5: 733179d30b9132159d9db5ed85b6c841 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: LicenseRef-Public-Domain OR MIT - size: 544540 - timestamp: 1640883725670 -- kind: conda - name: jsoncpp - version: 1.9.5 - build: h4bd325d_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.5-h4bd325d_1.tar.bz2 - sha256: 7a5a6cdfc17849bb8000cc31b91c22f1fe0e087dfc3fd59ecc4d3b64cf0ad772 - md5: ae7f50dd1e78c7e78b5d2cf7062e559d - depends: - - libgcc-ng >=9.4.0 - - libstdcxx-ng >=9.4.0 - license: LicenseRef-Public-Domain OR MIT - size: 194553 - timestamp: 1640883128046 -- kind: conda - name: jsoncpp - version: 1.9.5 - build: h940c156_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.5-h940c156_1.tar.bz2 - sha256: 291696d97a252af1a50adf245f832ebf6c9f566effdae18fa11467833eb6947f - md5: 45824afbfd843fe0584ae8df22f1d99a - depends: - - libcxx >=11.1.0 - license: LicenseRef-Public-Domain OR MIT - size: 173394 - timestamp: 1640883229294 -- kind: conda - name: jsonpointer - version: '2.4' - build: py312h2e8e312_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py312h2e8e312_3.conda - sha256: 98d86d5ccb3a95da2cd96b394c157aa6fef0d4908b8878c3e2b5931f6bc5fd57 - md5: 9d9572e257bf4559f20629efb0d3511d - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 34602 - timestamp: 1695397923441 -- kind: conda - name: jsonpointer - version: '2.4' - build: py312h7900ff3_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py312h7900ff3_3.conda - sha256: c211a79cff8aa001a6e14e923c37278231dca7f0970d8db155c4b9e48ac87a5a - md5: 50f62bdb9b60b13c2f6ae69957342e4d - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 18033 - timestamp: 1695397448370 -- kind: conda - name: jsonpointer - version: '2.4' - build: py312hb401068_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py312hb401068_3.conda - sha256: 883f6d635e58f49359f393e853e4e0043731fb0ce671283a2024db02a1ebc8f6 - md5: 637aa8f6c1c61f659f1496e9b2dc7552 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 18184 - timestamp: 1695397820416 -- kind: conda - name: jsonschema - version: 4.22.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda - sha256: 57a466e8c42635d8e930fa065dc6e461f4215aa259ab03873eacb03ddaeefc8a - md5: b9661a4b1200d6bc7d8a4cdafdc91468 - depends: - - attrs >=22.2.0 - - importlib_resources >=1.4.0 - - jsonschema-specifications >=2023.03.6 - - pkgutil-resolve-name >=1.3.10 - - python >=3.8 - - referencing >=0.28.4 - - rpds-py >=0.7.1 - license: MIT - license_family: MIT - size: 74149 - timestamp: 1714573245148 -- kind: conda - name: jsonschema-specifications - version: 2023.12.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda - sha256: a9630556ddc3121c0be32f4cbf792dd9102bd380d5cd81d57759d172cf0c2da2 - md5: a0e4efb5f35786a05af4809a2fb1f855 - depends: - - importlib_resources >=1.4.0 - - python >=3.8 - - referencing >=0.31.0 - license: MIT - license_family: MIT - size: 16431 - timestamp: 1703778502971 -- kind: conda - name: jsonschema-with-format-nongpl - version: 4.22.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.22.0-pyhd8ed1ab_0.conda - sha256: 3c98d791bebd477597fe083b3cec35132ac974c61ba1e481dc6c29fac78b419d - md5: 32ab666927ee17b9468c2c72bbd7ba1b - depends: - - fqdn - - idna - - isoduration - - jsonpointer >1.13 - - jsonschema >=4.22.0,<4.22.1.0a0 - - python - - rfc3339-validator - - rfc3986-validator >0.1.0 - - uri-template - - webcolors >=1.11 - license: MIT - license_family: MIT - size: 7441 - timestamp: 1714573279350 -- kind: conda - name: jupyter-lsp - version: 2.2.5 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda - sha256: 2151c2c63e0442a4c69ee0ad8a634195eedab10b7b74c0ec8266471842239a93 - md5: 885867f6adab3d7ecdf8ab6ca0785f51 - depends: - - importlib-metadata >=4.8.3 - - jupyter_server >=1.1.2 - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 55539 - timestamp: 1712707521811 -- kind: conda - name: jupyter_client - version: 8.6.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.2-pyhd8ed1ab_0.conda - sha256: 634f065cdd1d0aacd4bb6848ebf240dcebc8578135d65f4ad4aa42b2276c4e0c - md5: 3cdbb2fa84490e5fd44c9f9806c0d292 - depends: - - 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 - license: BSD-3-Clause - license_family: BSD - size: 106248 - timestamp: 1716472312833 -- kind: conda - name: jupyter_core - version: 5.7.2 - build: py312h2e8e312_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.7.2-py312h2e8e312_0.conda - sha256: bf2a315febec297e05fa77e39bd371d53553bd1c347e495ac34198fec18afb11 - md5: 3ed5c1981d05f125696f392407d36ce2 - depends: - - platformdirs >=2.5 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - pywin32 >=300 - - traitlets >=5.3 - license: BSD-3-Clause - license_family: BSD - size: 109880 - timestamp: 1710257719549 -- kind: conda - name: jupyter_core - version: 5.7.2 - build: py312h7900ff3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.7.2-py312h7900ff3_0.conda - sha256: 22a6259c2b139191c76ed7633d1865757b3c15007989f6c74304a80f28e5a262 - md5: eee5a2e3465220ed87196bbb5665f420 - depends: - - platformdirs >=2.5 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - traitlets >=5.3 - license: BSD-3-Clause - license_family: BSD - size: 92843 - timestamp: 1710257533875 -- kind: conda - name: jupyter_core - version: 5.7.2 - build: py312hb401068_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.7.2-py312hb401068_0.conda - sha256: 3e57d1eaf22c793711367335f9f8b647c011b64a95bfc796b50967a4b2ae27c2 - md5: a205e28ce7ab71773dcaaf94f6418612 - depends: - - platformdirs >=2.5 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - traitlets >=5.3 - license: BSD-3-Clause - license_family: BSD - size: 92679 - timestamp: 1710257658978 -- kind: conda - name: jupyter_events - version: 0.10.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - sha256: cd3f41dc093162a41d4bae171e40a1b9b115c4d488e9bb837a8fa9d084931fb9 - md5: ed45423c41b3da15ea1df39b1f80c2ca - depends: - - 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 - license: BSD-3-Clause - license_family: BSD - size: 21475 - timestamp: 1710805759187 -- kind: conda - name: jupyter_server - version: 2.14.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.1-pyhd8ed1ab_0.conda - sha256: 58628ef004ba0f754cc01b33199b6aefd94f5aed7fbf7afd2b796d8b5c4ef22c - md5: 174af03c6e6038edd32021a48aa003c4 - depends: - - anyio >=3.1.0 - - argon2-cffi - - jinja2 - - jupyter_client >=7.4.4 - - jupyter_core >=4.12,!=5.0.* - - jupyter_events >=0.9.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 - license: BSD-3-Clause - license_family: BSD - size: 324369 - timestamp: 1717122163377 -- kind: conda - name: jupyter_server_terminals - version: 0.5.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - sha256: 038efbc7e4b2e72d49ed193cfb2bbbe9fbab2459786ce9350301f466a32567db - md5: 219b3833aa8ed91d47d1be6ca03f30be - depends: - - python >=3.8 - - terminado >=0.8.3 - license: BSD-3-Clause - license_family: BSD - size: 19818 - timestamp: 1710262791393 -- kind: conda - name: jupyterlab - version: 4.2.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.2.1-pyhd8ed1ab_0.conda - sha256: 507f87a6449a7d5d23ad24fcba41aed150770df18ae877a4fdf9da78039f1682 - md5: 3e7290af6190b29c7017d6a8fb0eaeea - depends: - - async-lru >=1.0.0 - - httpx >=0.25.0 - - importlib_metadata >=4.8.3 - - importlib_resources >=1.4 - - ipykernel >=6.5.0 - - jinja2 >=3.0.3 - - jupyter-lsp >=2.0.0 - - jupyter_core - - jupyter_server >=2.4.0,<3 - - jupyterlab_server >=2.27.1,<3 - - notebook-shim >=0.2 - - packaging - - python >=3.8 - - tomli >=1.2.2 - - tornado >=6.2.0 - - traitlets - license: BSD-3-Clause - license_family: BSD - size: 7734905 - timestamp: 1716470384098 -- kind: conda - name: jupyterlab_pygments - version: 0.3.0 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - sha256: 4aa622bbcf97e44cd1adf0100b7ff71b7e20268f043bdf6feae4d16152f1f242 - md5: afcd1b53bcac8844540358e33f33d28f - depends: - - pygments >=2.4.1,<3 - - python >=3.7 - constrains: - - jupyterlab >=4.0.8,<5.0.0 - license: BSD-3-Clause - license_family: BSD - size: 18776 - timestamp: 1707149279640 -- kind: conda - name: jupyterlab_server - version: 2.27.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.2-pyhd8ed1ab_0.conda - sha256: d4b9f9f46b3c494d678b4f003d7a2f7ac834dba641bd02332079dde5a9a85c98 - md5: d1cb7b113daaadd89e5aa6a32b28bf0d - depends: - - 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 - constrains: - - openapi-core >=0.18.0,<0.19.0 - license: BSD-3-Clause - license_family: BSD - size: 49349 - timestamp: 1716434054129 -- kind: conda - name: kealib - version: 1.5.3 - build: h6c43f9b_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.3-h6c43f9b_1.conda - sha256: b4b2cee0ad62ae1f8e4a541d34074c575df935682c023fdf1c21c9c5c9995fa9 - md5: a20c9e3598a55ca3e61cad90ef33ada3 - depends: - - hdf5 >=1.14.3,<1.14.4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 133355 - timestamp: 1716158947179 -- kind: conda - name: kealib - version: 1.5.3 - build: hb2b617a_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.3-hb2b617a_1.conda - sha256: 3150dedf047284e8b808a169dfe630d818d8513b79d08a5404b90973c61c6914 - md5: e24e1fa559fd29c34593d6a47b459443 - depends: - - __osx >=10.13 - - hdf5 >=1.14.3,<1.14.4.0a0 - - libcxx >=16 - license: MIT - license_family: MIT - size: 152270 - timestamp: 1716158359765 -- kind: conda - name: kealib - version: 1.5.3 - build: hee9dde6_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-hee9dde6_1.conda - sha256: d607ddb5906a335cb3665dd81f3adec4af248cf398147693b470b65d887408e7 - md5: c5b7b29e2b66107553d0366538257a51 - depends: - - hdf5 >=1.14.3,<1.14.4.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 170709 - timestamp: 1716158265533 -- kind: conda - name: keyutils - version: 1.6.1 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - md5: 30186d27e2c9fa62b45fb1476b7200e3 - depends: - - libgcc-ng >=10.3.0 - license: LGPL-2.1-or-later - size: 117831 - timestamp: 1646151697040 -- kind: conda - name: kiwisolver - version: 1.4.5 - build: py312h0d7def4_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.5-py312h0d7def4_1.conda - sha256: 07021ffc3bbf42922694c23634e028950547d088717b448b46296b3ca5a26068 - md5: 77c9d46fc8680bb08f4e1ebb6669e44e - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 55576 - timestamp: 1695380565733 -- kind: conda - name: kiwisolver - version: 1.4.5 - build: py312h49ebfd2_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.5-py312h49ebfd2_1.conda - sha256: 11d9daa79051a7ae52881d11f48816366fd3d46018281431abe507da7b45f69c - md5: 21f174a5cfb5964069c374171a979157 - depends: - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 60227 - timestamp: 1695380392812 -- kind: conda - name: kiwisolver - version: 1.4.5 - build: py312h8572e83_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.5-py312h8572e83_1.conda - sha256: 2ffd3f6726392591c6794ab130f6701f5ffba0ec8658ef40db5a95ec8d583143 - md5: c1e71f2bc05d8e8e033aefac2c490d05 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 72099 - timestamp: 1695380122482 -- kind: conda - name: krb5 - version: 1.21.2 - build: h659d440_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 - md5: cd95826dbd331ed1be26bdf401432844 - depends: - - keyutils >=1.6.1,<2.0a0 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT - size: 1371181 - timestamp: 1692097755782 -- kind: conda - name: krb5 - version: 1.21.2 - build: hb884880_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 - md5: 80505a68783f01dc8d7308c075261b2f - depends: - - libcxx >=15.0.7 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT - size: 1183568 - timestamp: 1692098004387 -- kind: conda - name: krb5 - version: 1.21.2 - build: heb0366b_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda - sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b - md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 - depends: - - openssl >=3.1.2,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 710894 - timestamp: 1692098129546 -- kind: conda - name: lame - version: '3.100' - build: h166bdaf_1003 - build_number: 1003 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab - md5: a8832b479f93521a9e7b5b743803be51 - depends: - - libgcc-ng >=12 - license: LGPL-2.0-only - license_family: LGPL - size: 508258 - timestamp: 1664996250081 -- kind: conda - name: lame - version: '3.100' - build: hb7f2c08_1003 - build_number: 1003 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 - sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e - md5: 3342b33c9a0921b22b767ed68ee25861 - license: LGPL-2.0-only - license_family: LGPL - size: 542681 - timestamp: 1664996421531 -- kind: conda - name: lcms2 - version: '2.16' - build: h67d730c_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda - sha256: f9fd9e80e46358a57d9bb97b1e37a03da4022143b019aa3c4476d8a7795de290 - md5: d3592435917b62a8becff3a60db674f6 - depends: - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 507632 - timestamp: 1701648249706 -- kind: conda - name: lcms2 - version: '2.16' - build: ha2f27b4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda - sha256: 222ebc0a55544b9922f61e75015d02861e65b48f12113af41d48ba0814e14e4e - md5: 1442db8f03517834843666c422238c9b - depends: - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - license: MIT - license_family: MIT - size: 224432 - timestamp: 1701648089496 -- kind: conda - name: lcms2 - version: '2.16' - build: hb7c19ff_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda - sha256: 5c878d104b461b7ef922abe6320711c0d01772f4cd55de18b674f88547870041 - md5: 51bb7010fc86f70eee639b4bb7a894f5 - depends: - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - license: MIT - license_family: MIT - size: 245247 - timestamp: 1701647787198 -- kind: conda - name: ld_impl_linux-64 - version: '2.40' - build: hf3520f5_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_1.conda - sha256: cb54a873c1c84c47f7174093889686b626946b8143905ec0f76a56785b26a304 - md5: 33b7851c39c25da14f6a233a8ccbeeca - constrains: - - binutils_impl_linux-64 2.40 - license: GPL-3.0-only - license_family: GPL - size: 707934 - timestamp: 1716583433869 -- kind: conda - name: lerc - version: 4.0.0 - build: h27087fc_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 - md5: 76bbff344f0134279f225174e9064c8f - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 281798 - timestamp: 1657977462600 -- kind: conda - name: lerc - version: 4.0.0 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 - md5: 1900cb3cab5055833cfddb0ba233b074 - depends: - - vc >=14.2,<15 - - vs2015_runtime >=14.29.30037 - license: Apache-2.0 - license_family: Apache - size: 194365 - timestamp: 1657977692274 -- kind: conda - name: lerc - version: 4.0.0 - build: hb486fe8_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 - md5: f9d6a4c82889d5ecedec1d90eb673c55 - depends: - - libcxx >=13.0.1 - license: Apache-2.0 - license_family: Apache - size: 290319 - timestamp: 1657977526749 -- kind: conda - name: libabseil - version: '20240116.2' - build: cxx17_h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_h59595ed_0.conda - sha256: 19b789dc38dff64eee2002675991e63f381eedf5efd5c85f2dac512ed97376d7 - md5: 682bdbe046a68f749769b492f3625c5c - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - constrains: - - libabseil-static =20240116.2=cxx17* - - abseil-cpp =20240116.2 - license: Apache-2.0 - license_family: Apache - size: 1266634 - timestamp: 1714403128134 -- kind: conda - name: libabseil - version: '20240116.2' - build: cxx17_h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240116.2-cxx17_h63175ca_0.conda - sha256: 37539d02a9d1064a18838303a9829fa14d5bffa5e02349b3a15d9bd8a2815e79 - md5: 31b8c712b478ba94896707c159c60499 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* - license: Apache-2.0 - license_family: Apache - size: 1781843 - timestamp: 1714404063887 -- kind: conda - name: libabseil - version: '20240116.2' - build: cxx17_hc1bcbd7_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hc1bcbd7_0.conda - sha256: 91c7818fd4d4e1d7e7fb6ace5f72e699112a9207f00f1ee82e62b7a87d239837 - md5: f2ac89dbd4914f487706282ebf787636 - depends: - - libcxx >=16 - constrains: - - __osx >=10.13 - - libabseil-static =20240116.2=cxx17* - - abseil-cpp =20240116.2 - license: Apache-2.0 - license_family: Apache - size: 1131191 - timestamp: 1714403767205 -- kind: conda - name: libaec - version: 1.1.3 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 - md5: 5e97e271911b8b2001a8b71860c32faa - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 35446 - timestamp: 1711021212685 -- kind: conda - name: libaec - version: 1.1.3 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf - md5: 8723000f6ffdbdaef16025f0a01b64c5 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 32567 - timestamp: 1711021603471 -- kind: conda - name: libaec - version: 1.1.3 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda - sha256: dae5921339c5d89f4bf58a95fd4e9c76270dbf7f6a94f3c5081b574905fcccf8 - md5: 66d3c1f6dd4636216b4fca7a748d50eb - depends: - - libcxx >=16 - license: BSD-2-Clause - license_family: BSD - size: 28602 - timestamp: 1711021419744 -- kind: conda - name: libarchive - version: 3.7.4 - build: h20e244c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda - sha256: 9e46db25e976630e6738b351d76d9b79047ae232638b82f9f45eba774caaef8a - md5: 82a85fa38e83366009b7f4b2cef4deb8 - depends: - - __osx >=10.13 - - bzip2 >=1.0.8,<2.0a0 - - libiconv >=1.17,<2.0a0 - - libxml2 >=2.12.7,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.3.0,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.6,<1.6.0a0 - license: BSD-2-Clause - license_family: BSD - size: 742682 - timestamp: 1716394747351 -- kind: conda - name: libarchive - version: 3.7.4 - build: haf234dc_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.4-haf234dc_0.conda - sha256: 3ab13c269949874c4538b22eeb83a36d2c55b4a4ea6628bef1bab4c724ee5a1b - md5: 86de12ebf8d7fffeba4ca9dbf13e9733 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libxml2 >=2.12.7,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.3.0,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.6,<1.6.0a0 - license: BSD-2-Clause - license_family: BSD - size: 957632 - timestamp: 1716395481752 -- kind: conda - name: libarchive - version: 3.7.4 - build: hfca40fe_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda - sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936 - md5: 32ddb97f897740641d8d46a829ce1704 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libgcc-ng >=12 - - libxml2 >=2.12.7,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - lzo >=2.10,<3.0a0 - - openssl >=3.3.0,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.6,<1.6.0a0 - license: BSD-2-Clause - license_family: BSD - size: 871853 - timestamp: 1716394516418 -- kind: conda - name: libarrow - version: 15.0.2 - build: h45212c0_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-15.0.2-h45212c0_3_cpu.conda - sha256: a027b9d4345e21136d96d038b822c2743a8bcb2d1b5dba059403b0179d78268d - md5: 13fd341602fce774d7443904afa76fcf - depends: - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - - bzip2 >=1.0.8,<2.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libbrotlidec >=1.1.0,<1.2.0a0 - - libbrotlienc >=1.1.0,<1.2.0a0 - - libcrc32c >=1.1.2,<1.2.0a0 - - libcurl >=8.7.1,<9.0a0 - - libgoogle-cloud >=2.22.0,<2.23.0a0 - - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libutf8proc >=2.8.0,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openssl >=3.2.1,<4.0a0 - - orc >=2.0.0,<2.0.1.0a0 - - re2 - - snappy >=1.2.0,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zstd >=1.5.5,<1.6.0a0 - constrains: - - apache-arrow-proc =*=cpu - - arrow-cpp <0.0a0 - - parquet-cpp <0.0a0 - license: Apache-2.0 - license_family: APACHE - size: 5067006 - timestamp: 1712757111785 -- kind: conda - name: libarrow - version: 15.0.2 - build: h965e444_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-15.0.2-h965e444_3_cpu.conda - sha256: a6886cff57529f1ab71e3327b37ea5b55b9d31764c4322abfe3391e7401f56a1 - md5: db0e69e54efa4f0aa778a77a039f7f53 - depends: - - __osx >=10.13 - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - - bzip2 >=1.0.8,<2.0a0 - - glog >=0.7.0,<0.8.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libbrotlidec >=1.1.0,<1.2.0a0 - - libbrotlienc >=1.1.0,<1.2.0a0 - - libcxx >=16 - - libgoogle-cloud >=2.22.0,<2.23.0a0 - - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libutf8proc >=2.8.0,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.0,<2.0.1.0a0 - - re2 - - snappy >=1.2.0,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - constrains: - - arrow-cpp <0.0a0 - - apache-arrow-proc =*=cpu - - parquet-cpp <0.0a0 - license: Apache-2.0 - license_family: APACHE - size: 5717595 - timestamp: 1712757257079 -- kind: conda - name: libarrow - version: 15.0.2 - build: he70291f_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-15.0.2-he70291f_3_cpu.conda - sha256: 27157f7cc429ea43093983cfbab3d6a031c10e4330d686f062075b9729f6a982 - md5: d09f7d5d311728e9e4cd386d86a1e55f - depends: - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - - bzip2 >=1.0.8,<2.0a0 - - glog >=0.7.0,<0.8.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libbrotlidec >=1.1.0,<1.2.0a0 - - libbrotlienc >=1.1.0,<1.2.0a0 - - libgcc-ng >=12 - - libgoogle-cloud >=2.22.0,<2.23.0a0 - - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libstdcxx-ng >=12 - - libutf8proc >=2.8.0,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.0,<2.0.1.0a0 - - re2 - - snappy >=1.2.0,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - constrains: - - parquet-cpp <0.0a0 - - apache-arrow-proc =*=cpu - - arrow-cpp <0.0a0 - license: Apache-2.0 - license_family: APACHE - size: 8170462 - timestamp: 1712756370701 -- kind: conda - name: libarrow-acero - version: 15.0.2 - build: h8681a6d_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-15.0.2-h8681a6d_3_cpu.conda - sha256: d1261bfe5bb67a85b9ab61ada5597e13efa1c44e6124ae82accc635ec0dc7153 - md5: 9257ec84ae8e63151a20a22bb92ca547 - depends: - - libarrow 15.0.2 h45212c0_3_cpu - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 445686 - timestamp: 1712757192079 -- kind: conda - name: libarrow-acero - version: 15.0.2 - build: ha0df490_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-15.0.2-ha0df490_3_cpu.conda - sha256: d5606b5dedc28190a029d466f3f0b525482e0ac6420ac9ad7aef9d455e16cba4 - md5: 5faf0bba140d6881d28690c5e9b5ee00 - depends: - - __osx >=10.13 - - libarrow 15.0.2 h965e444_3_cpu - - libcxx >=16 - license: Apache-2.0 - license_family: APACHE - size: 522427 - timestamp: 1712757408748 -- kind: conda - name: libarrow-acero - version: 15.0.2 - build: hac33072_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-15.0.2-hac33072_3_cpu.conda - sha256: ce25b573fd32e6e9c6cec37d82a375f69125912018246a7d78dfa116952c5105 - md5: f70ae2fa9f50bed63564a6190f2cff35 - depends: - - libarrow 15.0.2 he70291f_3_cpu - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: APACHE - size: 597913 - timestamp: 1712756407762 -- kind: conda - name: libarrow-dataset - version: 15.0.2 - build: h8681a6d_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-15.0.2-h8681a6d_3_cpu.conda - sha256: d78258e30d5409b354fe8d7e7d8b8fb28603fdfa880b072c6fb4f61fb7e4a4fa - md5: 653c38fe4662c9245d2b647dc10c8907 - depends: - - libarrow 15.0.2 h45212c0_3_cpu - - libarrow-acero 15.0.2 h8681a6d_3_cpu - - libparquet 15.0.2 h39135fc_3_cpu - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 430894 - timestamp: 1712757431442 -- kind: conda - name: libarrow-dataset - version: 15.0.2 - build: ha0df490_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-15.0.2-ha0df490_3_cpu.conda - sha256: deb92309415fac27db5f2c170d0bed2b3a7b7a3d0265257e1234ddc08b69496b - md5: 9f9d733d0a6ca4b0a2c3bc9e1ff54874 - depends: - - __osx >=10.13 - - libarrow 15.0.2 h965e444_3_cpu - - libarrow-acero 15.0.2 ha0df490_3_cpu - - libcxx >=16 - - libparquet 15.0.2 h7cd3cfe_3_cpu - license: Apache-2.0 - license_family: APACHE - size: 512417 - timestamp: 1712758274474 -- kind: conda - name: libarrow-dataset - version: 15.0.2 - build: hac33072_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-15.0.2-hac33072_3_cpu.conda - sha256: 0e380506725c77f9a102be1ad96c27f3881de74d32aef737e369d95e0e0f61dc - md5: 59df0b7cf76763437ac3a5865c23af80 - depends: - - libarrow 15.0.2 he70291f_3_cpu - - libarrow-acero 15.0.2 hac33072_3_cpu - - libgcc-ng >=12 - - libparquet 15.0.2 h6a7eafb_3_cpu - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: APACHE - size: 585627 - timestamp: 1712756482313 -- kind: conda - name: libarrow-flight - version: 15.0.2 - build: h41520de_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-15.0.2-h41520de_3_cpu.conda - sha256: 92ee4bde00d9896dc2a5bdfc2cf5ec6b09a0da4613cc83585439153fc1f479c0 - md5: a329ec45df9b7c4d91419e3f8bbb9e8c - depends: - - __osx >=10.13 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 h965e444_3_cpu - - libcxx >=16 - - libgrpc >=1.62.1,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 322118 - timestamp: 1712757592284 -- kind: conda - name: libarrow-flight - version: 15.0.2 - build: h83a3238_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-15.0.2-h83a3238_3_cpu.conda - sha256: f731aac25489768982967bbacddfadd21c885bb4370fe7c95fe1822df3c1eb23 - md5: 88a05164d4b11f758862f8a25de71a93 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 h45212c0_3_cpu - - libgrpc >=1.62.1,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 289195 - timestamp: 1712757249110 -- kind: conda - name: libarrow-flight - version: 15.0.2 - build: hd42f311_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-15.0.2-hd42f311_3_cpu.conda - sha256: fd38c1cd423684b7d42e02a30af61fec73b407b50cc0d84975e5f6574140aac6 - md5: 2481d3c17be3a1e8876b733001901162 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 he70291f_3_cpu - - libgcc-ng >=12 - - libgrpc >=1.62.1,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - - ucx >=1.15.0,<1.16.0a0 - license: Apache-2.0 - license_family: APACHE - size: 506382 - timestamp: 1712756425619 -- kind: conda - name: libarrow-flight-sql - version: 15.0.2 - build: h21569af_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-15.0.2-h21569af_3_cpu.conda - sha256: 5f273e01a945aff32a5e0e515fbee25eb30b1b22868b44603203699274d1e84d - md5: 92d097be346d744875118cdcb8d760ee - depends: - - libarrow 15.0.2 h45212c0_3_cpu - - libarrow-flight 15.0.2 h83a3238_3_cpu - - libprotobuf >=4.25.3,<4.25.4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 235418 - timestamp: 1712757483688 -- kind: conda - name: libarrow-flight-sql - version: 15.0.2 - build: h9241762_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-sql-15.0.2-h9241762_3_cpu.conda - sha256: 6c4678e6b0193344dec99053e1bfc25c0c9bc384a29f7f33896dfc1d7cb6ca48 - md5: 1f74636cb22b3f6bc88a13843249e06f - depends: - - libarrow 15.0.2 he70291f_3_cpu - - libarrow-flight 15.0.2 hd42f311_3_cpu - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: APACHE - size: 194961 - timestamp: 1712756499434 -- kind: conda - name: libarrow-flight-sql - version: 15.0.2 - build: hb2e0ddf_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-sql-15.0.2-hb2e0ddf_3_cpu.conda - sha256: 7b935b8b83ff8b9b1ea4250e0c162de1ffa79a0af34add11f39b76c5a0c09fba - md5: 9c1f618f820f2b26cedec587ed543349 - depends: - - __osx >=10.13 - - libarrow 15.0.2 h965e444_3_cpu - - libarrow-flight 15.0.2 h41520de_3_cpu - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 153610 - timestamp: 1712758355472 -- kind: conda - name: libarrow-gandiva - version: 15.0.2 - build: h05de715_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-15.0.2-h05de715_3_cpu.conda - sha256: b9eb1ac7aac05f13fc2a2ceef560f2e10f69f79a034790bbc0106422568fde32 - md5: f8e762220d4001bc95611c32d532e929 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 h45212c0_3_cpu - - libre2-11 >=2023.9.1,<2024.0a0 - - libutf8proc >=2.8.0,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - re2 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 - license_family: APACHE - size: 10720285 - timestamp: 1712757303438 -- kind: conda - name: libarrow-gandiva - version: 15.0.2 - build: h6ac0def_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-gandiva-15.0.2-h6ac0def_3_cpu.conda - sha256: 2500da9593a55363ac16c8f92165ea7002023a1f38d57e6d54968d7922530d7b - md5: 3fb063fbce68efaa7b7ce614dfa7f6ea - depends: - - __osx >=10.13 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 h965e444_3_cpu - - libcxx >=16 - - libllvm16 >=16.0.6,<16.1.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libutf8proc >=2.8.0,<3.0a0 - - openssl >=3.2.1,<4.0a0 - - re2 - license: Apache-2.0 - license_family: APACHE - size: 699945 - timestamp: 1712758054471 -- kind: conda - name: libarrow-gandiva - version: 15.0.2 - build: hd4ab825_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-gandiva-15.0.2-hd4ab825_3_cpu.conda - sha256: 9eda95ecfcb985726ad947720c711c7941d25be83d6ed47316bc8aa50febef2b - md5: b7f70a642aef9013a2787b0025c53f01 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 he70291f_3_cpu - - libgcc-ng >=12 - - libllvm16 >=16.0.6,<16.1.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libstdcxx-ng >=12 - - libutf8proc >=2.8.0,<3.0a0 - - openssl >=3.2.1,<4.0a0 - - re2 - license: Apache-2.0 - license_family: APACHE - size: 896197 - timestamp: 1712756445172 -- kind: conda - name: libarrow-substrait - version: 15.0.2 - build: h9241762_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-15.0.2-h9241762_3_cpu.conda - sha256: c7db9a7e0b1e2407afee9775fabba2f8894b0a0fb8040653596099d3d59e8980 - md5: d3c3294783206de4e7ad3880d1c9cefe - depends: - - libarrow 15.0.2 he70291f_3_cpu - - libarrow-acero 15.0.2 hac33072_3_cpu - - libarrow-dataset 15.0.2 hac33072_3_cpu - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: APACHE - size: 519375 - timestamp: 1712756517131 -- kind: conda - name: libarrow-substrait - version: 15.0.2 - build: hb2e0ddf_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-15.0.2-hb2e0ddf_3_cpu.conda - sha256: 4db58054d748b821ac870ac1c51216e10eacdadff894aaa77c25cfdc2ddc2867 - md5: 245d375ea095116d40b8b48d4f2d981a - depends: - - __osx >=10.13 - - libarrow 15.0.2 h965e444_3_cpu - - libarrow-acero 15.0.2 ha0df490_3_cpu - - libarrow-dataset 15.0.2 ha0df490_3_cpu - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 449659 - timestamp: 1712758489827 -- kind: conda - name: libarrow-substrait - version: 15.0.2 - build: hea7f8fd_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-15.0.2-hea7f8fd_3_cpu.conda - sha256: 47117ff8827b492ea7d71a9b8bab047dfe38c6aaf7483ab6db7c58bf6b114fca - md5: a1964f4e3a87a384bcc2f0c865e6fae2 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libarrow 15.0.2 h45212c0_3_cpu - - libarrow-acero 15.0.2 h8681a6d_3_cpu - - libarrow-dataset 15.0.2 h8681a6d_3_cpu - - libprotobuf >=4.25.3,<4.25.4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 361131 - timestamp: 1712757536502 -- kind: conda - name: libasprintf - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libasprintf-0.22.5-h5728263_2.conda - sha256: 5722a4a260355c9233680a3424a977433f25826ca0a1c05af403d62b805681bc - md5: 75a6982b9ff0a8db0f53303527b07af8 - license: LGPL-2.1-or-later - size: 49778 - timestamp: 1712515968238 -- kind: conda - name: libasprintf - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.22.5-h5ff76d1_2.conda - sha256: 4babb29b8d39ae8b341c094c134a1917c595846e5f974c9d0cb64d3f734b46b1 - md5: ad803793d7168331f1395685cbdae212 - license: LGPL-2.1-or-later - size: 40438 - timestamp: 1712512749697 -- kind: conda - name: libasprintf - version: 0.22.5 - build: h661eb56_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda - sha256: 31d58af7eb54e2938123200239277f14893c5fa4b5d0280c8cf55ae10000638b - md5: dd197c968bf9760bba0031888d431ede - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: LGPL-2.1-or-later - size: 43226 - timestamp: 1712512265295 -- kind: conda - name: libasprintf-devel - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libasprintf-devel-0.22.5-h5728263_2.conda - sha256: d5c711d9da4e35d29f4f2191664075c64cbf8cd481a35bf7ef3a527018eb0184 - md5: 8377da2cc31200d7181d2e48d60e4c7b - depends: - - libasprintf 0.22.5 h5728263_2 - license: LGPL-2.1-or-later - size: 36272 - timestamp: 1712516175913 -- kind: conda - name: libasprintf-devel - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-devel-0.22.5-h5ff76d1_2.conda - sha256: 39fa757378b49993142013c1f69dd56248cc3703c2f04c5bcf4cc4acdc644ae3 - md5: c7182eda3bc727384e2f98f4d680fa7d - depends: - - libasprintf 0.22.5 h5ff76d1_2 - license: LGPL-2.1-or-later - size: 34702 - timestamp: 1712512806211 -- kind: conda - name: libasprintf-devel - version: 0.22.5 - build: h661eb56_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda - sha256: 99d26d272a8203d30b3efbe734a99c823499884d7759b4291674438137c4b5ca - md5: 02e41ab5834dcdcc8590cf29d9526f50 - depends: - - libasprintf 0.22.5 h661eb56_2 - - libgcc-ng >=12 - license: LGPL-2.1-or-later - size: 34225 - timestamp: 1712512295117 -- kind: conda - name: libass - version: 0.17.1 - build: h80904bb_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h80904bb_1.conda - sha256: f97c70aa61ecc1b43907cf0322215a58f19e0723ee67b4ebd02146da24f03976 - md5: 9ccad0aebe916aa3715fda9eefe92584 - depends: - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - fribidi >=1.0.10,<2.0a0 - - harfbuzz >=8.1.1,<9.0a0 - - libexpat >=2.5.0,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: ISC - license_family: OTHER - size: 125235 - timestamp: 1693027259439 -- kind: conda - name: libass - version: 0.17.1 - build: h8fe9dca_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda - sha256: 1bc3e44239a11613627488b7a9b6c021ec6b52c5925abd666832db0cb2a59f05 - md5: c306fd9cc90c0585171167d09135a827 - depends: - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - fribidi >=1.0.10,<2.0a0 - - harfbuzz >=8.1.1,<9.0a0 - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: ISC - license_family: OTHER - size: 126896 - timestamp: 1693027051367 -- kind: conda - name: libblas - version: 3.9.0 - build: 22_linux64_openblas - build_number: 22 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda - sha256: 082b8ac20d43a7bbcdc28b3b1cd40e4df3a8b5daf0a2d23d68953a44d2d12c1b - md5: 1a2a0cd3153464fee6646f3dd6dad9b8 - depends: - - libopenblas >=0.3.27,<0.3.28.0a0 - - libopenblas >=0.3.27,<1.0a0 - constrains: - - libcblas 3.9.0 22_linux64_openblas - - blas * openblas - - liblapacke 3.9.0 22_linux64_openblas - - liblapack 3.9.0 22_linux64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14537 - timestamp: 1712542250081 -- kind: conda - name: libblas - version: 3.9.0 - build: 22_osx64_openblas - build_number: 22 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda - sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59 - md5: b80966a8c8dd0b531f8e65f709d732e8 - depends: - - libopenblas >=0.3.27,<0.3.28.0a0 - - libopenblas >=0.3.27,<1.0a0 - constrains: - - liblapacke 3.9.0 22_osx64_openblas - - blas * openblas - - libcblas 3.9.0 22_osx64_openblas - - liblapack 3.9.0 22_osx64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14749 - timestamp: 1712542279018 -- kind: conda - name: libblas - version: 3.9.0 - build: 22_win64_mkl - build_number: 22 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-22_win64_mkl.conda - sha256: 4faab445cbd9a13736a206b98fde962d0a9fa80dcbd38300951a8b2863e7c35c - md5: 65c56ecdeceffd6c32d3d54db7e02c6e - depends: - - mkl 2024.1.0 h66d3029_692 - constrains: - - liblapacke 3.9.0 22_win64_mkl - - blas * mkl - - libcblas 3.9.0 22_win64_mkl - - liblapack 3.9.0 22_win64_mkl - license: BSD-3-Clause - license_family: BSD - size: 5182602 - timestamp: 1712542984136 -- kind: conda - name: libboost-headers - version: 1.85.0 - build: h57928b3_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libboost-headers-1.85.0-h57928b3_1.conda - sha256: efd9c4cb1048735eac1540fac90cda7cb49e8e961f080db8060314e8c33cfda5 - md5: ad21d3a58058d0a3ba3c7560eb53335a - constrains: - - boost-cpp =1.85.0 - license: BSL-1.0 - size: 14043981 - timestamp: 1715809766119 -- kind: conda - name: libboost-headers - version: 1.85.0 - build: h694c41f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.85.0-h694c41f_1.conda - sha256: a068402cd93c3a9e9a821b570e27040f546ea211297be5dda6fc347475291d0f - md5: e52794d0a2e6f9f5674125ab096f8ed9 - constrains: - - boost-cpp =1.85.0 - license: BSL-1.0 - size: 14074413 - timestamp: 1715808953689 -- kind: conda - name: libboost-headers - version: 1.85.0 - build: ha770c72_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.85.0-ha770c72_1.conda - sha256: 9dee46dce8f737f45fa48948f44e5ea2e3b3b75fd4d11742a2480162337e35f1 - md5: 012455a6eddcbf487ef0ddd1715f0b80 - constrains: - - boost-cpp =1.85.0 - license: BSL-1.0 - size: 13958470 - timestamp: 1715807686404 -- kind: conda - name: libbrotlicommon - version: 1.1.0 - build: h0dc2134_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda - sha256: f57c57c442ef371982619f82af8735f93a4f50293022cfd1ffaf2ff89c2e0b2a - md5: 9e6c31441c9aa24e41ace40d6151aab6 - license: MIT - license_family: MIT - size: 67476 - timestamp: 1695990207321 -- kind: conda - name: libbrotlicommon - version: 1.1.0 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda - sha256: f75fed29b0cc503d1b149a4945eaa32df56e19da5e2933de29e8f03947203709 - md5: f77f319fb82980166569e1280d5b2864 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 70598 - timestamp: 1695990405143 -- kind: conda - name: libbrotlicommon - version: 1.1.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda - sha256: 40f29d1fab92c847b083739af86ad2f36d8154008cf99b64194e4705a1725d78 - md5: aec6c91c7371c26392a06708a73c70e5 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 69403 - timestamp: 1695990007212 -- kind: conda - name: libbrotlidec - version: 1.1.0 - build: h0dc2134_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda - sha256: b11939c4c93c29448660ab5f63273216969d1f2f315dd9be60f3c43c4e61a50c - md5: 9ee0bab91b2ca579e10353738be36063 - depends: - - libbrotlicommon 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - size: 30327 - timestamp: 1695990232422 -- kind: conda - name: libbrotlidec - version: 1.1.0 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda - sha256: 1b352ee05931ea24c11cd4a994d673890fd1cc690c21e023e736bdaac2632e93 - md5: 19ce3e1dacc7912b3d6ff40690ba9ae0 - depends: - - libbrotlicommon 1.1.0 hcfcfb64_1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 32788 - timestamp: 1695990443165 -- kind: conda - name: libbrotlidec - version: 1.1.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda - sha256: 86fc861246fbe5ad85c1b6b3882aaffc89590a48b42d794d3d5c8e6d99e5f926 - md5: f07002e225d7a60a694d42a7bf5ff53f - depends: - - libbrotlicommon 1.1.0 hd590300_1 - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 32775 - timestamp: 1695990022788 -- kind: conda - name: libbrotlienc - version: 1.1.0 - build: h0dc2134_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda - sha256: bc964c23e1a60ca1afe7bac38a9c1f2af3db4a8072c9f2eac4e4de537a844ac7 - md5: 8a421fe09c6187f0eb5e2338a8a8be6d - depends: - - libbrotlicommon 1.1.0 h0dc2134_1 - license: MIT - license_family: MIT - size: 299092 - timestamp: 1695990259225 -- kind: conda - name: libbrotlienc - version: 1.1.0 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda - sha256: eae6b76154e594c6d211160c6d1aeed848672618152a562e0eabdfa641d34aca - md5: 71e890a0b361fd58743a13f77e1506b7 - depends: - - libbrotlicommon 1.1.0 hcfcfb64_1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 246515 - timestamp: 1695990479484 -- kind: conda - name: libbrotlienc - version: 1.1.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda - sha256: f751b8b1c4754a2a8dfdc3b4040fa7818f35bbf6b10e905a47d3a194b746b071 - md5: 5fc11c6020d421960607d821310fcd4d - depends: - - libbrotlicommon 1.1.0 hd590300_1 - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 282523 - timestamp: 1695990038302 -- kind: conda - name: libcap - version: '2.69' - build: h0f662aa_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda - sha256: 942f9564b4228609f017b6617425d29a74c43b8a030e12239fa4458e5cb6323c - md5: 25cb5999faa414e5ccb2c1388f62d3d5 - depends: - - attr >=2.5.1,<2.6.0a0 - - libgcc-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 100582 - timestamp: 1684162447012 -- kind: conda - name: libcblas - version: 3.9.0 - build: 22_linux64_openblas - build_number: 22 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda - sha256: da1b2faa017663c8f5555c1c5518e96ac4cd8e0be2a673c1c9e2cb8507c8fe46 - md5: 4b31699e0ec5de64d5896e580389c9a1 - depends: - - libblas 3.9.0 22_linux64_openblas - constrains: - - liblapack 3.9.0 22_linux64_openblas - - blas * openblas - - liblapacke 3.9.0 22_linux64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14438 - timestamp: 1712542270166 -- kind: conda - name: libcblas - version: 3.9.0 - build: 22_osx64_openblas - build_number: 22 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda - sha256: 6a2ba9198e2320c3e22fe3d121310cf8a8ac663e94100c5693b34523fcb3cc04 - md5: b9fef82772330f61b2b0201c72d2c29b - depends: - - libblas 3.9.0 22_osx64_openblas - constrains: - - liblapacke 3.9.0 22_osx64_openblas - - blas * openblas - - liblapack 3.9.0 22_osx64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14636 - timestamp: 1712542311437 -- kind: conda - name: libcblas - version: 3.9.0 - build: 22_win64_mkl - build_number: 22 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-22_win64_mkl.conda - sha256: 5503273924650330dc03edd1eb01ec4020b9967b5a4cafc377ba20b976d15590 - md5: 336c93ab102846c6131cf68e722a68f1 - depends: - - libblas 3.9.0 22_win64_mkl - constrains: - - liblapacke 3.9.0 22_win64_mkl - - blas * mkl - - liblapack 3.9.0 22_win64_mkl - license: BSD-3-Clause - license_family: BSD - size: 5191513 - timestamp: 1712543043641 -- kind: conda - name: libclang - version: 15.0.7 - build: default_h127d8a8_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h127d8a8_5.conda - sha256: 606b79c8a4a926334191d79f4a1447aac1d82c43344e3a603cbba31ace859b8f - md5: 09b94dd3a7e304df5b83176239347920 - depends: - - libclang13 15.0.7 default_h5d6823c_5 - - libgcc-ng >=12 - - libllvm15 >=15.0.7,<15.1.0a0 - - libstdcxx-ng >=12 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 133467 - timestamp: 1711064002817 -- kind: conda - name: libclang - version: 15.0.7 - build: default_h3a3e6c3_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libclang-15.0.7-default_h3a3e6c3_5.conda - sha256: 562dea76c17c30ed6d78734a9e40008f45cdab15611439d7d4e8250e0040f3ef - md5: 26e1a5a4ff7f8e3f5fb89be829818a75 - depends: - - libclang13 15.0.7 default_hf64faad_5 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 148436 - timestamp: 1711068015076 -- kind: conda - name: libclang - version: 15.0.7 - build: default_h7151d67_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libclang-15.0.7-default_h7151d67_5.conda - sha256: ea3c840b7e931228007f1dc21c1cfe8e3e833990da9e92fff9c23c98d035b89a - md5: 2e7eb31c1431630f111be17f7f0cb948 - depends: - - libclang13 15.0.7 default_h0edc4dd_5 - - libcxx >=16.0.6 - - libllvm15 >=15.0.7,<15.1.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 133819 - timestamp: 1711067667338 -- kind: conda - name: libclang13 - version: 15.0.7 - build: default_h0edc4dd_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libclang13-15.0.7-default_h0edc4dd_5.conda - sha256: fec1ff1ae4a49f96eefeae9dd14ea8d9e591fc29995861ad49e92104ae6bb8e6 - md5: 3bfcf640ab0956a9db86335e917100e3 - depends: - - libcxx >=16.0.6 - - libllvm15 >=15.0.7,<15.1.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 6952364 - timestamp: 1711067548768 -- kind: conda - name: libclang13 - version: 15.0.7 - build: default_h5d6823c_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h5d6823c_5.conda - sha256: 91ecfcf545a5d4588e9fad5db2b5b04eeef18cae1c03b790829ef8b978f06ccd - md5: 2d694a9ffdcc30e89dea34a8dcdab6ae - depends: - - libgcc-ng >=12 - - libllvm15 >=15.0.7,<15.1.0a0 - - libstdcxx-ng >=12 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 9583734 - timestamp: 1711063939856 -- kind: conda - name: libclang13 - version: 15.0.7 - build: default_hf64faad_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libclang13-15.0.7-default_hf64faad_5.conda - sha256: b952b85a6124442be3fe8af23d56f123548f7b28067f60615f7233197469a02d - md5: 2f96c58f89abccb04bbc8cd57961111f - depends: - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 21892425 - timestamp: 1711067804682 -- kind: conda - name: libcrc32c - version: 1.1.2 - build: h0e60522_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 - sha256: 75e60fbe436ba8a11c170c89af5213e8bec0418f88b7771ab7e3d9710b70c54e - md5: cd4cc2d0c610c8cb5419ccc979f2d6ce - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: BSD-3-Clause - license_family: BSD - size: 25694 - timestamp: 1633684287072 -- kind: conda - name: libcrc32c - version: 1.1.2 - build: h9c3ff4c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5 - md5: c965a5aa0d5c1c37ffc62dff36e28400 - depends: - - libgcc-ng >=9.4.0 - - libstdcxx-ng >=9.4.0 - license: BSD-3-Clause - license_family: BSD - size: 20440 - timestamp: 1633683576494 -- kind: conda - name: libcrc32c - version: 1.1.2 - build: he49afe7_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 - sha256: 3043869ac1ee84554f177695e92f2f3c2c507b260edad38a0bf3981fce1632ff - md5: 23d6d5a69918a438355d7cbc4c3d54c9 - depends: - - libcxx >=11.1.0 - license: BSD-3-Clause - license_family: BSD - size: 20128 - timestamp: 1633683906221 -- kind: conda - name: libcups - version: 2.3.3 - build: h4637d8d_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda - sha256: bc67b9b21078c99c6bd8595fe7e1ed6da1f721007726e717f0449de7032798c4 - md5: d4529f4dff3057982a7617c7ac58fde3 - depends: - - krb5 >=1.21.1,<1.22.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: Apache-2.0 - license_family: Apache - size: 4519402 - timestamp: 1689195353551 -- kind: conda - name: libcurl - version: 8.8.0 - build: hca28451_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_0.conda - sha256: 45aec0ffc6fe3fd4c0083b815aa102b8103380acc2b6714fb272d921acc68ab2 - md5: f21c27f076a07907e70c49bb57bd0f20 - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libgcc-ng >=12 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.3.0,<4.0a0 - - zstd >=1.5.6,<1.6.0a0 - license: curl - license_family: MIT - size: 405535 - timestamp: 1716378550673 -- kind: conda - name: libcurl - version: 8.8.0 - build: hd5e4a3a_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_0.conda - sha256: 169fb0a11dd3a1f0adbb93b275f9752aa24b64e73d0c8e220aa10213c6ee74ff - md5: 4f86149dc6228f1e5617faa2cce90f94 - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libssh2 >=1.11.0,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: curl - license_family: MIT - size: 334903 - timestamp: 1716379079949 -- kind: conda - name: libcurl - version: 8.8.0 - build: hf9fcc65_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_0.conda - sha256: 1eb3e00586ddbf662877e62d1108bd2ff539fbeee34c52edf1d6c5fa3c9f4435 - md5: 276894efcbca23aa674e280e90bc5673 - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.3.0,<4.0a0 - - zstd >=1.5.6,<1.6.0a0 - license: curl - license_family: MIT - size: 385778 - timestamp: 1716378974624 -- kind: conda - name: libcxx - version: 17.0.6 - build: h88467a6_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-17.0.6-h88467a6_0.conda - sha256: e7b57062c1edfcbd13d2129467c94cbff7f0a988ee75782bf48b1dc0e6300b8b - md5: 0fe355aecb8d24b8bc07c763209adbd9 - depends: - - __osx >=10.13 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1249309 - timestamp: 1715020018902 -- kind: conda - name: libdeflate - version: '1.19' - build: ha4e1b8e_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.19-ha4e1b8e_0.conda - sha256: d0f789120fedd0881b129aba9993ec5dcf0ecca67a71ea20c74394e41adcb503 - md5: 6a45f543c2beb40023df5ee7e3cedfbd - license: MIT - license_family: MIT - size: 68962 - timestamp: 1694922440450 -- kind: conda - name: libdeflate - version: '1.19' - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.19-hcfcfb64_0.conda - sha256: e2886a84eaa0fbeca1d1d810270f234431d190402b4a79acf756ca2d16000354 - md5: 002b1b723b44dbd286b9e3708762433c - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 153203 - timestamp: 1694922596415 -- kind: conda - name: libdeflate - version: '1.19' - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda - sha256: 985ad27aa0ba7aad82afa88a8ede6a1aacb0aaca950d710f15d85360451e72fd - md5: 1635570038840ee3f9c71d22aa5b8b6d - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 67080 - timestamp: 1694922285678 -- kind: conda - name: libdrm - version: 2.4.120 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda - sha256: 8622f52e517418ae7234081fac14a3caa8aec5d1ee5f881ca1f3b194d81c3150 - md5: 7c3071bdf1d28b331a06bda6e85ab607 - depends: - - libgcc-ng >=12 - - libpciaccess >=0.18,<0.19.0a0 - license: MIT - license_family: MIT - size: 303067 - timestamp: 1708374304366 -- kind: conda - name: libedit - version: 3.1.20191231 - build: h0678c8f_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 - md5: 6016a8a1d0e63cac3de2c352cd40208b - depends: - - ncurses >=6.2,<7.0.0a0 - license: BSD-2-Clause - license_family: BSD - size: 105382 - timestamp: 1597616576726 -- kind: conda - name: libedit - version: 3.1.20191231 - build: he28a2e2_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - depends: - - libgcc-ng >=7.5.0 - - ncurses >=6.2,<7.0.0a0 - license: BSD-2-Clause - license_family: BSD - size: 123878 - timestamp: 1597616541093 -- kind: conda - name: libev - version: '4.33' - build: h10d778d_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 - md5: 899db79329439820b7e8f8de41bca902 - license: BSD-2-Clause - license_family: BSD - size: 106663 - timestamp: 1702146352558 -- kind: conda - name: libev - version: '4.33' - build: hd590300_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 - md5: 172bf1cd1ff8629f2b1179945ed45055 - depends: - - libgcc-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 112766 - timestamp: 1702146165126 -- kind: conda - name: libevent - version: 2.1.12 - build: h3671451_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda - sha256: af03882afb7a7135288becf340c2f0cf8aa8221138a9a7b108aaeb308a486da1 - md5: 25efbd786caceef438be46da78a7b5ef - depends: - - openssl >=3.1.1,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 410555 - timestamp: 1685726568668 -- kind: conda - name: libevent - version: 2.1.12 - build: ha90c15b_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda - sha256: e0bd9af2a29f8dd74309c0ae4f17a7c2b8c4b89f875ff1d6540c941eefbd07fb - md5: e38e467e577bd193a7d5de7c2c540b04 - depends: - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 372661 - timestamp: 1685726378869 -- kind: conda - name: libevent - version: 2.1.12 - build: hf998b51_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda - sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131 - md5: a1cfcc585f0c42bf8d5546bb1dfb668d - depends: - - libgcc-ng >=12 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 427426 - timestamp: 1685725977222 -- kind: conda - name: libexpat - version: 2.5.0 - build: h63175ca_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda - sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf - md5: 636cc3cbbd2e28bcfd2f73b2044aac2c - constrains: - - expat 2.5.0.* - license: MIT - license_family: MIT - size: 138689 - timestamp: 1680190844101 -- kind: conda - name: libexpat - version: 2.5.0 - build: hcb278e6_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda - sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 - md5: 6305a3dd2752c76335295da4e581f2fd - depends: - - libgcc-ng >=12 - constrains: - - expat 2.5.0.* - license: MIT - license_family: MIT - size: 77980 - timestamp: 1680190528313 -- kind: conda - name: libexpat - version: 2.5.0 - build: hf0c8a7f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda - sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 - md5: 6c81cb022780ee33435cca0127dd43c9 - constrains: - - expat 2.5.0.* - license: MIT - license_family: MIT - size: 69602 - timestamp: 1680191040160 -- kind: conda - name: libffi - version: 3.4.2 - build: h0d85af4_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - md5: ccb34fb14960ad8b125962d3d79b31a9 - license: MIT - license_family: MIT - size: 51348 - timestamp: 1636488394370 -- kind: conda - name: libffi - version: 3.4.2 - build: h7f98852_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - depends: - - libgcc-ng >=9.4.0 - license: MIT - license_family: MIT - size: 58292 - timestamp: 1636488182923 -- kind: conda - name: libffi - version: 3.4.2 - build: h8ffe710_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - md5: 2c96d1b6915b408893f9472569dee135 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: MIT - license_family: MIT - size: 42063 - timestamp: 1636489106777 -- kind: conda - name: libflac - version: 1.4.3 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda - sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d - md5: ee48bf17cc83a00f59ca1494d5646869 - depends: - - gettext >=0.21.1,<1.0a0 - - libgcc-ng >=12 - - libogg 1.3.* - - libogg >=1.3.4,<1.4.0a0 - - libstdcxx-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 394383 - timestamp: 1687765514062 -- kind: conda - name: libgcc-ng - version: 13.2.0 - build: h77fa898_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_7.conda - sha256: 62af2b89acbe74a21606c8410c276e57309c0a2ab8a9e8639e3c8131c0b60c92 - md5: 72ec1b1b04c4d15d4204ece1ecea5978 - depends: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex >=4.5 - constrains: - - libgomp 13.2.0 h77fa898_7 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 775806 - timestamp: 1715016057793 -- kind: conda - name: libgcrypt - version: 1.10.3 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda - sha256: d1bd47faa29fec7288c7b212198432b07f890d3d6f646078da93b059c2e9daff - md5: 32d16ad533c59bb0a3c5ffaf16110829 - depends: - - libgcc-ng >=12 - - libgpg-error >=1.47,<2.0a0 - license: LGPL-2.1-or-later AND GPL-2.0-or-later - license_family: GPL - size: 634887 - timestamp: 1701383493365 -- kind: conda - name: libgd - version: 2.3.3 - build: h0dceb68_9 - build_number: 9 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h0dceb68_9.conda - sha256: 4ed8546ff3356fc42f0e155446a060b14ee4aa96802e2da586532861deb3b917 - md5: 1feb43971521d430bf826f8398598c5b - depends: - - expat - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - icu >=73.2,<74.0a0 - - libexpat >=2.5.0,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - zlib - license: GD - license_family: BSD - size: 202884 - timestamp: 1696161058863 -- kind: conda - name: libgd - version: 2.3.3 - build: h119a65a_9 - build_number: 9 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h119a65a_9.conda - sha256: b74f95a6e1f3b31a74741b39cba83ed99fc82d17243c0fd3b5ab16ddd48ab89d - md5: cfebc557e54905dadc355c0e9f003004 - depends: - - expat - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - icu >=73.2,<74.0a0 - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - zlib - license: GD - license_family: BSD - size: 224448 - timestamp: 1696160785971 -- kind: conda - name: libgd - version: 2.3.3 - build: h312136b_9 - build_number: 9 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-h312136b_9.conda - sha256: fa75f4206eb9cd8e5e24fe1b6381a7450cfcb507c42813fd028a924a4872bc76 - md5: 69c987e1f9268d9ade86497c4ab8cc45 - depends: - - expat - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - icu >=73.2,<74.0a0 - - libexpat >=2.5.0,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xorg-libxpm >=3.5.16,<4.0a0 - - zlib - license: GD - license_family: BSD - size: 344848 - timestamp: 1696161193894 -- kind: conda - name: libgdal - version: 3.8.4 - build: h46636ed_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.8.4-h46636ed_0.conda - sha256: 12a0151e5e0d05590bcf5c6abf2fe36977df8b1198564198c167ed05492d5b1b - md5: 5cf7d0f51e6e9dd8d175d8660b843024 - depends: - - blosc >=1.21.5,<2.0a0 - - cfitsio >=4.3.1,<4.3.2.0a0 - - freexl >=2.0.0,<3.0a0 - - geos >=3.12.1,<3.12.2.0a0 - - geotiff >=1.7.1,<1.8.0a0 - - giflib >=5.2.1,<5.3.0a0 - - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - json-c >=0.17,<0.18.0a0 - - kealib >=1.5.3,<1.6.0a0 - - lerc >=4.0.0,<5.0a0 - - libaec >=1.1.2,<2.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.5.0,<9.0a0 - - libcxx >=16 - - libdeflate >=1.19,<1.20.0a0 - - libexpat >=2.5.0,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libkml >=1.3.0,<1.4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libpq >=16.2,<17.0a0 - - libspatialite >=5.1.0,<5.2.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libxml2 >=2.12.5,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openjpeg >=2.5.0,<3.0a0 - - openssl >=3.2.1,<4.0a0 - - pcre2 >=10.42,<10.43.0a0 - - poppler >=24.2.0,<24.3.0a0 - - postgresql - - proj >=9.3.1,<9.3.2.0a0 - - tiledb >=2.20.0,<2.21.0a0 - - xerces-c >=3.2.5,<3.3.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 9370296 - timestamp: 1708280830989 -- kind: conda - name: libgdal - version: 3.8.4 - build: h7c2897a_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgdal-3.8.4-h7c2897a_0.conda - sha256: bb861002a1ac8dda09b8b55fe616ba5f086d68c5ff05c5246bdac28d747bcbff - md5: a9cf2825eb54cb14bad6bcf6020634e0 - depends: - - blosc >=1.21.5,<2.0a0 - - cfitsio >=4.3.1,<4.3.2.0a0 - - freexl >=2.0.0,<3.0a0 - - geos >=3.12.1,<3.12.2.0a0 - - geotiff >=1.7.1,<1.8.0a0 - - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - kealib >=1.5.3,<1.6.0a0 - - lerc >=4.0.0,<5.0a0 - - libaec >=1.1.2,<2.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.5.0,<9.0a0 - - libdeflate >=1.19,<1.20.0a0 - - libexpat >=2.5.0,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libkml >=1.3.0,<1.4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libpq >=16.2,<17.0a0 - - libspatialite >=5.1.0,<5.2.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libxml2 >=2.12.5,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openjpeg >=2.5.0,<3.0a0 - - openssl >=3.2.1,<4.0a0 - - pcre2 >=10.42,<10.43.0a0 - - poppler >=24.2.0,<24.3.0a0 - - postgresql - - proj >=9.3.1,<9.3.2.0a0 - - tiledb >=2.20.0,<2.21.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xerces-c >=3.2.5,<3.3.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 8653044 - timestamp: 1708280801946 -- kind: conda - name: libgdal - version: 3.8.4 - build: h9323651_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.4-h9323651_0.conda - sha256: af88738b2eda7d388daad5bd7dd8fe66efbaba300921ecb6fb03d9c5823a950d - md5: f0444ecc68c3f7d0855c9dd6bc3424a7 - depends: - - __glibc >=2.17,<3.0.a0 - - blosc >=1.21.5,<2.0a0 - - cfitsio >=4.3.1,<4.3.2.0a0 - - freexl >=2.0.0,<3.0a0 - - geos >=3.12.1,<3.12.2.0a0 - - geotiff >=1.7.1,<1.8.0a0 - - giflib >=5.2.1,<5.3.0a0 - - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - json-c >=0.17,<0.18.0a0 - - kealib >=1.5.3,<1.6.0a0 - - lerc >=4.0.0,<5.0a0 - - libaec >=1.1.2,<2.0a0 - - libarchive >=3.7.2,<3.8.0a0 - - libcurl >=8.5.0,<9.0a0 - - libdeflate >=1.19,<1.20.0a0 - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libkml >=1.3.0,<1.4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libpq >=16.2,<17.0a0 - - libspatialite >=5.1.0,<5.2.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libstdcxx-ng >=12 - - libtiff >=4.6.0,<4.7.0a0 - - libuuid >=2.38.1,<3.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libxml2 >=2.12.5,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openjpeg >=2.5.0,<3.0a0 - - openssl >=3.2.1,<4.0a0 - - pcre2 >=10.42,<10.43.0a0 - - poppler >=24.2.0,<24.3.0a0 - - postgresql - - proj >=9.3.1,<9.3.2.0a0 - - tiledb >=2.20.0,<2.21.0a0 - - xerces-c >=3.2.5,<3.3.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 11090543 - timestamp: 1708279552744 -- kind: conda - name: libgettextpo - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgettextpo-0.22.5-h5728263_2.conda - sha256: 445ecfc4bf5b474c2ac79f716dcb8459a08a532ab13a785744665f086ef94c95 - md5: f4c826b19bf1ccee2a63a2c685039728 - depends: - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5728263_2 - license: GPL-3.0-or-later - license_family: GPL - size: 171210 - timestamp: 1712516290149 -- kind: conda - name: libgettextpo - version: 0.22.5 - build: h59595ed_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda - sha256: e2f784564a2bdc6f753f00f63cc77c97601eb03bc89dccc4413336ec6d95490b - md5: 172bcc51059416e7ce99e7b528cede83 - depends: - - libgcc-ng >=12 - license: GPL-3.0-or-later - license_family: GPL - size: 170582 - timestamp: 1712512286907 -- kind: conda - name: libgettextpo - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.22.5-h5ff76d1_2.conda - sha256: 139d1861e21c41b950ebf9e395db2492839337a3b481ad2901a4a6800c555e37 - md5: 54cc9d12c29c2f0516f2ef4987de53ae - depends: - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5ff76d1_2 - license: GPL-3.0-or-later - license_family: GPL - size: 172506 - timestamp: 1712512827340 -- kind: conda - name: libgettextpo-devel - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgettextpo-devel-0.22.5-h5728263_2.conda - sha256: bcee730b2be23ba9aa5de3471b78c4644d3b17d5a71e7fdc59bb40e252edb2f7 - md5: 6f42ec61abc6d52a4079800a640319c5 - depends: - - libgettextpo 0.22.5 h5728263_2 - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5728263_2 - license: GPL-3.0-or-later - license_family: GPL - size: 40312 - timestamp: 1712516436925 -- kind: conda - name: libgettextpo-devel - version: 0.22.5 - build: h59595ed_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda - sha256: 695eb2439ad4a89e4205dd675cc52fba5cef6b5d41b83f07cdbf4770a336cc15 - md5: b63d9b6da3653179a278077f0de20014 - depends: - - libgcc-ng >=12 - - libgettextpo 0.22.5 h59595ed_2 - license: GPL-3.0-or-later - license_family: GPL - size: 36758 - timestamp: 1712512303244 -- kind: conda - name: libgettextpo-devel - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-devel-0.22.5-h5ff76d1_2.conda - sha256: 57940f6a872ffcf5a3406e96bdbd9d25854943e4dd84acee56178ffb728a9671 - md5: 1e0384c52cd8b54812912e7234e66056 - depends: - - libgettextpo 0.22.5 h5ff76d1_2 - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5ff76d1_2 - license: GPL-3.0-or-later - license_family: GPL - size: 37189 - timestamp: 1712512859854 -- kind: conda - name: libgfortran - version: 5.0.0 - build: 13_2_0_h97931a8_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda - sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d - md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5 - depends: - - libgfortran5 13.2.0 h2873a65_3 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 110106 - timestamp: 1707328956438 -- kind: conda - name: libgfortran-ng - version: 13.2.0 - build: h69a702a_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_7.conda - sha256: a588e69f96b8e0983a8cdfdbf1dc75eb48189f5420ec71150c8d8cdc0a811a9b - md5: 1b84f26d9f4f6026e179e7805d5a15cd - depends: - - libgfortran5 13.2.0 hca663fb_7 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 24314 - timestamp: 1715016272844 -- kind: conda - name: libgfortran5 - version: 13.2.0 - build: h2873a65_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda - sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b - md5: e4fb4d23ec2870ff3c40d10afe305aec - depends: - - llvm-openmp >=8.0.0 - constrains: - - libgfortran 5.0.0 13_2_0_*_3 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1571379 - timestamp: 1707328880361 -- kind: conda - name: libgfortran5 - version: 13.2.0 - build: hca663fb_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-hca663fb_7.conda - sha256: 754ab038115edce550fdccdc9ddf7dead2fa8346b8cdd4428c59ae1e83293978 - md5: c0bd771f09a326fdcd95a60b617795bf - depends: - - libgcc-ng >=13.2.0 - constrains: - - libgfortran-ng 13.2.0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1441361 - timestamp: 1715016068766 -- kind: conda - name: libglib - version: 2.78.4 - build: h16e383f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.78.4-h16e383f_0.conda - sha256: d4350c4c8d7947b4f1b13918e04f07a35d2eb88cc1b6bccefe12eb92bd1aa660 - md5: 72dc4e1cdde0894015567c90f9c4e261 - depends: - - gettext >=0.21.1,<1.0a0 - - libffi >=3.4,<4.0a0 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - pcre2 >=10.42,<10.43.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - glib 2.78.4 *_0 - license: LGPL-2.1-or-later - size: 2627113 - timestamp: 1708285165773 -- kind: conda - name: libglib - version: 2.78.4 - build: h783c2da_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.4-h783c2da_0.conda - sha256: 3a03a5254d2fd29c1e0ffda7250e22991dfbf2c854301fd56c408d97a647cfbd - md5: d86baf8740d1a906b9716f2a0bac2f2d - depends: - - gettext >=0.21.1,<1.0a0 - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - pcre2 >=10.42,<10.43.0a0 - constrains: - - glib 2.78.4 *_0 - license: LGPL-2.1-or-later - size: 2692079 - timestamp: 1708284870228 -- kind: conda - name: libglib - version: 2.78.4 - build: hab64008_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.78.4-hab64008_0.conda - sha256: 122060ba63fd27e53672dbac7dc0b4f55a6432993446f4ed3c30a69a9457c615 - md5: ff7e302784375cfc3157b8120a18124d - depends: - - gettext >=0.21.1,<1.0a0 - - libcxx >=16 - - libffi >=3.4,<4.0a0 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - pcre2 >=10.42,<10.43.0a0 - constrains: - - glib 2.78.4 *_0 - license: LGPL-2.1-or-later - size: 2474668 - timestamp: 1708285048757 -- kind: conda - name: libglu - version: 9.0.0 - build: hac7e632_1003 - build_number: 1003 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda - sha256: 8368435c41105dc3e1c02896a02ecaa21b77d0b0d67fc8b06a16ba885c86f917 - md5: 50c389a09b6b7babaef531eb7cb5e0ca - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-xextproto >=7.3.0,<8.0a0 - license: SGI-2 - size: 331249 - timestamp: 1694431884320 -- kind: conda - name: libgomp - version: 13.2.0 - build: h77fa898_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_7.conda - sha256: 781444fa069d3b50e8ed667b750571cacda785761c7fc2a89ece1ac49693d4ad - md5: abf3fec87c2563697defa759dec3d639 - depends: - - _libgcc_mutex 0.1 conda_forge - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 422336 - timestamp: 1715015995979 -- kind: conda - name: libgoogle-cloud - version: 2.22.0 - build: h651e89d_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda - sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 - md5: 3f2faf53ecb3b51b92b3eee155b50233 - depends: - - __osx >=10.13 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcurl >=8.5.0,<9.0a0 - - libcxx >=16 - - libgrpc >=1.62.0,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - openssl >=3.2.1,<4.0a0 - constrains: - - libgoogle-cloud 2.22.0 *_1 - license: Apache-2.0 - license_family: Apache - size: 849198 - timestamp: 1709738549021 -- kind: conda - name: libgoogle-cloud - version: 2.22.0 - build: h9be4e54_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda - sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed - md5: 4b4e36a91e7dabf7345b82d85767a7c3 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcurl >=8.5.0,<9.0a0 - - libgcc-ng >=12 - - libgrpc >=1.62.0,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - - openssl >=3.2.1,<4.0a0 - constrains: - - libgoogle-cloud 2.22.0 *_1 - license: Apache-2.0 - license_family: Apache - size: 1209816 - timestamp: 1709737846418 -- kind: conda - name: libgoogle-cloud - version: 2.22.0 - build: h9cad5c0_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.22.0-h9cad5c0_1.conda - sha256: f76e892d13e1db405777c968787678d8ba912b7e4eef7f950fcdcca185e06e71 - md5: 63cd44a71f00d4e72844bf0e8be56be4 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcurl >=8.5.0,<9.0a0 - - libgrpc >=1.62.0,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - openssl >=3.2.1,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - libgoogle-cloud 2.22.0 *_1 - license: Apache-2.0 - license_family: Apache - size: 14420 - timestamp: 1709737037941 -- kind: conda - name: libgoogle-cloud-storage - version: 2.22.0 - build: ha67e85c_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda - sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 - md5: 0c25180c34b1a58d309b28386698fb6e - depends: - - libabseil - - libcrc32c >=1.1.2,<1.2.0a0 - - libcurl - - libcxx >=16 - - libgoogle-cloud 2.22.0 h651e89d_1 - - libzlib >=1.2.13,<2.0.0a0 - - openssl - license: Apache-2.0 - license_family: Apache - size: 523045 - timestamp: 1709739227970 -- kind: conda - name: libgoogle-cloud-storage - version: 2.22.0 - build: hb581fae_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.22.0-hb581fae_1.conda - sha256: 5ee34f168948211db14874f521e6edf9b4032d533c61fd429caaa282be1d0e7b - md5: f63348292dea55cf834e631cf26e2669 - depends: - - libabseil - - libcrc32c >=1.1.2,<1.2.0a0 - - libcurl - - libgoogle-cloud 2.22.0 h9cad5c0_1 - - libzlib >=1.2.13,<2.0.0a0 - - openssl - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 14330 - timestamp: 1709737542249 -- kind: conda - name: libgoogle-cloud-storage - version: 2.22.0 - build: hc7a4891_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 - md5: 7811f043944e010e54640918ea82cecd - depends: - - libabseil - - libcrc32c >=1.1.2,<1.2.0a0 - - libcurl - - libgcc-ng >=12 - - libgoogle-cloud 2.22.0 h9be4e54_1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl - license: Apache-2.0 - license_family: Apache - size: 748818 - timestamp: 1709738181078 -- kind: conda - name: libgpg-error - version: '1.49' - build: h4f305b6_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.49-h4f305b6_0.conda - sha256: b2664c2c11211a63856f23278efb49d3e65d902297989a0c12dcd228b5d97110 - md5: dfcfd72c7a430d3616763ecfbefe4ca9 - depends: - - gettext - - libasprintf >=0.22.5,<1.0a0 - - libgcc-ng >=12 - - libgettextpo >=0.22.5,<1.0a0 - - libstdcxx-ng >=12 - license: GPL-2.0-only - license_family: GPL - size: 263319 - timestamp: 1714121531915 -- kind: conda - name: libgrpc - version: 1.62.2 - build: h15f2491_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda - sha256: 28241ed89335871db33cb6010e9ccb2d9e9b6bb444ddf6884f02f0857363c06a - md5: 8dabe607748cb3d7002ad73cd06f1325 - depends: - - c-ares >=1.28.1,<2.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - re2 - constrains: - - grpc-cpp =1.62.2 - license: Apache-2.0 - license_family: APACHE - size: 7316832 - timestamp: 1713390645548 -- kind: conda - name: libgrpc - version: 1.62.2 - build: h384b2fc_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.2-h384b2fc_0.conda - sha256: 7c228040e7dac4e5e7e6935a4decf6bc2155cc05fcfb0811d25ccb242d0036ba - md5: 9421f67cf8b4bc976fe5d0c3ab42de18 - depends: - - __osx >=10.13 - - c-ares >=1.28.1,<2.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - re2 - constrains: - - grpc-cpp =1.62.2 - license: Apache-2.0 - license_family: APACHE - size: 5189573 - timestamp: 1713392887258 -- kind: conda - name: libgrpc - version: 1.62.2 - build: h5273850_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.62.2-h5273850_0.conda - sha256: 08794bf5ea0e19ac23ed47d0f8699b5c05c46f14334b41f075e53bac9bbf97d8 - md5: 2939e4b5baecfeac1e8dee5c4f579f1a - depends: - - c-ares >=1.28.1,<2.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1,<2024.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - re2 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - grpc-cpp =1.62.2 - license: Apache-2.0 - license_family: APACHE - size: 16097674 - timestamp: 1713392821679 -- kind: conda - name: libhwloc - version: 2.10.0 - build: default_h456cccd_1001 - build_number: 1001 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.10.0-default_h456cccd_1001.conda - sha256: 86490005550a3d3adaa450497ae9d9427e0420f605c3e4b732fe44b8445fbc93 - md5: d2dc768b14cdf226a30a8eab15641305 - depends: - - __osx >=10.13 - - libcxx >=16 - - libxml2 >=2.12.7,<3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 2347954 - timestamp: 1715972915061 -- kind: conda - name: libhwloc - version: 2.10.0 - build: default_h5622ce7_1001 - build_number: 1001 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.10.0-default_h5622ce7_1001.conda - sha256: 6f19d26819d336cb76689861e20560404a3cd61cc9adf7cbc395b9a5e612e226 - md5: fc2d5b79c2d3f8568fbab31db7ae02f3 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxml2 >=2.12.7,<3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 2413127 - timestamp: 1715972847822 -- kind: conda - name: libhwloc - version: 2.10.0 - build: default_h8125262_1001 - build_number: 1001 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.10.0-default_h8125262_1001.conda - sha256: 7f1aa1b071269df72e88297c046ec153b7f9a81e6f135d2da4401c96f41b5052 - md5: e761885eb4c181074d172220d46319a0 - depends: - - libxml2 >=2.12.7,<3.0a0 - - pthreads-win32 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 2373948 - timestamp: 1715973819139 -- kind: conda - name: libiconv - version: '1.17' - build: hcfcfb64_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda - sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b - md5: e1eb10b1cca179f2baa3601e4efc8712 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.1-only - size: 636146 - timestamp: 1702682547199 -- kind: conda - name: libiconv - version: '1.17' - build: hd590300_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9 - md5: d66573916ffcf376178462f1b61c941e - depends: - - libgcc-ng >=12 - license: LGPL-2.1-only - size: 705775 - timestamp: 1702682170569 -- kind: conda - name: libiconv - version: '1.17' - build: hd75f5a5_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda - sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23 - md5: 6c3628d047e151efba7cf08c5e54d1ca - license: LGPL-2.1-only - size: 666538 - timestamp: 1702682713201 -- kind: conda - name: libidn2 - version: 2.3.7 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libidn2-2.3.7-h10d778d_0.conda - sha256: 54430e45dffa8cbe3cbf12a3f4376947e7e2d50c67db90a90e91c3350510823e - md5: a985867eae03167666bba45c2a297da1 - depends: - - gettext >=0.21.1,<1.0a0 - - libunistring >=0,<1.0a0 - license: LGPLv2 - size: 133237 - timestamp: 1706368325339 -- kind: conda - name: libidn2 - version: 2.3.7 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda - sha256: 253f9be445c58bf07b39d8f67ac08bccc5010c75a8c2070cddfb6c20e1ca4f4f - md5: 2b7b0d827c6447cc1d85dc06d5b5de46 - depends: - - gettext >=0.21.1,<1.0a0 - - libgcc-ng >=12 - - libunistring >=0,<1.0a0 - license: LGPLv2 - size: 126515 - timestamp: 1706368269716 -- kind: conda - name: libintl - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_2.conda - sha256: 1b95335af0a3e278b31e16667fa4e51d1c3f5e22d394d982539dfd5d34c5ae19 - md5: aa622c938af057adc119f8b8eecada01 - depends: - - libiconv >=1.17,<2.0a0 - license: LGPL-2.1-or-later - size: 95745 - timestamp: 1712516102666 -- kind: conda - name: libintl - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-h5ff76d1_2.conda - sha256: 280aaef0ed84637ee869012ad9ad9ed208e068dd9b8cf010dafeea717dad7203 - md5: 3fb6774cb8cdbb93a6013b67bcf9716d - depends: - - libiconv >=1.17,<2.0a0 - license: LGPL-2.1-or-later - size: 74307 - timestamp: 1712512790983 -- kind: conda - name: libintl-devel - version: 0.22.5 - build: h5728263_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libintl-devel-0.22.5-h5728263_2.conda - sha256: 6164fd51abfc7294477c58da77ee1ff9ebc63b9a33404b646407f7fbc3cc7d0d - md5: a2ad82fae23975e4ccbfab2847d31d48 - depends: - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5728263_2 - license: LGPL-2.1-or-later - size: 40772 - timestamp: 1712516363413 -- kind: conda - name: libintl-devel - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libintl-devel-0.22.5-h5ff76d1_2.conda - sha256: e3f15a85c6e63633a5ff503d56366bab31cd2e07ea21559889bc7eb19564106d - md5: ea0a07e556d6b238db685cae6e3585d0 - depends: - - libiconv >=1.17,<2.0a0 - - libintl 0.22.5 h5ff76d1_2 - license: LGPL-2.1-or-later - size: 38422 - timestamp: 1712512843420 -- kind: conda - name: libjpeg-turbo - version: 3.0.0 - build: h0dc2134_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda - sha256: d9572fd1024adc374aae7c247d0f29fdf4b122f1e3586fe62acc18067f40d02f - md5: 72507f8e3961bc968af17435060b6dd6 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 579748 - timestamp: 1694475265912 -- kind: conda - name: libjpeg-turbo - version: 3.0.0 - build: hcfcfb64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda - sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff - md5: 3f1b948619c45b1ca714d60c7389092c - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 822966 - timestamp: 1694475223854 -- kind: conda - name: libjpeg-turbo - version: 3.0.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda - sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f - md5: ea25936bb4080d843790b586850f82b8 - depends: - - libgcc-ng >=12 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 618575 - timestamp: 1694474974816 -- kind: conda - name: libkml - version: 1.3.0 - build: h01aab08_1018 - build_number: 1018 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda - sha256: f67fc0be886c7eac14dbce858bfcffbc90a55b598e897e513f0979dd2caad750 - md5: 3eb5f16bcc8a02892199aa63555c731f - depends: - - libboost-headers - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - uriparser >=0.9.7,<1.0a0 - license: BSD-3-Clause - license_family: BSD - size: 513804 - timestamp: 1696451330826 -- kind: conda - name: libkml - version: 1.3.0 - build: hab3ca0e_1018 - build_number: 1018 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda - sha256: f546750a59b85a4b721f69e34e797ceddb93c438ee384db285e3344490d6a9b5 - md5: 535b1bb4896b113c14dfa64141370a12 - depends: - - libboost-headers - - libcxx >=15.0.7 - - libexpat >=2.5.0,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - uriparser >=0.9.7,<1.0a0 - license: BSD-3-Clause - license_family: BSD - size: 398649 - timestamp: 1696452291278 -- kind: conda - name: libkml - version: 1.3.0 - build: haf3e7a6_1018 - build_number: 1018 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-haf3e7a6_1018.conda - sha256: 74117fe100d9aa3aaab25eb705c44165f8ff6feec2e7c058212a3f5434f85d5f - md5: 950e8765b20b79ecbd296543f848b4ec - depends: - - libboost-headers - - libexpat >=2.5.0,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - ucrt >=10.0.20348.0 - - uriparser >=0.9.7,<1.0a0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 1764160 - timestamp: 1696451646350 -- kind: conda - name: liblapack - version: 3.9.0 - build: 22_linux64_openblas - build_number: 22 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda - sha256: db246341d42f9100d45adeb1a7ba8b1ef5b51ceb9056fd643e98046a3259fde6 - md5: b083767b6c877e24ee597d93b87ab838 - depends: - - libblas 3.9.0 22_linux64_openblas - constrains: - - libcblas 3.9.0 22_linux64_openblas - - blas * openblas - - liblapacke 3.9.0 22_linux64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14471 - timestamp: 1712542277696 -- kind: conda - name: liblapack - version: 3.9.0 - build: 22_osx64_openblas - build_number: 22 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda - sha256: e36744f3e780564d6748b5dd05e15ad6a1af9184cf32ab9d1304c13a6bc3e16b - md5: f21b282ff7ba14df6134a0fe6ab42b1b - depends: - - libblas 3.9.0 22_osx64_openblas - constrains: - - liblapacke 3.9.0 22_osx64_openblas - - blas * openblas - - libcblas 3.9.0 22_osx64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14657 - timestamp: 1712542322711 -- kind: conda - name: liblapack - version: 3.9.0 - build: 22_win64_mkl - build_number: 22 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-22_win64_mkl.conda - sha256: 8b28b361a13819ed83a67d3bfdde750a13bc8b50b9af26d94fd61616d0f2d703 - md5: c752cc2af9f3d8d7b2fdebb915a33ef7 - depends: - - libblas 3.9.0 22_win64_mkl - constrains: - - liblapacke 3.9.0 22_win64_mkl - - blas * mkl - - libcblas 3.9.0 22_win64_mkl - license: BSD-3-Clause - license_family: BSD - size: 5182500 - timestamp: 1712543085027 -- kind: conda - name: libllvm14 - version: 14.0.6 - build: hc8e404f_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-hc8e404f_4.conda - sha256: 0df3902a300cfe092425f86144d5e00ef67be3cd1cc89fd63084d45262a772ad - md5: ed06753e2ba7c66ed0ca7f19578fcb68 - depends: - - libcxx >=15 - - libzlib >=1.2.13,<1.3.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 22467131 - timestamp: 1690563140552 -- kind: conda - name: libllvm14 - version: 14.0.6 - build: hcd5def8_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libllvm14-14.0.6-hcd5def8_4.conda - sha256: 225cc7c3b20ac1db1bdb37fa18c95bf8aecef4388e984ab2f7540a9f4382106a - md5: 73301c133ded2bf71906aa2104edae8b - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 31484415 - timestamp: 1690557554081 -- kind: conda - name: libllvm15 - version: 15.0.7 - build: hb3ce162_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hb3ce162_4.conda - sha256: e71584c0f910140630580fdd0a013029a52fd31e435192aea2aa8d29005262d1 - md5: 8a35df3cbc0c8b12cc8af9473ae75eef - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxml2 >=2.12.1,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 33321457 - timestamp: 1701375836233 -- kind: conda - name: libllvm15 - version: 15.0.7 - build: hbedff68_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-hbedff68_4.conda - sha256: a0598cc166e92c6c63e58a7eaa184fa0b8b467693b965dbe19f1c9ff37e134c3 - md5: bdc80cf2aa69d6eb8dd101dfd804db07 - depends: - - libcxx >=16 - - libxml2 >=2.12.1,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 23755109 - timestamp: 1701376376564 -- kind: conda - name: libllvm16 - version: 16.0.6 - build: hb3ce162_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libllvm16-16.0.6-hb3ce162_3.conda - sha256: 624fa4012397bc5a8c9269247bf9baa7d907eb59079aefc6f6fa6a40f10fd0ba - md5: a4d48c40dd5c60edbab7fd69c9a88967 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxml2 >=2.12.1,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 35359734 - timestamp: 1701375139881 -- kind: conda - name: libllvm16 - version: 16.0.6 - build: hbedff68_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda - sha256: ad848dc0bb02b1dbe54324ee5700b050a2e5f63c095f5229b2de58249a3e268e - md5: 8fd56c0adc07a37f93bd44aa61a97c90 - depends: - - libcxx >=16 - - libxml2 >=2.12.1,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 25196932 - timestamp: 1701379796962 -- kind: conda - name: libnetcdf - version: 4.9.2 - build: nompi_h07c049d_113 - build_number: 113 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_h07c049d_113.conda - sha256: 4b06a7aa1fcfb3406e3eab9368089d612ea014402edd5deefb2f02b73cf3673d - md5: 2aa431a5a05e3679eea4faad0f47b119 - depends: - - blosc >=1.21.5,<2.0a0 - - bzip2 >=1.0.8,<2.0a0 - - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.5.0,<9.0a0 - - libxml2 >=2.12.2,<3.0.0a0 - - libzip >=1.10.1,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zlib - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 625091 - timestamp: 1702229854053 -- kind: conda - name: libnetcdf - version: 4.9.2 - build: nompi_h7760872_113 - build_number: 113 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7760872_113.conda - sha256: 3d6a950d82a8dfb9fa51c263e543cfa9c113703add20646ec85401e7b557da49 - md5: bce76ace6497221c2a2a02840aaceac5 - depends: - - __osx >=10.9 - - blosc >=1.21.5,<2.0a0 - - bzip2 >=1.0.8,<2.0a0 - - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.5.0,<9.0a0 - - libcxx >=16.0.6 - - libxml2 >=2.12.2,<3.0.0a0 - - libzip >=1.10.1,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.0,<4.0a0 - - zlib - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 724322 - timestamp: 1702229765562 -- kind: conda - name: libnetcdf - version: 4.9.2 - build: nompi_h9612171_113 - build_number: 113 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda - sha256: 0b4d984c7be21531e9254ce742e04101f7f7e77c0bbb7074855c0806c28323b0 - md5: b2414908e43c442ddc68e6148774a304 - depends: - - blosc >=1.21.5,<2.0a0 - - bzip2 >=1.0.8,<2.0a0 - - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.5.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxml2 >=2.12.2,<3.0.0a0 - - libzip >=1.10.1,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.0,<4.0a0 - - zlib - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 849037 - timestamp: 1702229195031 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: h47da74e_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda - sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb - md5: 700ac6ea6d53d5510591c4344d5c989a - depends: - - c-ares >=1.23.0,<2.0a0 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT - size: 631936 - timestamp: 1702130036271 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: h64cf6d3_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda - sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380 - md5: faecc55c2a8155d9ff1c0ff9a0fef64f - depends: - - __osx >=10.9 - - c-ares >=1.23.0,<2.0a0 - - libcxx >=16.0.6 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.0,<4.0a0 - license: MIT - license_family: MIT - size: 599736 - timestamp: 1702130398536 -- kind: conda - name: libnl - version: 3.9.0 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.9.0-hd590300_0.conda - sha256: aae03117811e704c3f3666e8374dd2e632f1d78bef0c27330e7298b24004819e - md5: d27c451db4f1d3c983c78167d2fdabc2 - depends: - - libgcc-ng >=12 - license: LGPL-2.1-or-later - license_family: LGPL - size: 732866 - timestamp: 1702657849946 -- kind: conda - name: libnsl - version: 2.0.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - depends: - - libgcc-ng >=12 - license: LGPL-2.1-only - license_family: GPL - size: 33408 - timestamp: 1697359010159 -- kind: conda - name: libogg - version: 1.3.4 - build: h35c211d_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2 - sha256: e3cec0c66d352d822b7a90db8edbc62f237fca079b6044e5b27f6ca529f7d9d9 - md5: a7ab4b53ef18c598ffaa597230bc3ba1 - license: BSD-3-Clause - license_family: BSD - size: 207262 - timestamp: 1610382038748 -- kind: conda - name: libogg - version: 1.3.4 - build: h7f98852_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 - md5: 6e8cc2173440d77708196c5b93771680 - depends: - - libgcc-ng >=9.3.0 - license: BSD-3-Clause - license_family: BSD - size: 210550 - timestamp: 1610382007814 -- kind: conda - name: libogg - version: 1.3.4 - build: h8ffe710_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 - sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 - md5: 04286d905a0dcb7f7d4a12bdfe02516d - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: BSD-3-Clause - license_family: BSD - size: 35187 - timestamp: 1610382533961 -- kind: conda - name: libopenblas - version: 0.3.27 - build: openmp_hfef2a42_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda - sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 - md5: 00237c9c7f2cb6725fe2960680a6e225 - depends: - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - llvm-openmp >=16.0.6 - constrains: - - openblas >=0.3.27,<0.3.28.0a0 - license: BSD-3-Clause - license_family: BSD - size: 6047531 - timestamp: 1712366254156 -- kind: conda - name: libopenblas - version: 0.3.27 - build: pthreads_h413a1c8_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda - sha256: 2ae7559aed0705deb3f716c7b247c74fd1b5e35b64e39834ce8b95f7564d4a3e - md5: a356024784da6dfd4683dc5ecf45b155 - depends: - - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - constrains: - - openblas >=0.3.27,<0.3.28.0a0 - license: BSD-3-Clause - license_family: BSD - size: 5598747 - timestamp: 1712364444346 -- kind: conda - name: libopenvino - version: 2024.0.0 - build: h2da1b83_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2da1b83_5.conda - sha256: ef0f39b7378663c296cddc184f0a028d6a5178fc61d145fd9407f635edb15de7 - md5: 87d1f91d897ed6678a615536a25fd13f - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - pugixml >=1.14,<1.15.0a0 - - tbb >=2021.11.0 - size: 5113894 - timestamp: 1712674184348 -- kind: conda - name: libopenvino - version: 2024.0.0 - build: hcdf21a5_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.0.0-hcdf21a5_5.conda - sha256: 41f6bee366ed444d96414a8c2b2f973907c3d174aa221495a212e24808cbf477 - md5: 7d0085f4204bf52696ebb2d3d23a7e18 - depends: - - __osx >=10.13 - - libcxx >=16 - - pugixml >=1.14,<1.15.0a0 - - tbb >=2021.11.0 - size: 3968556 - timestamp: 1712673697018 -- kind: conda - name: libopenvino-auto-batch-plugin - version: 2024.0.0 - build: hb045406_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hb045406_5.conda - sha256: 51aff831cbb65ee29ddd977c66a5a0224b2580ea7fe131885054bc8effa74e4f - md5: ddbb87c004506e586b79b674f0696aa3 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - - tbb >=2021.11.0 - size: 110915 - timestamp: 1712674229190 -- kind: conda - name: libopenvino-auto-batch-plugin - version: 2024.0.0 - build: hb622c4e_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.0.0-hb622c4e_5.conda - sha256: 7eefd4faf2e8fbc300a716e6a4199774c5aa8a58c6be2c5d1ee05978371160d5 - md5: dc71c8b315a2eae8e420c3ebcdde0d45 - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - tbb >=2021.11.0 - size: 103908 - timestamp: 1712673767712 -- kind: conda - name: libopenvino-auto-plugin - version: 2024.0.0 - build: hb045406_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hb045406_5.conda - sha256: 63c26a03ea8953cccde1302b26520ef53dccce6d1e234c25fc249c1ea75f14d1 - md5: 59aad82eda612aa46ba300576d536966 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - - tbb >=2021.11.0 - size: 228961 - timestamp: 1712674245147 -- kind: conda - name: libopenvino-auto-plugin - version: 2024.0.0 - build: hb622c4e_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.0.0-hb622c4e_5.conda - sha256: 231203fb517fe8b08e43f711a4ff2414ba12b15d6f3f43c166c62f78ef4af7a3 - md5: 156864f9b444029528d3687732f078bf - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - tbb >=2021.11.0 - size: 205572 - timestamp: 1712673810329 -- kind: conda - name: libopenvino-hetero-plugin - version: 2024.0.0 - build: h321ab60_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.0.0-h321ab60_5.conda - sha256: 61ded9a801ba7af6e084e6d86a239cb4ce1dcd8e46698c02cd5938e8953dde02 - md5: 04282e1bc86f038bbcec71cecb7ede71 - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - pugixml >=1.14,<1.15.0a0 - size: 167879 - timestamp: 1712673850284 -- kind: conda - name: libopenvino-hetero-plugin - version: 2024.0.0 - build: h5c03a75_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h5c03a75_5.conda - sha256: 41ab26306eeadc35b1765ae49ea651429e39239e51140cbe695ecd7e5111d9c9 - md5: c69a1ed3e89dc16c7e1df30ed1fd73f7 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - - pugixml >=1.14,<1.15.0a0 - size: 179737 - timestamp: 1712674261368 -- kind: conda - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 - build: h2da1b83_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2da1b83_5.conda - sha256: 41a31574f67e01e012ff7691c2bf2bcf24298307991f9e8b04b756bf0cd42be3 - md5: deb11c7339478aba1b5b7cf15c443396 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - - pugixml >=1.14,<1.15.0a0 - - tbb >=2021.11.0 - size: 10628363 - timestamp: 1712674280576 -- kind: conda - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 - build: hcdf21a5_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.0.0-hcdf21a5_5.conda - sha256: a8e505d56b683ca40f6ab4f54a62b8ee90c70dba88c22f9b42d7f73f1b37dbfc - md5: 9952f2fec5a0933718fa59d054c4d766 - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - pugixml >=1.14,<1.15.0a0 - - tbb >=2021.11.0 - size: 9909609 - timestamp: 1712673902257 -- kind: conda - name: libopenvino-intel-gpu-plugin - version: 2024.0.0 - build: h2da1b83_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2da1b83_5.conda - sha256: 0d691749d38bf7a1b5f347336486c126af9591e427486aae92f465f6c0ea7d66 - md5: 1f5902112c12e9a8ae2bb4c51294d35a - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - - ocl-icd >=2.3.2,<3.0a0 - - pugixml >=1.14,<1.15.0a0 - - tbb >=2021.11.0 - size: 8353537 - timestamp: 1712674327020 -- kind: conda - name: libopenvino-ir-frontend - version: 2024.0.0 - build: h321ab60_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.0.0-h321ab60_5.conda - sha256: e06946ba10160c5cf9c1a0e8ed1e5a2c72ba769aa208bb8c2d65139c0d7a3c0b - md5: 1733165460e893fe8121a0bff101ca6d - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - pugixml >=1.14,<1.15.0a0 - size: 178557 - timestamp: 1712673995491 -- kind: conda - name: libopenvino-ir-frontend - version: 2024.0.0 - build: h5c03a75_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h5c03a75_5.conda - sha256: c1e8556f42cd001ee03298c6b044730daae2adcc1af035df0edccf8eb4dd5261 - md5: 3a5e6778c907c33503be9c051a6424ae - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - - pugixml >=1.14,<1.15.0a0 - size: 200926 - timestamp: 1712674364843 -- kind: conda - name: libopenvino-onnx-frontend - version: 2024.0.0 - build: h07e8aee_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h07e8aee_5.conda - sha256: 68506cc32799197fecdceb50a220c8ad5092c0279192bd2c0ecc33f57beb2397 - md5: 5b9b0c983e7b14ba4764d75a9bf7a6f3 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - size: 1586243 - timestamp: 1712674383761 -- kind: conda - name: libopenvino-onnx-frontend - version: 2024.0.0 - build: hb2e0ddf_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.0.0-hb2e0ddf_5.conda - sha256: 84b69cc1335cb4024039d9fe8883e166f3a74fa083ae582ae7921e4ab9442e3e - md5: 8b63fd9307aa1d8442c62ae9059f2e51 - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - libprotobuf >=4.25.3,<4.25.4.0a0 - size: 1266299 - timestamp: 1712674054702 -- kind: conda - name: libopenvino-paddle-frontend - version: 2024.0.0 - build: h07e8aee_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h07e8aee_5.conda - sha256: 7ad02d506f4a67b37f1c3ec72c950d339c10c29a53a36326094fbbfa62ec3cd1 - md5: 77ba4135acc68fdade36cca31446c3e8 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - size: 695337 - timestamp: 1712674402836 -- kind: conda - name: libopenvino-paddle-frontend - version: 2024.0.0 - build: hb2e0ddf_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.0.0-hb2e0ddf_5.conda - sha256: 9078239135b0bd7f9f91f19dbbd50442497affb32e492013c9c0b72a9120ed49 - md5: 4793b0eea4020cb0f79b32a27bd92605 - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - libprotobuf >=4.25.3,<4.25.4.0a0 - size: 427333 - timestamp: 1712674101191 -- kind: conda - name: libopenvino-pytorch-frontend - version: 2024.0.0 - build: ha0df490_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.0.0-ha0df490_5.conda - sha256: 52da43e15dc40a6431acc8866d41630da14b05a91b5994f74490eff9db61366d - md5: 1162456d8fc49e6c0ca14bd7afe0297d - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - size: 761234 - timestamp: 1712674144034 -- kind: conda - name: libopenvino-pytorch-frontend - version: 2024.0.0 - build: he02047a_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-he02047a_5.conda - sha256: 71795c64c5b6a853130fefb435376b836a6e42eac63117a03a78fa82d76f4af0 - md5: deb1f6397c3aa6dbb35d197499829623 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - size: 1066396 - timestamp: 1712674419569 -- kind: conda - name: libopenvino-tensorflow-frontend - version: 2024.0.0 - build: h39126c6_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-h39126c6_5.conda - sha256: d3302692d306eb59f99650393a5f3a7f9312bde5c2a3982432fb667ee4f1d89c - md5: 737f0ee3a70c84758333318afa86d46e - depends: - - __glibc >=2.17,<3.0.a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - - snappy >=1.2.0,<1.3.0a0 - size: 1270703 - timestamp: 1712674438216 -- kind: conda - name: libopenvino-tensorflow-frontend - version: 2024.0.0 - build: h70945bb_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.0.0-h70945bb_5.conda - sha256: a0558bb6f9af48de03ef0284f40a599571781a56880bbf42a0b2372b030d088d - md5: 8a4f864b5c19cb95ace72416bdfd6032 - depends: - - __osx >=10.13 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - snappy >=1.2.0,<1.3.0a0 - size: 935580 - timestamp: 1712674220872 -- kind: conda - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 - build: ha0df490_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.0.0-ha0df490_5.conda - sha256: 864be4bbf2ce40df31dca6f09fea7715896724f0bfebb255c4ad2dd957c2cb7a - md5: 29866f98574ff30a16ebd4ba80b4b7a0 - depends: - - __osx >=10.13 - - libcxx >=16 - - libopenvino 2024.0.0 hcdf21a5_5 - size: 376916 - timestamp: 1712674261940 -- kind: conda - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 - build: he02047a_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-he02047a_5.conda - sha256: 33d537f0a7d43e384e9808191f79ae2115213ff78d291bab3d57db9d9c66683a - md5: 5161e70dfbcd31a6e28b5d75c0b620e6 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libopenvino 2024.0.0 h2da1b83_5 - - libstdcxx-ng >=12 - size: 477616 - timestamp: 1712674457796 -- kind: conda - name: libopus - version: 1.3.1 - build: h7f98852_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - md5: 15345e56d527b330e1cacbdf58676e8f - depends: - - libgcc-ng >=9.3.0 - license: BSD-3-Clause - license_family: BSD - size: 260658 - timestamp: 1606823578035 -- kind: conda - name: libopus - version: 1.3.1 - build: h8ffe710_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 - sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525 - md5: e35a6bcfeb20ea83aab21dfc50ae62a4 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: BSD-3-Clause - license_family: BSD - size: 260615 - timestamp: 1606824019288 -- kind: conda - name: libopus - version: 1.3.1 - build: hc929b4f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 - sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 - md5: 380b9ea5f6a7a277e6c1ac27d034369b - license: BSD-3-Clause - license_family: BSD - size: 279983 - timestamp: 1606823633642 -- kind: conda - name: libparquet - version: 15.0.2 - build: h39135fc_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libparquet-15.0.2-h39135fc_3_cpu.conda - sha256: 5fceb521197011855087e8bb06fcbed69f36305f06134e010ac68d9ee1905d33 - md5: 7682dc52680f8392ecb96b3181c0630f - depends: - - libarrow 15.0.2 h45212c0_3_cpu - - libthrift >=0.19.0,<0.19.1.0a0 - - openssl >=3.2.1,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 793915 - timestamp: 1712757376343 -- kind: conda - name: libparquet - version: 15.0.2 - build: h6a7eafb_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-15.0.2-h6a7eafb_3_cpu.conda - sha256: a37a1416f3ae147a821e8144bda8b0ae31def625b0fdb848952e4f491366f375 - md5: d2827e2cf2df4f74f9c76417f559ca46 - depends: - - libarrow 15.0.2 he70291f_3_cpu - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libthrift >=0.19.0,<0.19.1.0a0 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 1179560 - timestamp: 1712756464081 -- kind: conda - name: libparquet - version: 15.0.2 - build: h7cd3cfe_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libparquet-15.0.2-h7cd3cfe_3_cpu.conda - sha256: 9b9144697ef4637a0f164c9acb1be5297bedc4d86ad9ae97b97eaec872447104 - md5: 72f92d2ee538cb24f5d8c1870d96cf66 - depends: - - __osx >=10.13 - - libarrow 15.0.2 h965e444_3_cpu - - libcxx >=16 - - libthrift >=0.19.0,<0.19.1.0a0 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 921797 - timestamp: 1712758165813 -- kind: conda - name: libpciaccess - version: '0.18' - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda - sha256: c0a30ac74eba66ea76a4f0a39acc7833f5ed783a632ca3bb6665b2d81aabd2fb - md5: 48f4330bfcd959c3cfb704d424903c82 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 28361 - timestamp: 1707101388552 -- kind: conda - name: libpng - version: 1.6.43 - build: h19919ed_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.43-h19919ed_0.conda - sha256: 6ad31bf262a114de5bbe0c6ba73b29ed25239d0f46f9d59700310d2ea0b3c142 - md5: 77e398acc32617a0384553aea29e866b - depends: - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: zlib-acknowledgement - size: 347514 - timestamp: 1708780763195 -- kind: conda - name: libpng - version: 1.6.43 - build: h2797004_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda - sha256: 502f6ff148ac2777cc55ae4ade01a8fc3543b4ffab25c4e0eaa15f94e90dd997 - md5: 009981dd9cfcaa4dbfa25ffaed86bcae - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: zlib-acknowledgement - size: 288221 - timestamp: 1708780443939 -- kind: conda - name: libpng - version: 1.6.43 - build: h92b6c6a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda - sha256: 13e646d24b5179e6b0a5ece4451a587d759f55d9a360b7015f8f96eff4524b8f - md5: 65dcddb15965c9de2c0365cb14910532 - depends: - - libzlib >=1.2.13,<2.0.0a0 - license: zlib-acknowledgement - size: 268524 - timestamp: 1708780496420 -- kind: conda - name: libpq - version: '16.3' - build: h4501773_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libpq-16.3-h4501773_0.conda - sha256: 039da003586fdcdb40b8c8ffa25d5ded33316ba3a32ec79afde098a68b8a3acc - md5: 74f18d32d7cc71584c8b05fd1ee555a0 - depends: - - __osx >=10.13 - - krb5 >=1.21.2,<1.22.0a0 - - openssl >=3.3.0,<4.0a0 - license: PostgreSQL - size: 2398885 - timestamp: 1715267344306 -- kind: conda - name: libpq - version: '16.3' - build: ha72fbe1_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-16.3-ha72fbe1_0.conda - sha256: 117ba1e11f07b1ca0671641bd6d1f2e7fc6e27db1c317a0cdb4799ffa69f47db - md5: bac737ae28b79cfbafd515258d97d29e - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libgcc-ng >=12 - - openssl >=3.3.0,<4.0a0 - license: PostgreSQL - size: 2500439 - timestamp: 1715266400833 -- kind: conda - name: libpq - version: '16.3' - build: hab9416b_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libpq-16.3-hab9416b_0.conda - sha256: 5cb998386c86fcbf5c3b929c0ec252e80b56d3f2ef4bc857496f5d06d3b28af1 - md5: 84d2332f3110845bbafbfd7d5311354f - depends: - - krb5 >=1.21.2,<1.22.0a0 - - openssl >=3.3.0,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: PostgreSQL - size: 3456937 - timestamp: 1715267132646 -- kind: conda - name: libprotobuf - version: 4.25.3 - build: h08a7969_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda - sha256: 70e0eef046033af2e8d21251a785563ad738ed5281c74e21c31c457780845dcd - md5: 6945825cebd2aeb16af4c69d97c32c13 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 2811207 - timestamp: 1709514552541 -- kind: conda - name: libprotobuf - version: 4.25.3 - build: h4e4d658_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda - sha256: 3f126769fb5820387d436370ad48600e05d038a28689fdf9988b64e1059947a8 - md5: 57b7ee4f1fd8573781cfdabaec4a7782 - depends: - - __osx >=10.13 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libzlib >=1.2.13,<2.0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 2216001 - timestamp: 1709514908146 -- kind: conda - name: libprotobuf - version: 4.25.3 - build: h503648d_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.3-h503648d_0.conda - sha256: 5d4c5592be3994657ebf47e52f26b734cc50b0ea9db007d920e2e31762aac216 - md5: 4da7de0ba35777742edf67bf7a1075df - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 5650604 - timestamp: 1709514804631 -- kind: conda - name: libre2-11 - version: 2023.09.01 - build: h5a48ba9_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - md5: 41c69fba59d495e8cf5ffda48a607e35 - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - constrains: - - re2 2023.09.01.* - license: BSD-3-Clause - license_family: BSD - size: 232603 - timestamp: 1708946763521 -- kind: conda - name: libre2-11 - version: 2023.09.01 - build: h81f5012_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - sha256: 384b72a09bd4bb29c1aa085110b2f940dba431587ffb4e2c1a28f605887a1867 - md5: c5c36ec64e3c86504728c38b79011d08 - depends: - - __osx >=10.13 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - constrains: - - re2 2023.09.01.* - license: BSD-3-Clause - license_family: BSD - size: 184017 - timestamp: 1708947106275 -- kind: conda - name: libre2-11 - version: 2023.09.01 - build: hf8d8778_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2023.09.01-hf8d8778_2.conda - sha256: 04331dad30a076ebb24c683197a5feabf4fd9be0fa0e06f416767096f287f900 - md5: cf54cb5077a60797d53a132d37af25fc - depends: - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - re2 2023.09.01.* - license: BSD-3-Clause - license_family: BSD - size: 256561 - timestamp: 1708947458481 -- kind: conda - name: librsvg - version: 2.56.3 - build: h1877882_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.56.3-h1877882_1.conda - sha256: 29c94b30363cdcae427a2a303de3c634db05f1e28101b6e865e135e72fa8b7ec - md5: 43b31ab0e9cf3538fb3ab138ee663a0b - depends: - - cairo >=1.18.0,<2.0a0 - - gdk-pixbuf >=2.42.10,<3.0a0 - - gettext >=0.21.1,<1.0a0 - - libglib >=2.78.1,<3.0a0 - - libxml2 >=2.12.1,<3.0.0a0 - - pango >=1.50.14,<2.0a0 - license: LGPL-2.1-or-later - size: 3978990 - timestamp: 1701547214362 -- kind: conda - name: librsvg - version: 2.56.3 - build: he3f83f7_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.56.3-he3f83f7_1.conda - sha256: b82d0c60376da88a2bf15d35d17c176aa923917ad7de4bc62ddef6d02f3518fb - md5: 03bd1ddcc942867a19528877143b9852 - depends: - - cairo >=1.18.0,<2.0a0 - - gdk-pixbuf >=2.42.10,<3.0a0 - - gettext >=0.21.1,<1.0a0 - - libgcc-ng >=12 - - libglib >=2.78.1,<3.0a0 - - libxml2 >=2.12.1,<3.0.0a0 - - pango >=1.50.14,<2.0a0 - license: LGPL-2.1-or-later - size: 5897732 - timestamp: 1701546864628 -- kind: conda - name: librttopo - version: 1.1.0 - build: h8917695_15 - build_number: 15 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda - sha256: 03e248787162a1804683c614c0681c2488fa6d9f353cb32e2f8c1158157165ea - md5: 20c3c14bc491f30daecaa6f73e2223ae - depends: - - geos >=3.12.1,<3.12.2.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: GPL-2.0-or-later - license_family: GPL - size: 233194 - timestamp: 1700766491991 -- kind: conda - name: librttopo - version: 1.1.0 - build: h94c4f80_15 - build_number: 15 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-h94c4f80_15.conda - sha256: 1a85091ebed8272b0c9b9e5aacba1d423c6411bfa91d7777c1ede8c7a42c933b - md5: 3c2a870012ae8f6ffcc7735715f197b1 - depends: - - geos >=3.12.1,<3.12.2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: GPL-2.0-or-later - license_family: GPL - size: 402764 - timestamp: 1700767022424 -- kind: conda - name: librttopo - version: 1.1.0 - build: hf05f67e_15 - build_number: 15 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-hf05f67e_15.conda - sha256: 10c46efefda5cc77143832a186f517e401098907cf9c3ec7406a5c242bb34e33 - md5: e65bedc9d9779a161cf26b6d12305246 - depends: - - __osx >=10.9 - - geos >=3.12.1,<3.12.2.0a0 - - libcxx >=16.0.6 - license: GPL-2.0-or-later - license_family: GPL - size: 213839 - timestamp: 1700766697471 -- kind: conda - name: libsndfile - version: 1.2.2 - build: hc60ed4a_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda - sha256: f709cbede3d4f3aee4e2f8d60bd9e256057f410bd60b8964cb8cf82ec1457573 - md5: ef1910918dd895516a769ed36b5b3a4e - depends: - - lame >=3.100,<3.101.0a0 - - libflac >=1.4.3,<1.5.0a0 - - libgcc-ng >=12 - - libogg >=1.3.4,<1.4.0a0 - - libopus >=1.3.1,<2.0a0 - - libstdcxx-ng >=12 - - libvorbis >=1.3.7,<1.4.0a0 - - mpg123 >=1.32.1,<1.33.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 354372 - timestamp: 1695747735668 -- kind: conda - name: libsodium - version: 1.0.18 - build: h36c2ea0_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 - sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130 - md5: c3788462a6fbddafdb413a9f9053e58d - depends: - - libgcc-ng >=7.5.0 - license: ISC - size: 374999 - timestamp: 1605135674116 -- kind: conda - name: libsodium - version: 1.0.18 - build: h8d14728_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2 - sha256: ecc463f0ab6eaf6bc5bd6ff9c17f65595de6c7a38db812222ab8ffde0d3f4bc2 - md5: 5c1fb45b5e2912c19098750ae8a32604 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: ISC - size: 713431 - timestamp: 1605135918736 -- kind: conda - name: libsodium - version: 1.0.18 - build: hbcb3906_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 - sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660 - md5: 24632c09ed931af617fe6d5292919cab - license: ISC - size: 528765 - timestamp: 1605135849110 -- kind: conda - name: libspatialindex - version: 1.9.3 - build: h5a68840_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h5a68840_5.conda - sha256: aba140efc10a8f3dd0895a6bb581df50f325de381785a30efb42728f4755ac85 - md5: 97adbac1bbefbc8007bc9b47902fda68 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 349544 - timestamp: 1715789523831 -- kind: conda - name: libspatialindex - version: 1.9.3 - build: he02047a_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-he02047a_5.conda - sha256: 7ebebb444d6ca90d7fec78cf57289d0f22d93fd7ebdca9fc46f3c4e724b7b819 - md5: 659e6a5c5c7a811bd99e26375cb798b9 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 2970213 - timestamp: 1715789020538 -- kind: conda - name: libspatialindex - version: 1.9.3 - build: hf036a51_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-hf036a51_5.conda - sha256: ca339b16e824ec27a43692557fc30a5ea93422b93c3e98307dfed2a6a84e7baa - md5: 256095bb52866eb63eba439b38f4c437 - depends: - - __osx >=10.13 - - libcxx >=16 - license: MIT - license_family: MIT - size: 311971 - timestamp: 1715789333532 -- kind: conda - name: libspatialite - version: 5.1.0 - build: h7bd4643_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h7bd4643_4.conda - sha256: 2d07badb81296f42dd0c59b02dbf7d64ca2c78c086226327c1e11e11f71effbd - md5: 127d36f9ee392fa81b45e81867ce30ab - depends: - - freexl >=2 - - freexl >=2.0.0,<3.0a0 - - geos >=3.12.1,<3.12.2.0a0 - - libgcc-ng >=12 - - librttopo >=1.1.0,<1.2.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libstdcxx-ng >=12 - - libxml2 >=2.12.2,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - sqlite - - zlib - license: MPL-1.1 - license_family: MOZILLA - size: 4066136 - timestamp: 1702008260311 -- kind: conda - name: libspatialite - version: 5.1.0 - build: hebe6af1_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-hebe6af1_4.conda - sha256: 48ff63495ed9ed86db1fb62ea51e1053747e76481200fb33aa164f7bdb1bec93 - md5: 9e8f3012e1b4460819395357cc7c4371 - depends: - - __osx >=10.9 - - freexl >=2 - - freexl >=2.0.0,<3.0a0 - - geos >=3.12.1,<3.12.2.0a0 - - libcxx >=16.0.6 - - libiconv >=1.17,<2.0a0 - - librttopo >=1.1.0,<1.2.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libxml2 >=2.12.2,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - sqlite - - zlib - license: MPL-1.1 - license_family: MOZILLA - size: 3145354 - timestamp: 1702008546896 -- kind: conda - name: libspatialite - version: 5.1.0 - build: hf2f0abc_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.1.0-hf2f0abc_4.conda - sha256: 30356fe967052feb909ae8b6011637ffe57aaaf6add65399400fca04a97189b7 - md5: 15d5d74335f53b34f05e6ee83c2e6119 - depends: - - freexl >=2 - - freexl >=2.0.0,<3.0a0 - - geos >=3.12.1,<3.12.2.0a0 - - librttopo >=1.1.0,<1.2.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libxml2 >=2.12.2,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - sqlite - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zlib - license: MPL-1.1 - license_family: MOZILLA - size: 8606085 - timestamp: 1702008651881 -- kind: conda - name: libsqlite - version: 3.45.3 - build: h2797004_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda - sha256: e2273d6860eadcf714a759ffb6dc24a69cfd01f2a0ea9d6c20f86049b9334e0c - md5: b3316cbe90249da4f8e84cd66e1cc55b - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: Unlicense - size: 859858 - timestamp: 1713367435849 -- kind: conda - name: libsqlite - version: 3.45.3 - build: h92b6c6a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda - sha256: 4d44b68fb29dcbc2216a8cae0b274b02ef9b4ae05d1d0f785362ed30b91c9b52 - md5: 68e462226209f35182ef66eda0f794ff - depends: - - libzlib >=1.2.13,<2.0.0a0 - license: Unlicense - size: 902546 - timestamp: 1713367776445 -- kind: conda - name: libsqlite - version: 3.45.3 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda - sha256: 06ec75faa51d7ec6d5db98889e869b579a9df19d7d3d9baff8359627da4a3b7e - md5: 73f5dc8e2d55d9a1e14b11f49c3b4a28 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Unlicense - size: 870518 - timestamp: 1713367888406 -- kind: conda - name: libssh2 - version: 1.11.0 - build: h0841786_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d - md5: 1f5a58e686b13bcfde88b93f547d23fe - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 271133 - timestamp: 1685837707056 -- kind: conda - name: libssh2 - version: 1.11.0 - build: h7dfc565_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec - md5: dc262d03aae04fe26825062879141a41 - depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 266806 - timestamp: 1685838242099 -- kind: conda - name: libssh2 - version: 1.11.0 - build: hd019ec5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda - sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 - md5: ca3a72efba692c59a90d4b9fc0dfe774 - depends: - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 259556 - timestamp: 1685837820566 -- kind: conda - name: libstdcxx-ng - version: 13.2.0 - build: hc0a3c3a_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_7.conda - sha256: 35f1e08be0a84810c9075f5bd008495ac94e6c5fe306dfe4b34546f11fed850f - md5: 53ebd4c833fa01cb2c6353e99f905406 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 3837704 - timestamp: 1715016117360 -- kind: conda - name: libsystemd0 - version: '255' - build: h3516f8a_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_1.conda - sha256: af27b0d225435d03f378a119f8eab6b280c53557a3c84cdb3bb8fd3167615aed - md5: 3366af27f0b593544a6cd453c7932ac5 - depends: - - __glibc >=2.17,<3.0.a0 - - libcap >=2.69,<2.70.0a0 - - libgcc-ng >=12 - - libgcrypt >=1.10.3,<2.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: LGPL-2.1-or-later - size: 402592 - timestamp: 1709568499820 -- kind: conda - name: libtasn1 - version: 4.19.0 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 - sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 - md5: 93840744a8552e9ebf6bb1a5dffc125a - depends: - - libgcc-ng >=12 - license: GPL-3.0-or-later - license_family: GPL - size: 116878 - timestamp: 1661325701583 -- kind: conda - name: libtasn1 - version: 4.19.0 - build: hb7f2c08_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 - sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc - md5: 73f67fb011b4477b101a95a082c74f0a - license: GPL-3.0-or-later - license_family: GPL - size: 118785 - timestamp: 1661325967954 -- kind: conda - name: libtheora - version: 1.1.1 - build: h0d85af4_1005 - build_number: 1005 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-h0d85af4_1005.tar.bz2 - sha256: 7a22ace7fb4c0b2a54c9e707c1894f889c9d2381cafbe0e6a75ad1d17340f8b9 - md5: e63b84ed4c2d84901332de92a98a2f2b - depends: - - libogg 1.3.* - - libogg >=1.3.4,<1.4.0a0 - - libpng >=1.6.23,<1.7 - - libpng >=1.6.37,<1.7.0a0 - - libvorbis 1.3.* - - libvorbis >=1.3.7,<1.4.0a0 - - zlib 1.2.* - - zlib >=1.2.11,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 527664 - timestamp: 1618477992208 -- kind: conda - name: libtheora - version: 1.1.1 - build: h7f98852_1005 - build_number: 1005 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h7f98852_1005.tar.bz2 - sha256: 048ce34ba5b143f099cca3d388dfc41acf24d634dd00c5b1c463fb81bf804070 - md5: 1a7c35f56343b7e9e8db20b296c7566c - depends: - - libgcc-ng >=9.3.0 - - libogg 1.3.* - - libogg >=1.3.4,<1.4.0a0 - - libpng >=1.6.23,<1.7 - - libpng >=1.6.37,<1.7.0a0 - - libvorbis 1.3.* - - libvorbis >=1.3.7,<1.4.0a0 - - zlib 1.2.* - - zlib >=1.2.11,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 667135 - timestamp: 1618477815734 -- kind: conda - name: libtheora - version: 1.1.1 - build: h8d14728_1005 - build_number: 1005 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libtheora-1.1.1-h8d14728_1005.tar.bz2 - sha256: 41bed432fee99b129f95bcfe057296373098fdb06be763b40ae9baba554b2e64 - md5: 8ad3f8ea1dbd5ac4fe1299a3250cbd1b - depends: - - libogg 1.3.* - - libogg >=1.3.4,<1.4.0a0 - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: BSD-3-Clause - license_family: BSD - size: 206136 - timestamp: 1618478588764 -- kind: conda - name: libthrift - version: 0.19.0 - build: h064b379_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda - sha256: 4346c25ef6e2ff3d0fc93074238508531188ecd0dbea6414f6cb93a7775072c4 - md5: b152655bfad7c2374ff03be0596052b6 - depends: - - libcxx >=15.0.7 - - libevent >=2.1.12,<2.1.13.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.3,<4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 325415 - timestamp: 1695958330036 -- kind: conda - name: libthrift - version: 0.19.0 - build: ha2b3283_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda - sha256: 89bbc59898c827429a52315c9c0dd888ea73ab1157a8c86098aeae7d13454ac4 - md5: d3432b9d4950e91d2fdf3bed91248ee0 - depends: - - libevent >=2.1.12,<2.1.13.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.3,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 612342 - timestamp: 1695958519927 -- kind: conda - name: libthrift - version: 0.19.0 - build: hb90f79a_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda - sha256: 719add2cf20d144ef9962c57cd0f77178259bdb3aae1cded2e2b2b7c646092f5 - md5: 8cdb7d41faa0260875ba92414c487e2d - depends: - - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.3,<4.0a0 - license: Apache-2.0 - license_family: APACHE - size: 409409 - timestamp: 1695958011498 -- kind: conda - name: libtiff - version: 4.6.0 - build: h684deea_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h684deea_2.conda - sha256: 1ef5bd7295f4316b111f70ad21356fb9f0de50b85a341cac9e3a61ac6487fdf1 - md5: 2ca10a325063e000ad6d2a5900061e0d - depends: - - lerc >=4.0.0,<5.0a0 - - libcxx >=15.0.7 - - libdeflate >=1.19,<1.20.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: HPND - size: 266501 - timestamp: 1695661828714 -- kind: conda - name: libtiff - version: 4.6.0 - build: h6e2ebb7_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-h6e2ebb7_2.conda - sha256: f7b50b71840a5d8edd74a8bccf0c173ca2599bd136e366c35722272b4afa0500 - md5: 08d653b74ee2dec0131ad4259ffbb126 - depends: - - lerc >=4.0.0,<5.0a0 - - libdeflate >=1.19,<1.20.0a0 - - libjpeg-turbo >=3.0.0,<4.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.5,<1.6.0a0 - license: HPND - size: 787430 - timestamp: 1695662030293 -- kind: conda - name: libtiff - version: 4.6.0 - build: ha9c0a0a_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-ha9c0a0a_2.conda - sha256: 45158f5fbee7ee3e257e6b9f51b9f1c919ed5518a94a9973fe7fa4764330473e - md5: 55ed21669b2015f77c180feb1dd41930 - depends: - - lerc >=4.0.0,<5.0a0 - - libdeflate >=1.19,<1.20.0a0 - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libstdcxx-ng >=12 - - libwebp-base >=1.3.2,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: HPND - size: 283198 - timestamp: 1695661593314 -- kind: conda - name: libunistring - version: 0.9.10 - build: h0d85af4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libunistring-0.9.10-h0d85af4_0.tar.bz2 - sha256: c5805a58cd2b211bffdc8b7cdeba9af3cee456196ab52ab9a30e0353bc95beb7 - md5: 40f27dc16f73256d7b93e53c4f03d92f - license: GPL-3.0-only OR LGPL-3.0-only - size: 1392865 - timestamp: 1626955817826 -- kind: conda - name: libunistring - version: 0.9.10 - build: h7f98852_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 - sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d - md5: 7245a044b4a1980ed83196176b78b73a - depends: - - libgcc-ng >=9.3.0 - license: GPL-3.0-only OR LGPL-3.0-only - size: 1433436 - timestamp: 1626955018689 -- kind: conda - name: libutf8proc - version: 2.8.0 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - sha256: 49082ee8d01339b225f7f8c60f32a2a2c05fe3b16f31b554b4fb2c1dea237d1c - md5: ede4266dc02e875fe1ea77b25dd43747 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 101070 - timestamp: 1667316029302 -- kind: conda - name: libutf8proc - version: 2.8.0 - build: h82a8f57_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 - sha256: 6efa83e3f2fb9acaf096a18d21d0f679d110934798348c5defc780d4b759a76c - md5: 076894846fe9f068f91c57d158c90cba - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vs2015_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 104389 - timestamp: 1667316359211 -- kind: conda - name: libutf8proc - version: 2.8.0 - build: hb7f2c08_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 - sha256: 55a7f96b2802e94def207fdfe92bc52c24d705d139bb6cdb3d936cbe85e1c505 - md5: db98dc3e58cbc11583180609c429c17d - license: MIT - license_family: MIT - size: 98942 - timestamp: 1667316472080 -- kind: conda - name: libuuid - version: 2.38.1 - build: h0b41bf4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 - md5: 40b61aab5c7ba9ff276c41cfffe6b80b - depends: - - libgcc-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 33601 - timestamp: 1680112270483 -- kind: conda - name: libva - version: 2.21.0 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda - sha256: b4e3a3fa523a5ddd1eca7981c9d6a9b831a182950116cc5bda18c94a040b63bc - md5: e50a2609159a3e336fe4092738c00687 - depends: - - libdrm >=2.4.120,<2.5.0a0 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxfixes - license: MIT - license_family: MIT - size: 189313 - timestamp: 1710242676665 -- kind: conda - name: libvorbis - version: 1.3.7 - build: h046ec9c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 - sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7 - md5: fbbda1fede0aadaa252f6919148c4ce1 - depends: - - libcxx >=11.0.0 - - libogg >=1.3.4,<1.4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 254208 - timestamp: 1610609857389 -- kind: conda - name: libvorbis - version: 1.3.7 - build: h0e60522_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 - sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a - md5: e1a22282de0169c93e4ffe6ce6acc212 - depends: - - libogg >=1.3.4,<1.4.0a0 - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: BSD-3-Clause - license_family: BSD - size: 273721 - timestamp: 1610610022421 -- kind: conda - name: libvorbis - version: 1.3.7 - build: h9c3ff4c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 - sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 - md5: 309dec04b70a3cc0f1e84a4013683bc0 - depends: - - libgcc-ng >=9.3.0 - - libogg >=1.3.4,<1.4.0a0 - - libstdcxx-ng >=9.3.0 - license: BSD-3-Clause - license_family: BSD - size: 286280 - timestamp: 1610609811627 -- kind: conda - name: libvpx - version: 1.14.0 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda - sha256: b0e0500fc92f626baaa2cf926dece5ce7571c42a2db2d993a250d4c5da4d68ca - md5: 01c76c6d71097a0f3bd8683a8f255123 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 1019593 - timestamp: 1707175376125 -- kind: conda - name: libvpx - version: 1.14.0 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.0-h73e2aa4_0.conda - sha256: d3980ecf1e65bfbf7e1c57d6f41a66ab4f33c4fe6b71bf9414bb823e2db186fb - md5: 2c087711228029c8eab3301ddff1c386 - depends: - - libcxx >=16 - license: BSD-3-Clause - license_family: BSD - size: 1294811 - timestamp: 1707175761017 -- kind: conda - name: libwebp - version: 1.4.0 - build: h2466b09_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-1.4.0-h2466b09_0.conda - sha256: ebabb57084e85cd09d529dbb4fe0f4db6cd0d369ad8095342c37b98855fd87fd - md5: 11334a8fb02041b453e2f89a4ae16f8d - depends: - - libwebp-base 1.4.0.* - - libwebp-base >=1.4.0,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 71106 - timestamp: 1714600150795 -- kind: conda - name: libwebp - version: 1.4.0 - build: h2c329e2_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.4.0-h2c329e2_0.conda - sha256: bd45805b169e3e0ff166d360c3c4842d77107d28c8f9feba020a8e8b9c80f948 - md5: 80030debaa84cfc31755d53742df3ca6 - depends: - - giflib >=5.2.2,<5.3.0a0 - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.43,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base 1.4.0.* - - libwebp-base >=1.4.0,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 91941 - timestamp: 1714599671055 -- kind: conda - name: libwebp - version: 1.4.0 - build: hc207709_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.4.0-hc207709_0.conda - sha256: 5c7103d5462deedf0f80a081bc895c25b05404719c11b33a846dc5f5328d791c - md5: c5aa72a275c001665128245084c9ce14 - depends: - - __osx >=10.9 - - giflib >=5.2.2,<5.3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.43,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base 1.4.0.* - - libwebp-base >=1.4.0,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 87124 - timestamp: 1714599963620 -- kind: conda - name: libwebp-base - version: 1.4.0 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda - sha256: 7bafd8f4c637778cd0aa390bf3a894feef0e1fcf6ea6000c7ffc25c4c5a65538 - md5: b2c0047ea73819d992484faacbbe1c24 - constrains: - - libwebp 1.4.0 - license: BSD-3-Clause - license_family: BSD - size: 355099 - timestamp: 1713200298965 -- kind: conda - name: libwebp-base - version: 1.4.0 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.4.0-hcfcfb64_0.conda - sha256: d0ca51cb1de9192be9a3238e71fbcca5a535619c499c4f4c9b2ed41c14d36770 - md5: abd61d0ab127ec5cd68f62c2969e6f34 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - libwebp 1.4.0 - license: BSD-3-Clause - license_family: BSD - size: 274359 - timestamp: 1713200524021 -- kind: conda - name: libwebp-base - version: 1.4.0 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda - sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f - md5: b26e8aa824079e1be0294e7152ca4559 - depends: - - libgcc-ng >=12 - constrains: - - libwebp 1.4.0 - license: BSD-3-Clause - license_family: BSD - size: 438953 - timestamp: 1713199854503 -- kind: conda - name: libxcb - version: '1.15' - build: h0b41bf4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 - md5: 33277193f5b92bad9fdd230eb700929c - depends: - - libgcc-ng >=12 - - pthread-stubs - - xorg-libxau - - xorg-libxdmcp - license: MIT - license_family: MIT - size: 384238 - timestamp: 1682082368177 -- kind: conda - name: libxcb - version: '1.15' - build: hb7f2c08_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda - sha256: f41904f466acc8b3197f37f2dd3a08da75720c7f7464d9267635debc4ac1902b - md5: 5513f57e0238c87c12dffedbcc9c1a4a - depends: - - pthread-stubs - - xorg-libxau - - xorg-libxdmcp - license: MIT - license_family: MIT - size: 313793 - timestamp: 1682083036825 -- kind: conda - name: libxcb - version: '1.15' - build: hcd874cb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda - sha256: d01322c693580f53f8d07a7420cd6879289f5ddad5531b372c3efd1c37cac3bf - md5: 090d91b69396f14afef450c285f9758c - depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - pthread-stubs - - xorg-libxau - - xorg-libxdmcp - license: MIT - license_family: MIT - size: 969788 - timestamp: 1682083087243 -- kind: conda - name: libxcrypt - version: 4.4.36 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c - md5: 5aa797f8787fe7a17d1b0821485b5adc - depends: - - libgcc-ng >=12 - license: LGPL-2.1-or-later - size: 100393 - timestamp: 1702724383534 -- kind: conda - name: libxkbcommon - version: 1.7.0 - build: h662e7e4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.7.0-h662e7e4_0.conda - sha256: 3d97d7f964237f42452295d461afdbc51e93f72e2c80be516f56de80e3bb6621 - md5: b32c0da42b1f24a98577bb3d7fc0b995 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - libxml2 >=2.12.6,<3.0a0 - - xkeyboard-config - - xorg-libxau >=1.0.11,<2.0a0 - license: MIT/X11 Derivative - license_family: MIT - size: 593534 - timestamp: 1711303445595 -- kind: conda - name: libxml2 - version: 2.12.7 - build: h283a6d9_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h283a6d9_0.conda - sha256: e246fefa745b56c022063ba1b69ff2965f280c6eee3de9821184e7c8f2475eab - md5: 1451be68a5549561979125c1827b79ed - depends: - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 1615693 - timestamp: 1715606533379 -- kind: conda - name: libxml2 - version: 2.12.7 - build: h3e169fe_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-h3e169fe_0.conda - sha256: 88c3df35a981ae6dbdace4aba6f72e6b6767861925149ea47de07aae8c0cbe7b - md5: 4c04ba47fdd2ebecc1d3b6a77534d9ef - depends: - - __osx >=10.13 - - icu >=73.2,<74.0a0 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - xz >=5.2.6,<6.0a0 - license: MIT - license_family: MIT - size: 619612 - timestamp: 1715606442077 -- kind: conda - name: libxml2 - version: 2.12.7 - build: hc051c1a_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-hc051c1a_0.conda - sha256: 2d8c402687f7045295d78d66688b140e3310857c7a070bba7547a3b9fcad5e7d - md5: 5d801a4906adc712d480afc362623b59 - depends: - - icu >=73.2,<74.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - xz >=5.2.6,<6.0a0 - license: MIT - license_family: MIT - size: 705857 - timestamp: 1715606286167 -- kind: conda - name: libzip - version: 1.10.1 - build: h1d365fa_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libzip-1.10.1-h1d365fa_3.conda - sha256: 221698b52dd7a3dcfc67ff9460e9c8649fc6c86506a2a2ab6f57b97e7489bb9f - md5: 5c629cd12d89e2856c17b1dc5fcf44a4 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.2,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 146434 - timestamp: 1694417117772 -- kind: conda - name: libzip - version: 1.10.1 - build: h2629f0a_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda - sha256: 84e93f189072dcfcbe77744f19c7e4171523fbecfaba7352e5a23bbe014574c7 - md5: ac79812548e7e8cf61f7b0abdef01d3b - depends: - - bzip2 >=1.0.8,<2.0a0 - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.2,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 107198 - timestamp: 1694416433629 -- kind: conda - name: libzip - version: 1.10.1 - build: hc158999_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda - sha256: 0689e4a6e67e80027e43eefb8a365273405a01f5ab2ece97319155b8be5d64f6 - md5: 6112b3173f3aa2f12a8f40d07a77cc35 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.1.2,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 127599 - timestamp: 1694416738467 -- kind: conda - name: libzlib - version: 1.2.13 - build: h2466b09_6 - build_number: 6 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-h2466b09_6.conda - sha256: 97f47db85265b596d08c044b6533013b7286fb66259c77d04da76b74414c896e - md5: 9f41e3481778398837720a84dd26b7b1 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - zlib 1.2.13 *_6 - license: Zlib - license_family: Other - size: 56119 - timestamp: 1716874608785 -- kind: conda - name: libzlib - version: 1.2.13 - build: h4ab18f5_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h4ab18f5_6.conda - sha256: 8ced4afed6322172182af503f21725d072a589a6eb918f8a58135c1e00d35980 - md5: 27329162c0dc732bcf67a4e0cd488125 - depends: - - libgcc-ng >=12 - constrains: - - zlib 1.2.13 *_6 - license: Zlib - license_family: Other - size: 61571 - timestamp: 1716874066944 -- kind: conda - name: libzlib - version: 1.2.13 - build: h87427d6_6 - build_number: 6 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h87427d6_6.conda - sha256: 1c70fca0720685242b5c68956f310665c7ed43f04807aa4227322eee7925881c - md5: c0ef3c38a80c02ae1d86588c055184fc - depends: - - __osx >=10.13 - constrains: - - zlib 1.2.13 *_6 - license: Zlib - license_family: Other - size: 57373 - timestamp: 1716874185419 -- kind: conda - name: llvm-openmp - version: 18.1.6 - build: h15ab845_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.6-h15ab845_0.conda - sha256: b07be564a0539adc6f6e12b921469c925b37799e50a27a9dbe276115e9de689a - md5: 065f974bc7afcef3f94df56394e16154 - depends: - - __osx >=10.13 - constrains: - - openmp 18.1.6|18.1.6.* - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 300479 - timestamp: 1716753668057 -- kind: conda - name: llvmlite - version: 0.42.0 - build: py312h534208b_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/llvmlite-0.42.0-py312h534208b_1.conda - sha256: 507d3fb788a7a7fefcb9b4c5091331a961785503d7ecdd8ee83a57380f786d0c - md5: ac1d435c2f56e72746eb5d7ed4b2e1a1 - depends: - - libcxx >=16 - - libllvm14 >=14.0.6,<14.1.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - size: 373369 - timestamp: 1706921870859 -- kind: conda - name: llvmlite - version: 0.42.0 - build: py312h7894644_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/llvmlite-0.42.0-py312h7894644_1.conda - sha256: ecc36569c8c657e478bfd8673bd376581bef46197625ff59a1dc603060f30aa1 - md5: b0c8b1ebd145b7810cf30258115624ab - depends: - - libzlib >=1.2.13,<2.0.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - vs2015_runtime - license: BSD-2-Clause - license_family: BSD - size: 17125461 - timestamp: 1706922264652 -- kind: conda - name: llvmlite - version: 0.42.0 - build: py312hb06c811_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/llvmlite-0.42.0-py312hb06c811_1.conda - sha256: a2e0495effb5897c06a7407d4f318958643008dab270e54591086c2e8a3dc44b - md5: ae7c5ecce1fd0b7006149bd020421379 - depends: - - libgcc-ng >=12 - - libllvm14 >=14.0.6,<14.1.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - size: 3392211 - timestamp: 1706921771933 -- kind: conda - name: locket - version: 1.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 - sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 - md5: 91e27ef3d05cc772ce627e51cff111c4 - depends: - - python >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* - license: BSD-2-Clause - license_family: BSD - size: 8250 - timestamp: 1650660473123 -- kind: conda - name: loguru - version: 0.7.2 - build: py312h2e8e312_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_1.conda - sha256: ec36ae07a8b465965f8a91e1357af7f51049fbbadd57d6580da7935e16036c6e - md5: abed90ae66f8c890b36af7ad16e43697 - depends: - - colorama >=0.3.4 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - win32_setctime >=1.0.0 - license: MIT - license_family: MIT - size: 122681 - timestamp: 1695547648062 -- kind: conda - name: loguru - version: 0.7.2 - build: py312h7900ff3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_1.conda - sha256: 9e9a485360cfa551e63b2d0d0d6ea16142c68a68925616baf421e99c97ebdc2b - md5: 507696b7c888a8b872b50f24ac860089 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 123004 - timestamp: 1695547510797 -- kind: conda - name: loguru - version: 0.7.2 - build: py312hb401068_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.7.2-py312hb401068_1.conda - sha256: 220d6974241020d2f06c05bfae1a52d9e667c4b8f3d64cf00bdbe43b92ec357f - md5: 69e6d01be6897050857cd4814b3ff6ab - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 123244 - timestamp: 1695547657622 -- kind: conda - name: lz4 - version: 4.3.3 - build: py312h03f37cb_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.3-py312h03f37cb_0.conda - sha256: 6180f0b0c56fa49064291f76b3e4b1b84f3de58aab1264a94cb200f5f46b0178 - md5: 8465027beab0db69006f744be7fb3fb6 - depends: - - libgcc-ng >=12 - - lz4-c >=1.9.3,<1.10.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 39409 - timestamp: 1704831318655 -- kind: conda - name: lz4 - version: 4.3.3 - build: py312h594ca44_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lz4-4.3.3-py312h594ca44_0.conda - sha256: c1b699016e3334bf2c475a60c84b31770dd3e4b2cc5eb4b1a0ecf2689cb7d57e - md5: cc004e8b6d7a876f0d541d864d14064c - depends: - - lz4-c >=1.9.3,<1.10.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 77168 - timestamp: 1704831874480 -- kind: conda - name: lz4 - version: 4.3.3 - build: py312h904eaf1_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lz4-4.3.3-py312h904eaf1_0.conda - sha256: d6761866789708afc396897fe505c52056917d00bb5745f91aa22b4dd8af8d07 - md5: 3d5b987b4090e9dc8ad65c0d536d34ce - depends: - - lz4-c >=1.9.3,<1.10.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 36016 - timestamp: 1704831559047 -- kind: conda - name: lz4-c - version: 1.9.4 - build: hcb278e6_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f - md5: 318b08df404f9c9be5712aaa5a6f0bb0 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 143402 - timestamp: 1674727076728 -- kind: conda - name: lz4-c - version: 1.9.4 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda - sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab - md5: e34720eb20a33fc3bfb8451dd837ab7a - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vs2015_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 134235 - timestamp: 1674728465431 -- kind: conda - name: lz4-c - version: 1.9.4 - build: hf0c8a7f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - sha256: 39aa0c01696e4e202bf5e337413de09dfeec061d89acd5f28e9968b4e93c3f48 - md5: aa04f7143228308662696ac24023f991 - depends: - - libcxx >=14.0.6 - license: BSD-2-Clause - license_family: BSD - size: 156415 - timestamp: 1674727335352 -- kind: conda - name: lzo - version: '2.10' - build: h10d778d_1001 - build_number: 1001 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda - sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 - md5: bfecd73e4a2dc18ffd5288acf8a212ab - license: GPL-2.0-or-later - license_family: GPL2 - size: 146405 - timestamp: 1713516112292 -- kind: conda - name: lzo - version: '2.10' - build: hcfcfb64_1001 - build_number: 1001 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda - sha256: 39e176b8cc8fe878d87594fae0504c649d1c2c6d5476dd7238237d19eb825751 - md5: 629f4f4e874cf096eb93a23240910cee - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: GPL-2.0-or-later - license_family: GPL2 - size: 142771 - timestamp: 1713516312465 -- kind: conda - name: lzo - version: '2.10' - build: hd590300_1001 - build_number: 1001 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda - sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 - md5: ec7398d21e2651e0dcb0044d03b9a339 - depends: - - libgcc-ng >=12 - license: GPL-2.0-or-later - license_family: GPL2 - size: 171416 - timestamp: 1713515738503 -- kind: conda - name: m2w64-gcc-libgfortran - version: 5.3.0 - build: '6' - build_number: 6 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 - sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 - md5: 066552ac6b907ec6d72c0ddab29050dc - depends: - - m2w64-gcc-libs-core - - msys2-conda-epoch ==20160418 - license: GPL, LGPL, FDL, custom - size: 350687 - timestamp: 1608163451316 -- kind: conda - name: m2w64-gcc-libs - version: 5.3.0 - build: '7' - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 - sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa - md5: fe759119b8b3bfa720b8762c6fdc35de - depends: - - m2w64-gcc-libgfortran - - m2w64-gcc-libs-core - - m2w64-gmp - - m2w64-libwinpthread-git - - msys2-conda-epoch ==20160418 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 532390 - timestamp: 1608163512830 -- kind: conda - name: m2w64-gcc-libs-core - version: 5.3.0 - build: '7' - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 - md5: 4289d80fb4d272f1f3b56cfe87ac90bd - depends: - - m2w64-gmp - - m2w64-libwinpthread-git - - msys2-conda-epoch ==20160418 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 219240 - timestamp: 1608163481341 -- kind: conda - name: m2w64-gmp - version: 6.1.0 - build: '2' - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 - md5: 53a1c73e1e3d185516d7e3af177596d9 - depends: - - msys2-conda-epoch ==20160418 - license: LGPL3 - size: 743501 - timestamp: 1608163782057 -- kind: conda - name: m2w64-libwinpthread-git - version: 5.0.0.4634.697f757 - build: '2' - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 - md5: 774130a326dee16f1ceb05cc687ee4f0 - depends: - - msys2-conda-epoch ==20160418 - license: MIT, BSD - size: 31928 - timestamp: 1608166099896 -- kind: conda - name: mapclassify - version: 2.6.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda - sha256: 204ab8b242229d422b33cfec07ea61cefa8bd22375a16658afbabaafce031d64 - md5: 6aceae1ad4f16cf7b73ee04189947f98 - depends: - - networkx >=2.7 - - numpy >=1.23 - - pandas >=1.4,!=1.5.0 - - python >=3.9 - - scikit-learn >=1.0 - - scipy >=1.8 - license: BSD-3-Clause - license_family: BSD - size: 38684 - timestamp: 1696563711967 -- kind: conda - name: markdown-it-py - version: 3.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 - md5: 93a8e71256479c62074356ef6ebf501b - depends: - - mdurl >=0.1,<1 - - python >=3.8 - license: MIT - license_family: MIT - size: 64356 - timestamp: 1686175179621 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py312h41838bb_0.conda - sha256: 8dc8f31f78d00713300da000b6ebaa1943a17c112f267de310d5c3d82950079c - md5: c4a9c25c09cef3901789ca818d9beb10 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 25742 - timestamp: 1706900456837 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda - sha256: 273d8efd6c089c534ccbede566394c0ac1e265bfe5d89fe76e80332f3d75a636 - md5: 6ff0b9582da2d4a74a1f9ae1f9ce2af6 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 26685 - timestamp: 1706900070330 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py312he70551f_0.conda - sha256: f8690a3c87e2e96cebd434a829bb95cac43afe6c439530b336dc3452fe4ce4af - md5: 4950a739b19edaac1ed29ca9474e49ac - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 29060 - timestamp: 1706900374745 -- kind: conda - name: matplotlib-base - version: 3.8.4 - build: py312h20ab3a6_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda - sha256: a927afa9e4b5cf7889b5a82ef2286b089873f402a0d0e10e6adb4cbf820a4db9 - md5: fbfe798f83f0d66410903ad8f40d5283 - depends: - - certifi >=2020.06.20 - - contourpy >=1.0.1 - - cycler >=0.10 - - fonttools >=4.22.0 - - freetype >=2.12.1,<3.0a0 - - kiwisolver >=1.3.1 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - numpy >=1.19,<3 - - numpy >=1.21 - - packaging >=20.0 - - pillow >=8 - - pyparsing >=2.3.1 - - python >=3.12,<3.13.0a0 - - python-dateutil >=2.7 - - python_abi 3.12.* *_cp312 - - tk >=8.6.13,<8.7.0a0 - license: PSF-2.0 - license_family: PSF - size: 7762905 - timestamp: 1715976444870 -- kind: conda - name: matplotlib-base - version: 3.8.4 - build: py312hb6d62fa_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.8.4-py312hb6d62fa_2.conda - sha256: 98a4ab9355a473a291c826d7536c0e864adc06d9e846507d100a74a1d690ddce - md5: 6c5cf505d118f4b58961191fd5e0d030 - depends: - - __osx >=10.13 - - certifi >=2020.06.20 - - contourpy >=1.0.1 - - cycler >=0.10 - - fonttools >=4.22.0 - - freetype >=2.12.1,<3.0a0 - - kiwisolver >=1.3.1 - - libcxx >=16 - - numpy >=1.19,<3 - - numpy >=1.21 - - packaging >=20.0 - - pillow >=8 - - pyparsing >=2.3.1 - - python >=3.12,<3.13.0a0 - - python-dateutil >=2.7 - - python_abi 3.12.* *_cp312 - license: PSF-2.0 - license_family: PSF - size: 7775938 - timestamp: 1715976578635 -- kind: conda - name: matplotlib-base - version: 3.8.4 - build: py312hfee7060_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda - sha256: 023644d13bf1fab7c58f4df0d461cd237874802b0e7370ad049463d39d2fb2f4 - md5: 6b623fa66ac3cd1601da60160c46514b - depends: - - certifi >=2020.06.20 - - contourpy >=1.0.1 - - cycler >=0.10 - - fonttools >=4.22.0 - - freetype >=2.12.1,<3.0a0 - - kiwisolver >=1.3.1 - - numpy >=1.19,<3 - - numpy >=1.21 - - packaging >=20.0 - - pillow >=8 - - pyparsing >=2.3.1 - - python >=3.12,<3.13.0a0 - - python-dateutil >=2.7 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: PSF-2.0 - license_family: PSF - size: 7807157 - timestamp: 1715976971476 -- kind: conda - name: matplotlib-inline - version: 0.1.7 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - sha256: 7ea68676ea35fbb095420bbcc1c82c4767b8be7bb56abb6989b7f89d957a3bab - md5: 779345c95648be40d22aaa89de7d4254 - depends: - - python >=3.6 - - traitlets - license: BSD-3-Clause - license_family: BSD - size: 14599 - timestamp: 1713250613726 -- kind: conda - name: mdurl - version: 0.1.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - sha256: 64073dfb6bb429d52fff30891877b48c7ec0f89625b1bf844905b66a81cce6e1 - md5: 776a8dd9e824f77abac30e6ef43a8f7a - depends: - - python >=3.6 - license: MIT - license_family: MIT - size: 14680 - timestamp: 1704317789138 -- kind: conda - name: mercantile - version: 1.2.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/mercantile-1.2.1-pyhd8ed1ab_0.tar.bz2 - sha256: 372275c3b0b0e5028cd25a87a23b23311b3412e556f8ee1768473e7634fb94ea - md5: aa20d014b5bd1924727dd86467648a27 - depends: - - click >=3.0 - - python >=3.6 - - setuptools - license: BSD-3-Clause - license_family: BSD - size: 17614 - timestamp: 1619028531085 -- kind: conda - name: metis - version: 5.1.1 - build: h59595ed_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda - sha256: d8b9f76bb61ee19217f263824f1c6534e606313a84fbfdb3715b572e1f14aa3f - md5: 9ba5910c34210e7ad60736d172bbcd4c - depends: - - libgcc-ng >=12 - license: Apache-2.0 - license_family: APACHE - size: 3921996 - timestamp: 1698847331492 -- kind: conda - name: metis - version: 5.1.1 - build: h63175ca_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/metis-5.1.1-h63175ca_2.conda - sha256: 67ff551fa681a9967ce0e9040ad31a0cfc690607ad9434e7d476577d4565102e - md5: 66348b231db2dfc0f8f5f453462d4da2 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 4096907 - timestamp: 1698848042467 -- kind: conda - name: metis - version: 5.1.1 - build: h73e2aa4_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda - sha256: 522bab6afc78cf858b19e89f8f01c092a1559ebdc4e41f5909684b4ad6375ee0 - md5: f3a60f050e50631cc20a51c47d70d1b1 - license: Apache-2.0 - license_family: APACHE - size: 3895456 - timestamp: 1705681589772 -- kind: conda - name: minizip - version: 4.0.5 - build: h0ab5242_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda - sha256: 1a56549751f4c4a7998e0a8bcff367c3992cb832c0b211d775cfd644e1ef5e6b - md5: 557396140c71eba588e96d597e0c61aa - depends: - - bzip2 >=1.0.8,<2.0a0 - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Zlib - license_family: Other - size: 91279 - timestamp: 1709725664431 -- kind: conda - name: minizip - version: 4.0.5 - build: h37d7099_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.5-h37d7099_0.conda - sha256: 426f4db1d56cdefa478a5ece35ed7624860548ace87d6ad927c4c9c6a7a20fec - md5: 2203b2e83c20305b3d669556c345c8e9 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libcxx >=16 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Zlib - license_family: Other - size: 78099 - timestamp: 1709726140187 -- kind: conda - name: minizip - version: 4.0.5 - build: h5bed578_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/minizip-4.0.5-h5bed578_0.conda - sha256: 3b77d2f3e71df522e88e1ec4e30742257523ff3e42a4ae0d6c9c7605b4aa6e54 - md5: acd216ec6d40c7e05991dccc4f9165f2 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Zlib - license_family: Other - size: 85264 - timestamp: 1709726113246 -- kind: conda - name: mistune - version: 3.0.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - sha256: f95cb70007e3cc2ba44e17c29a056b499e6dadf08746706d0c817c8e2f47e05c - md5: 5cbee699846772cc939bef23a0d524ed - depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 66022 - timestamp: 1698947249750 -- kind: conda - name: mkl - version: 2024.1.0 - build: h66d3029_692 - build_number: 692 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.1.0-h66d3029_692.conda - sha256: abfdb5eb3a17af59a827ea49fcb4d2bf18e70b62498bf3720351962e636cb5b7 - md5: b43ec7ed045323edeff31e348eea8652 - depends: - - intel-openmp 2024.* - - tbb 2021.* - license: LicenseRef-ProprietaryIntel - license_family: Proprietary - size: 109491063 - timestamp: 1712153746272 -- kind: conda - name: modflow6 - version: 6.5.0 - build: h47e962c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/modflow6-6.5.0-h47e962c_0.conda - sha256: d2460cfbf3e221db66c395be14f76cdfc59340730534597a6ff5f69185f47681 - md5: bbe5d3bb9dd12129a1724e93d05f0a27 - depends: - - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - license: CC0-1.0 - license_family: CC - size: 3492664 - timestamp: 1716597940182 -- kind: conda - name: mpg123 - version: 1.32.6 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.6-h59595ed_0.conda - sha256: 8895a5ce5122a3b8f59afcba4b032f198e8a690a0efc95ef61f2135357ef0d72 - md5: 9160cdeb523a1b20cf8d2a0bf821f45d - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: LGPL-2.1-only - license_family: LGPL - size: 491811 - timestamp: 1712327176955 -- kind: conda - name: msgpack-python - version: 1.0.8 - build: py312h2492b07_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.8-py312h2492b07_0.conda - sha256: 3761f57834ae20e49b4665b341057cf8ac2641d6f87e76d3d5cc615bc0dae8cc - md5: 0df463266eaaa1b8a35f8fd26368c1a1 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - size: 103653 - timestamp: 1715670786268 -- kind: conda - name: msgpack-python - version: 1.0.8 - build: py312hc3c9ca0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.8-py312hc3c9ca0_0.conda - sha256: d48287594d4c4a9323deb2f505c52f53f757981d4d16b22231f8831bd22349bf - md5: 87927f3f0037c19ac74ac3f820c26bd1 - depends: - - __osx >=10.13 - - libcxx >=16 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - size: 91736 - timestamp: 1715670793021 -- kind: conda - name: msgpack-python - version: 1.0.8 - build: py312hd5eb7cc_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.8-py312hd5eb7cc_0.conda - sha256: 080fad891281a38ff05d417ed4aa59b093d7c5fbb232cd3498dc100baacd8e44 - md5: 83bdd6554fb4bf25195c0dacabeeebf3 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 88758 - timestamp: 1715671314905 -- kind: conda - name: msys2-conda-epoch - version: '20160418' - build: '1' - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 - md5: b0309b72560df66f71a9d5e34a5efdfa - size: 3227 - timestamp: 1608166968312 -- kind: conda - name: multidict - version: 6.0.5 - build: py312h97956c7_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.5-py312h97956c7_0.conda - sha256: fe408d289a8e39d0a2a2e590d03421e1f7dd83e2936297bd3f5c43a6ee86f458 - md5: 4b6f7537d79a75053c8fd79cb5bc5f13 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: APACHE - size: 54796 - timestamp: 1707040990013 -- kind: conda - name: multidict - version: 6.0.5 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.5-py312h98912ed_0.conda - sha256: 27f085bde8e70f20196934ceeb0e1b9d3f2c67a5a24c688c3050d50ac0125eb4 - md5: d0d2cab29d6c33c47f719d7a1879e08b - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: APACHE - size: 60885 - timestamp: 1707040940299 -- kind: conda - name: multidict - version: 6.0.5 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.5-py312he70551f_0.conda - sha256: df1066ce4014fd6ff2fb3c7a767e6d073d2c0deb30230d6f2f4981e4ed007f57 - md5: 9db8fc5a5cc88db18dadbc2401dfa90a - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 55956 - timestamp: 1707041448541 -- kind: conda - name: multimethod - version: 1.9.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/multimethod-1.9.1-pyhd8ed1ab_0.conda - sha256: 7fcfda7b4a1d74205fcfdefd93804226a6eaffc74a319414c7d8d88f9249db3b - md5: 48223af3f697ccd9b114adb6a66e0f11 - depends: - - python >=3.6 - license: Apache-2.0 - license_family: APACHE - size: 14782 - timestamp: 1677278842704 -- kind: conda - name: munkres - version: 1.1.4 - build: pyh9f0ad1d_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - depends: - - python - license: Apache-2.0 - license_family: Apache - size: 12452 - timestamp: 1600387789153 -- kind: conda - name: mypy_extensions - version: 1.0.0 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - depends: - - python >=3.5 - license: MIT - license_family: MIT - size: 10492 - timestamp: 1675543414256 -- kind: conda - name: mysql-common - version: 8.0.33 - build: h1d20c9b_6 - build_number: 6 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.0.33-h1d20c9b_6.conda - sha256: b6b18aeed435d4075b4aac3559a070a6caa5a174a339e8de87785fca2f8f57a6 - md5: ad07fbd8dc7992e5e004f7bdfdee246d - depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - openssl >=3.1.4,<4.0a0 - size: 763190 - timestamp: 1698938422063 -- kind: conda - name: mysql-common - version: 8.0.33 - build: hf1915f5_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_6.conda - sha256: c8b2c5c9d0d013a4f6ef96cb4b339bfdc53a74232d8c61ed08178e5b1ec4eb63 - md5: 80bf3b277c120dd294b51d404b931a75 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.1.4,<4.0a0 - size: 753467 - timestamp: 1698937026421 -- kind: conda - name: mysql-libs - version: 8.0.33 - build: hca2cd23_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_6.conda - sha256: 78c905637dac79b197395065c169d452b8ca2a39773b58e45e23114f1cb6dcdb - md5: e87530d1b12dd7f4e0f856dc07358d60 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - mysql-common 8.0.33 hf1915f5_6 - - openssl >=3.1.4,<4.0a0 - - zstd >=1.5.5,<1.6.0a0 - size: 1530126 - timestamp: 1698937116126 -- kind: conda - name: mysql-libs - version: 8.0.33 - build: hed35180_6 - build_number: 6 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.0.33-hed35180_6.conda - sha256: 87d754167fddf342b894e377fdcaac096c93c941773267ad9c89bb7b64924a33 - md5: c27fddc4d3c2d471d1d706b243570f37 - depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - libzlib >=1.2.13,<2.0.0a0 - - mysql-common 8.0.33 h1d20c9b_6 - - openssl >=3.1.4,<4.0a0 - - zstd >=1.5.5,<1.6.0a0 - size: 1493906 - timestamp: 1698938538673 -- kind: conda - name: nbclient - version: 0.10.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - sha256: 589d72d36d61a23b39d6fff2c488f93e29e20de4fc6f5d315b5f2c16e81028bf - md5: 15b51397e0fe8ea7d7da60d83eb76ebc - depends: - - jupyter_client >=6.1.12 - - jupyter_core >=4.12,!=5.0.* - - nbformat >=5.1 - - python >=3.8 - - traitlets >=5.4 - license: BSD-3-Clause - license_family: BSD - size: 27851 - timestamp: 1710317767117 -- kind: conda - name: nbconvert-core - version: 7.16.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_0.conda - sha256: aa5bf61e42c63cec2b2c33e66cd0bb064846d62dd60f6ac62ae0d2bf17583900 - md5: 43d9cd74e3950ab09cbddf36f1706b9f - depends: - - 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 - constrains: - - pandoc >=2.9.2,<4.0.0 - - nbconvert =7.16.4=*_0 - license: BSD-3-Clause - license_family: BSD - size: 189004 - timestamp: 1714477286178 -- kind: conda - name: nbformat - version: 5.10.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda - sha256: 36fe73da4d37bc7ac2d1540526ecd294fbd09acda04e096181ab8f1ccd2b464c - md5: 0b57b5368ab7fc7cdc9e3511fa867214 - depends: - - jsonschema >=2.6 - - jupyter_core >=4.12,!=5.0.* - - python >=3.8 - - python-fastjsonschema >=2.15 - - traitlets >=5.1 - license: BSD-3-Clause - license_family: BSD - size: 101232 - timestamp: 1712239122969 -- kind: conda - name: ncurses - version: '6.5' - build: h5846eda_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda - sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 - md5: 02a888433d165c99bf09784a7b14d900 - license: X11 AND BSD-3-Clause - size: 823601 - timestamp: 1715195267791 -- kind: conda - name: ncurses - version: '6.5' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda - sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 - md5: fcea371545eda051b6deafb24889fc69 - depends: - - libgcc-ng >=12 - license: X11 AND BSD-3-Clause - size: 887465 - timestamp: 1715194722503 -- kind: conda - name: nest-asyncio - version: 1.6.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda - sha256: 30db21d1f7e59b3408b831a7e0417b83b53ee6223afae56482c5f26da3ceb49a - md5: 6598c056f64dc8800d40add25e4e2c34 - depends: - - python >=3.5 - license: BSD-2-Clause - license_family: BSD - size: 11638 - timestamp: 1705850780510 -- kind: conda - name: netcdf4 - version: 1.6.5 - build: nompi_py312h2188312_101 - build_number: 101 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/netcdf4-1.6.5-nompi_py312h2188312_101.conda - sha256: 35e827b36447a0c0a86c7e55e24d9a7810f484bc9953f6b4b3f06d95479c2e48 - md5: f41ccc769fd04084a507e9f03c28e2ef - depends: - - certifi - - cftime - - hdf5 >=1.14.3,<1.14.4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 417746 - timestamp: 1715940208443 -- kind: conda - name: netcdf4 - version: 1.6.5 - build: nompi_py312h39d4375_101 - build_number: 101 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.6.5-nompi_py312h39d4375_101.conda - sha256: 8f7d27f14fd08ae7cf8d8ad21566ce45b2d38fc4c66d6a38951abbed934d62cd - md5: 9033de6c10fd3396990890d8d8a6ac4e - depends: - - certifi - - cftime - - hdf5 >=1.14.3,<1.14.4.0a0 - - libgcc-ng >=12 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools - license: MIT - license_family: MIT - size: 554989 - timestamp: 1715939300923 -- kind: conda - name: netcdf4 - version: 1.6.5 - build: nompi_py312hb3bfefa_101 - build_number: 101 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.6.5-nompi_py312hb3bfefa_101.conda - sha256: 00e149911623eb4a34043f8d573057c78dede3e3da81eaa4ebb4d2fa5bdef572 - md5: e4957590a3b3b659de0429f46e55bb43 - depends: - - __osx >=10.13 - - certifi - - cftime - - hdf5 >=1.14.3,<1.14.4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools - license: MIT - license_family: MIT - size: 460301 - timestamp: 1715939044416 -- kind: conda - name: nettle - version: 3.9.1 - build: h7ab15ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda - sha256: 1ef1b7efa69c7fb4e2a36a88316f307c115713698d1c12e19f55ae57c0482995 - md5: 2bf1915cc107738811368afcb0993a59 - depends: - - libgcc-ng >=12 - license: GPL 2 and LGPL3 - license_family: GPL - size: 1011638 - timestamp: 1686309814836 -- kind: conda - name: nettle - version: 3.9.1 - build: h8e11ae5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.9.1-h8e11ae5_0.conda - sha256: 62de51fc44f1595a06c5b24bb717b949b4b9fb4c4acaf127b92ce99ddb546ca7 - md5: 400dffe5d2fbb9813b51948d3e9e9ab1 - license: GPL 2 and LGPL3 - license_family: GPL - size: 509519 - timestamp: 1686310097670 -- kind: conda - name: networkx - version: '3.3' - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.3-pyhd8ed1ab_1.conda - sha256: cbd8a6de87ad842e7665df38dcec719873fe74698bc761de5431047b8fada41a - md5: d335fd5704b46f4efb89a6774e81aef0 - depends: - - python >=3.10 - constrains: - - pandas >=1.4 - - numpy >=1.22 - - matplotlib >=3.5 - - scipy >=1.9,!=1.11.0,!=1.11.1 - license: BSD-3-Clause - license_family: BSD - size: 1185670 - timestamp: 1712540499262 -- kind: conda - name: nlohmann_json - version: 3.11.3 - build: h1537add_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/nlohmann_json-3.11.3-h1537add_0.conda - sha256: 62d47c5411e3870cb766a9dfcccf095203454894121f68798c122b4b19a83c7d - md5: 9e7f685b4ef5d4685249571bde5cf6a2 - depends: - - ucrt >=10.0.20348.0 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 124457 - timestamp: 1710904523077 -- kind: conda - name: nlohmann_json - version: 3.11.3 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.3-h59595ed_0.conda - sha256: cb6ac3e7ea49c07348384ce55766282bb2f665be1d5cdbd8396128d6eb34ddd4 - md5: df9ae69b85e0cab9bde23eff1e87f183 - license: MIT - license_family: MIT - size: 123069 - timestamp: 1710905127322 -- kind: conda - name: nlohmann_json - version: 3.11.3 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.11.3-h73e2aa4_0.conda - sha256: d7f60d7a5a2ede0d8e634f3b414f93cff3d8b8f832bd45d755316e7377182163 - md5: 7e82f8ccb0f18ad05ef405369263937d - license: MIT - license_family: MIT - size: 122967 - timestamp: 1710905156326 -- kind: conda - name: nodeenv - version: 1.8.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda - sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd - md5: 2a75b296096adabbabadd5e9782e5fcc - depends: - - python 2.7|>=3.7 - - setuptools - license: BSD-3-Clause - license_family: BSD - size: 34358 - timestamp: 1683893151613 -- kind: conda - name: notebook-shim - version: 0.2.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - sha256: 9b5fdef9ebe89222baa9da2796ebe7bc02ec6c5a1f61327b651d6b92cf9a0230 - md5: 3d85618e2c97ab896b5b5e298d32b5b3 - depends: - - jupyter_server >=1.8,<3 - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 16880 - timestamp: 1707957948029 -- kind: conda - name: nspr - version: '4.35' - build: h27087fc_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - md5: da0ec11a6454ae19bff5b02ed881a2b1 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MPL-2.0 - license_family: MOZILLA - size: 226848 - timestamp: 1669784948267 -- kind: conda - name: nspr - version: '4.35' - build: hea0b92c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda - sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de - md5: a9e56c98d13d8b7ce72bf4357317c29b - depends: - - libcxx >=14.0.6 - license: MPL-2.0 - license_family: MOZILLA - size: 230071 - timestamp: 1669785313586 -- kind: conda - name: nss - version: '3.100' - build: h6606ded_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.100-h6606ded_0.conda - sha256: 694ab59a00e6ebb17816124d6d71dcb9b7bac1ad0d1963c918d58841cded51c8 - md5: 614b1b9b0a0b1bfbfa9d04a10afa4240 - depends: - - __osx >=10.13 - - libcxx >=16 - - libsqlite >=3.45.3,<4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - nspr >=4.35,<5.0a0 - license: MPL-2.0 - license_family: MOZILLA - size: 1941938 - timestamp: 1715185031068 -- kind: conda - name: nss - version: '3.100' - build: hca3bf56_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.100-hca3bf56_0.conda - sha256: a4146d2b6636999a21afcaf957029d066637bf26239fd3170242501e38fb1fa4 - md5: 949c4a82290ee58b3c970cef4bcfd4ad - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libsqlite >=3.45.3,<4.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - nspr >=4.35,<5.0a0 - license: MPL-2.0 - license_family: MOZILLA - size: 2047723 - timestamp: 1715184444840 -- kind: conda - name: numba - version: 0.59.1 - build: py312h04e34b5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/numba-0.59.1-py312h04e34b5_0.conda - sha256: e4bc3426d6b023c121328e6a9878ec35a71487bc1cb3424f96d9f2808ad0ee43 - md5: 46499b9d015d01c22ceb1c37e1dc6ccc - depends: - - libcxx >=16 - - llvm-openmp >=16.0.6 - - llvm-openmp >=18.1.2 - - llvmlite >=0.42.0,<0.43.0a0 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - tbb >=2021.6.0 - - cudatoolkit >=11.2 - - numpy >=1.22.3,<1.27 - - cuda-version >=11.2 - - cuda-python >=11.6 - - scipy >=1.0 - - libopenblas !=0.3.6 - license: BSD-2-Clause - license_family: BSD - size: 5586866 - timestamp: 1711475677299 -- kind: conda - name: numba - version: 0.59.1 - build: py312h115d327_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/numba-0.59.1-py312h115d327_0.conda - sha256: 9a04cfd0886170036bdbc3c2b3e4805e8629c126c0b55e498e3401d4aee9331c - md5: 514d477e6114b692d400ed23deb73348 - depends: - - llvmlite >=0.42.0,<0.43.0a0 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - tbb >=2021.6.0 - - cuda-version >=11.2 - - cudatoolkit >=11.2 - - scipy >=1.0 - - numpy >=1.22.3,<1.27 - - libopenblas !=0.3.6 - - cuda-python >=11.6 - license: BSD-2-Clause - license_family: BSD - size: 5591106 - timestamp: 1711475839209 -- kind: conda - name: numba - version: 0.59.1 - build: py312hacefee8_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/numba-0.59.1-py312hacefee8_0.conda - sha256: 13445a4ea0677336aa882c519f31ce397cbb5ac848adc68b0c951ca038784562 - md5: 84c93029c60916c59a914a3ba579c4a8 - depends: - - _openmp_mutex >=4.5 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - llvmlite >=0.42.0,<0.43.0a0 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - cuda-version >=11.2 - - numpy >=1.22.3,<1.27 - - libopenblas !=0.3.6 - - tbb >=2021.6.0 - - scipy >=1.0 - - cuda-python >=11.6 - - cudatoolkit >=11.2 - license: BSD-2-Clause - license_family: BSD - size: 5613943 - timestamp: 1711475331686 -- kind: conda - name: numba_celltree - version: 0.1.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/numba_celltree-0.1.6-pyhd8ed1ab_0.conda - sha256: 0ecb9c31a9d6cc23c9099c391ca14645f9b0118f5a22818c88b5091e3d0d27b2 - md5: fa93424676054b2d1fcc7864c4e68698 - depends: - - numba >=0.50 - - numpy - - python >=3.7 - license: MIT - license_family: MIT - size: 32808 - timestamp: 1672825982456 -- kind: conda - name: numcodecs - version: 0.12.1 - build: py312h275cf98_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.12.1-py312h275cf98_1.conda - sha256: abcf06e634c0729e2a2cf7fadc536b042dbb386e469598f6d95121c7497f2a95 - md5: e09dab88852f0bc1fd718506dbc034a7 - depends: - - msgpack-python - - numpy >=1.7 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 478282 - timestamp: 1715219460200 -- kind: conda - name: numcodecs - version: 0.12.1 - build: py312h28f332c_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/numcodecs-0.12.1-py312h28f332c_1.conda - sha256: 3cb1ba24b9de00af3c599a4443ed0624f72ba126f1d1ef6ec6354d03bf645b82 - md5: 265d05a62a6fe50d2f2bc3d986201508 - depends: - - __osx >=10.13 - - libcxx >=16 - - msgpack-python - - numpy >=1.7 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 732774 - timestamp: 1715219066906 -- kind: conda - name: numcodecs - version: 0.12.1 - build: py312h7070661_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.12.1-py312h7070661_1.conda - sha256: 2ae31a7648cc19c4f08ce2452b29098bb68964e4bb6030fbcddfebd6a93bb314 - md5: f626b23f60d6dfb199a7102aa2f2a8b8 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - msgpack-python - - numpy >=1.7 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 773489 - timestamp: 1715219092823 -- kind: conda - name: numpy - version: 1.26.4 - build: py312h8753938_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda - sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef - md5: f9ac74c3b07c396014434aca1e58d362 - depends: - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - numpy-base <0a0 - license: BSD-3-Clause - license_family: BSD - size: 6495445 - timestamp: 1707226412944 -- kind: conda - name: numpy - version: 1.26.4 - build: py312he3a82b2_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py312he3a82b2_0.conda - sha256: 6152b73fba3e227afa4952df8753128fc9669bbaf142ee8f9972bf9df3bf8856 - md5: 96c61a21c4276613748dba069554846b - depends: - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - - libcxx >=16 - - liblapack >=3.9.0,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - numpy-base <0a0 - license: BSD-3-Clause - license_family: BSD - size: 6990646 - timestamp: 1707226178262 -- kind: conda - name: numpy - version: 1.26.4 - build: py312heda63a1_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda - sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 - md5: d8285bea2a350f63fab23bf460221f3f - depends: - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - - libgcc-ng >=12 - - liblapack >=3.9.0,<4.0a0 - - libstdcxx-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - numpy-base <0a0 - license: BSD-3-Clause - license_family: BSD - size: 7484186 - timestamp: 1707225809722 -- kind: conda - name: ocl-icd - version: 2.3.2 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda - sha256: 0e01384423e48e5011eb6b224da8dc5e3567c87dbcefbe60cd9d5cead276cdcd - md5: c66f837ac65e4d1cdeb80e2a1d5fcc3d - depends: - - libgcc-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 135681 - timestamp: 1710946531879 -- kind: conda - name: openh264 - version: 2.4.1 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda - sha256: 0d4eaf15fb771f25c924aef831d76eea11d90c824778fc1e7666346e93475f42 - md5: 3dfcf61b8e78af08110f5229f79580af - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 735244 - timestamp: 1706873814072 -- kind: conda - name: openh264 - version: 2.4.1 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/openh264-2.4.1-h63175ca_0.conda - sha256: 37c954a1235531499c45439c602dda6f788e3683795e12fb6e1e4c86074386c7 - md5: 01d1a98fd9ac45d49040ad8cdd62083a - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 409185 - timestamp: 1706874444698 -- kind: conda - name: openh264 - version: 2.4.1 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.4.1-h73e2aa4_0.conda - sha256: 4e660e62225815dd996788ed08dc50870e387c159f31d65cd8b677988dfb387b - md5: 877f116d9a4f8b826b0e1d427ac00871 - depends: - - libcxx >=16 - license: BSD-2-Clause - license_family: BSD - size: 660428 - timestamp: 1706874091051 -- kind: conda - name: openjpeg - version: 2.5.2 - build: h3d672ee_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda - sha256: dda71cbe094234ab208f3552dec1f4ca6f2e614175d010808d6cb66ecf0bc753 - md5: 7e7099ad94ac3b599808950cec30ad4e - depends: - - libpng >=1.6.43,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 237974 - timestamp: 1709159764160 -- kind: conda - name: openjpeg - version: 2.5.2 - build: h488ebb8_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda - sha256: 5600a0b82df042bd27d01e4e687187411561dfc11cc05143a08ce29b64bf2af2 - md5: 7f2e286780f072ed750df46dc2631138 - depends: - - libgcc-ng >=12 - - libpng >=1.6.43,<1.7.0a0 - - libstdcxx-ng >=12 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - license: BSD-2-Clause - license_family: BSD - size: 341592 - timestamp: 1709159244431 -- kind: conda - name: openjpeg - version: 2.5.2 - build: h7310d3a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda - sha256: dc9c405119b9b54f8ca5984da27ba498bd848ab4f0f580da6f293009ca5adc13 - md5: 05a14cc9d725dd74995927968d6547e3 - depends: - - libcxx >=16 - - libpng >=1.6.43,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - license: BSD-2-Clause - license_family: BSD - size: 331273 - timestamp: 1709159538792 -- kind: conda - name: openssl - version: 3.3.0 - build: h2466b09_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.0-h2466b09_3.conda - sha256: 11b2513fceb20102bdc7f7656a59005acb9ecd0886b7cbfb9c13c2c953f2429b - md5: d7fec5d3bb8fc0c8e266bf1ad350cec5 - depends: - - ca-certificates - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 8368468 - timestamp: 1716471282135 -- kind: conda - name: openssl - version: 3.3.0 - build: h4ab18f5_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.0-h4ab18f5_3.conda - sha256: 33dcea0ed3a61b2de6b66661cdd55278640eb99d676cd129fbff3e53641fa125 - md5: 12ea6d0d4ed54530eaed18e4835c1f7c - depends: - - ca-certificates - - libgcc-ng >=12 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2891147 - timestamp: 1716468354865 -- kind: conda - name: openssl - version: 3.3.0 - build: h87427d6_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.0-h87427d6_3.conda - sha256: 58ffbdce44ac18c6632a2ce1531d06e3fb2e855d40728ba3a2b709158b9a1c33 - md5: ec504fefb403644d893adffb6e7a2dbe - depends: - - __osx >=10.13 - - ca-certificates - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2542959 - timestamp: 1716468436467 -- kind: conda - name: orc - version: 2.0.0 - build: h17fec99_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.0-h17fec99_1.conda - sha256: ccbfb6c2a01259c2c95b5b8139a0c3a8d4ec6240228ad1ac454b41f5fbcfd082 - md5: d2e0ffa6c3452f0a723a0ef1b96fd1cb - depends: - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 - license_family: Apache - size: 1029252 - timestamp: 1712616110941 -- kind: conda - name: orc - version: 2.0.0 - build: h7e885a9_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.0-h7e885a9_1.conda - sha256: eb8ba5b2c500b990dc75f468dffaf4ba5eca53a8c021b38900247df988d14e4b - md5: f61ae80fe162b09c627473932d5dc8c3 - depends: - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc >=14.3,<15 - - vc14_runtime >=14.29.30139 - - vc14_runtime >=14.38.33130 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 - license_family: Apache - size: 925936 - timestamp: 1712616706879 -- kind: conda - name: orc - version: 2.0.0 - build: hf146577_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.0-hf146577_1.conda - sha256: 801367a030bf6eaf10603c575dbaca439283e449e9cd5bb586b600fb591f5221 - md5: 7979dbaf686485e12d48e7ca9fcb5a56 - depends: - - __osx >=10.13 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: Apache-2.0 - license_family: Apache - size: 433233 - timestamp: 1712616573866 -- kind: conda - name: overrides - version: 7.7.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - sha256: 5e238e5e646414d517a13f6786c7227206ace58271e3ef63f6adca4d6a4c2839 - md5: 24fba5a9d161ad8103d4e84c0e1a3ed4 - depends: - - python >=3.6 - - typing_utils - license: Apache-2.0 - license_family: APACHE - size: 30232 - timestamp: 1706394723472 -- kind: conda - name: p11-kit - version: 0.24.1 - build: h65f8906_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 - sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc - md5: e936a0ee28be948846108582f00e2d61 - depends: - - libffi >=3.4.2,<3.5.0a0 - - libtasn1 >=4.18.0,<5.0a0 - license: MIT - license_family: MIT - size: 834487 - timestamp: 1654869241699 -- kind: conda - name: p11-kit - version: 0.24.1 - build: hc5aa10d_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 - sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d - md5: 56ee94e34b71742bbdfa832c974e47a8 - depends: - - libffi >=3.4.2,<3.5.0a0 - - libgcc-ng >=12 - - libtasn1 >=4.18.0,<5.0a0 - license: MIT - license_family: MIT - size: 4702497 - timestamp: 1654868759643 -- kind: conda - name: packaging - version: '24.0' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - sha256: a390182d74c31dfd713c16db888c92c277feeb6d1fe96ff9d9c105f9564be48a - md5: 248f521b64ce055e7feae3105e7abeb8 - depends: - - python >=3.8 - license: Apache-2.0 - license_family: APACHE - size: 49832 - timestamp: 1710076089469 -- kind: conda - name: pandas - version: 2.2.2 - build: py312h1171441_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.2-py312h1171441_1.conda - sha256: 99ef3986a0c6a5fe31a94b298f3ef60eb7ec7aa683a9aee6682f97d003aeb423 - md5: 240737937f1f046b0e03ecc11ac4ec98 - depends: - - __osx >=10.13 - - libcxx >=16 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python-dateutil >=2.8.1 - - python-tzdata >=2022a - - python_abi 3.12.* *_cp312 - - pytz >=2020.1 - license: BSD-3-Clause - license_family: BSD - size: 14673730 - timestamp: 1715898164799 -- kind: conda - name: pandas - version: 2.2.2 - build: py312h1d6d2e6_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.2-py312h1d6d2e6_1.conda - sha256: 80fd53b68aa89b929d03874b99621ec8cc6a12629bd8bfbdca87a95f8852af96 - md5: ae00b61f3000d2284d1f2584d4dfafa8 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python-dateutil >=2.8.1 - - python-tzdata >=2022a - - python_abi 3.12.* *_cp312 - - pytz >=2020.1 - license: BSD-3-Clause - license_family: BSD - size: 15458981 - timestamp: 1715898284697 -- kind: conda - name: pandas - version: 2.2.2 - build: py312h72972c8_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.2-py312h72972c8_1.conda - sha256: f27b950c52cac5784b184a258c599cea81fcbfbd688897da799de4b6bf91af6e - md5: 92a5cf9f4778c6c9e02582d99885b34d - depends: - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python-dateutil >=2.8.1 - - python-tzdata >=2022a - - python_abi 3.12.* *_cp312 - - pytz >=2020.1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 14181121 - timestamp: 1715899159343 -- kind: conda - name: pandera - version: 0.19.3 - build: hd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pandera-0.19.3-hd8ed1ab_0.conda - sha256: 9860f4bbc78363b6dd03573974042042655d39079db7ec8f47aae08bb3bc1895 - md5: 7e4f450b3506942ebaf186f929ce4e9c - depends: - - pandera-base >=0.19.3,<0.19.4.0a0 - license: MIT - license_family: MIT - size: 6933 - timestamp: 1715747499742 -- kind: conda - name: pandera-base - version: 0.19.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pandera-base-0.19.3-pyhd8ed1ab_0.conda - sha256: 364536f9757af2117dd8373c5ba5f49555a88b8f8f59c5b3ea69c9dc31970cee - md5: 9933a83850628bf78523df82c7f87d75 - depends: - - multimethod <=1.10.0 - - numpy >=1.19.0 - - packaging >=20.0 - - pandas >=1.2.0 - - pydantic - - python >=3.8 - - typeguard >=3.0.2 - - typing_inspect >=0.6.0 - - wrapt - license: MIT - license_family: MIT - size: 145484 - timestamp: 1715747494412 -- kind: conda - name: pandoc - version: 3.1.11.1 - build: h57928b3_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.11.1-h57928b3_0.conda - sha256: 84cbba7f556b173c84cb3aba6a43ff088dd4808d529a598e5fd124dca710bc1b - md5: 81747ed06ea58a00b41ea15bf6e1fe30 - license: GPL-2.0-or-later - license_family: GPL - size: 24254504 - timestamp: 1707474734217 -- kind: conda - name: pandoc - version: 3.1.11.1 - build: h694c41f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.11.1-h694c41f_0.conda - sha256: 3adbae2ba5d78c45c9ec9d802b820c2e659129b7ba044cc76487ce33dbc800f2 - md5: 6cff44b16d1231fe9682c64d12ab66a5 - license: GPL-2.0-or-later - license_family: GPL - size: 13738785 - timestamp: 1707474535801 -- kind: conda - name: pandoc - version: 3.1.11.1 - build: ha770c72_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.11.1-ha770c72_0.conda - sha256: 30b1318dbf7a89d4b2f66a9b10c8799376a32506043a510e1d27ba286c564633 - md5: 0e2f14aff42adf4675bcd5335d644a5f - license: GPL-2.0-or-later - license_family: GPL - size: 20502973 - timestamp: 1707474170203 -- kind: conda - name: pandocfilters - version: 1.5.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f - md5: 457c2c8c08e54905d6954e79cb5b5db9 - depends: - - python !=3.0,!=3.1,!=3.2,!=3.3 - license: BSD-3-Clause - license_family: BSD - size: 11627 - timestamp: 1631603397334 -- kind: conda - name: pango - version: 1.52.1 - build: h07c897b_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pango-1.52.1-h07c897b_0.conda - sha256: 7c32ab437db0a4a4a4417c4f370b33c9655d4a3b404da8ce60995367ded3ea3f - md5: 29ef4f1131bebc13482e65226cc0c62c - depends: - - cairo >=1.18.0,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - fribidi >=1.0.10,<2.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - libglib >=2.78.4,<3.0a0 - - libpng >=1.6.43,<1.7.0a0 - license: LGPL-2.1-or-later - size: 448419 - timestamp: 1709762590439 -- kind: conda - name: pango - version: 1.52.1 - build: h7f2093b_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pango-1.52.1-h7f2093b_0.conda - sha256: 93ccddbcd2845bdbb5bc65ef3c7039170f1ccb4a1c21fa062986b82665ec513b - md5: 5525033b1743273720d851e430b3eaed - depends: - - cairo >=1.18.0,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - fribidi >=1.0.10,<2.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - libglib >=2.78.4,<3.0a0 - - libpng >=1.6.43,<1.7.0a0 - license: LGPL-2.1-or-later - size: 420184 - timestamp: 1709762297359 -- kind: conda - name: pango - version: 1.52.1 - build: ha41ecd1_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pango-1.52.1-ha41ecd1_0.conda - sha256: 53d3442fb39eb9f0ac36646769469f2f825afaeda984719002460efd7c3d354f - md5: 5c0cc002bf4eaa56448b0729efd6e96c - depends: - - cairo >=1.18.0,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - fribidi >=1.0.10,<2.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - libgcc-ng >=12 - - libglib >=2.78.4,<3.0a0 - - libpng >=1.6.43,<1.7.0a0 - license: LGPL-2.1-or-later - size: 444188 - timestamp: 1709762011295 -- kind: conda - name: parso - version: 0.8.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda - sha256: bfe404eebb930cc41782d34f8fc04c0388ea692eeebe2c5fc28df8ec8d4d61ae - md5: 81534b420deb77da8833f2289b8d47ac - depends: - - python >=3.6 - license: MIT - license_family: MIT - size: 75191 - timestamp: 1712320447201 -- kind: conda - name: partd - version: 1.4.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda - sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c - md5: 0badf9c54e24cecfb0ad2f99d680c163 - depends: - - locket - - python >=3.9 - - toolz - license: BSD-3-Clause - license_family: BSD - size: 20884 - timestamp: 1715026639309 -- kind: conda - name: pcre2 - version: '10.42' - build: h0ad2156_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.42-h0ad2156_0.conda - sha256: 689559d94b64914e503d2ced53b78afc19562ed1ccfb284040797a6d41bb564c - md5: 41de8bab2d5e5cd6daaba1896e81d366 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 899794 - timestamp: 1698610978148 -- kind: conda - name: pcre2 - version: '10.42' - build: h17e33f8_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.42-h17e33f8_0.conda - sha256: 25e33b148478de58842ccc018fbabb414665de59270476e92c951203d4485bb1 - md5: 59610c61da3af020289a806ec9c6a7fd - depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 880802 - timestamp: 1698611415241 -- kind: conda - name: pcre2 - version: '10.42' - build: hcad00b1_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.42-hcad00b1_0.conda - sha256: 3ca54ff0abcda964af7d4724d389ae20d931159ae1881cfe57ad4b0ab9e6a380 - md5: 679c8961826aa4b50653bce17ee52abe - depends: - - bzip2 >=1.0.8,<2.0a0 - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 1017235 - timestamp: 1698610864983 -- kind: conda - name: pexpect - version: 4.9.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda - sha256: 90a09d134a4a43911b716d4d6eb9d169238aff2349056f7323d9db613812667e - md5: 629f3203c99b32e0988910c93e77f3b6 - depends: - - ptyprocess >=0.5 - - python >=3.7 - license: ISC - size: 53600 - timestamp: 1706113273252 -- kind: conda - name: pickleshare - version: 0.7.5 - build: py_1003 - build_number: 1003 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - md5: 415f0ebb6198cc2801c73438a9fb5761 - depends: - - python >=3 - license: MIT - license_family: MIT - size: 9332 - timestamp: 1602536313357 -- kind: conda - name: pillow - version: 10.3.0 - build: py312h0c923fa_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pillow-10.3.0-py312h0c923fa_0.conda - sha256: 3e33ce8ba364948eeeeb06da435059b1ed0e6cfb2b1195931b76e190ee671310 - md5: 6f0591ae972e9b815739da3392fbb3c3 - depends: - - freetype >=2.12.1,<3.0a0 - - lcms2 >=2.16,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libxcb >=1.15,<1.16.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openjpeg >=2.5.2,<3.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - tk >=8.6.13,<8.7.0a0 - license: HPND - size: 42531277 - timestamp: 1712154782302 -- kind: conda - name: pillow - version: 10.3.0 - build: py312h6f6a607_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py312h6f6a607_0.conda - sha256: f1621c28346609886ccce14b6ae0069b5cb34925ace73e05a8c06770d2ad7a19 - md5: 8d5f5f1fa36200f1ef987299a47de403 - depends: - - freetype >=2.12.1,<3.0a0 - - lcms2 >=2.16,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libxcb >=1.15,<1.16.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openjpeg >=2.5.2,<3.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - tk >=8.6.13,<8.7.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: HPND - size: 42439434 - timestamp: 1712155248737 -- kind: conda - name: pillow - version: 10.3.0 - build: py312hdcec9eb_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py312hdcec9eb_0.conda - sha256: a7fdcc1e56b66d95622bad073cc8d347cc180988040419754abb2a4ed7b29471 - md5: 425bb325f970e57a047ac57c4586489d - depends: - - freetype >=2.12.1,<3.0a0 - - lcms2 >=2.16,<3.0a0 - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libwebp-base >=1.3.2,<2.0a0 - - libxcb >=1.15,<1.16.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openjpeg >=2.5.2,<3.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - tk >=8.6.13,<8.7.0a0 - license: HPND - size: 41991755 - timestamp: 1712154634705 -- kind: conda - name: pip - version: '24.0' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - sha256: b7c1c5d8f13e8cb491c4bd1d0d1896a4cf80fc47de01059ad77509112b664a4a - md5: f586ac1e56c8638b64f9c8122a7b8a67 - depends: - - python >=3.7 - - setuptools - - wheel - license: MIT - license_family: MIT - size: 1398245 - timestamp: 1706960660581 -- kind: conda - name: pixman - version: 0.43.2 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda - sha256: 366d28e2a0a191d6c535e234741e0cd1d94d713f76073d8af4a5ccb2a266121e - md5: 71004cbf7924e19c02746ccde9fd7123 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 386826 - timestamp: 1706549500138 -- kind: conda - name: pixman - version: 0.43.4 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.43.4-h63175ca_0.conda - sha256: 51de4d7fb41597b06d60f1b82e269dafcb55e994e08fdcca8e4d6f7d42bedd07 - md5: b98135614135d5f458b75ab9ebb9558c - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 461854 - timestamp: 1709239971654 -- kind: conda - name: pixman - version: 0.43.4 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.43.4-h73e2aa4_0.conda - sha256: 3ab44e12e566c67a6e9fd831f557ab195456aa996b8dd9af19787ca80caa5cd1 - md5: cb134c1e03fd32f4e6bea3f6de2614fd - depends: - - libcxx >=16 - license: MIT - license_family: MIT - size: 323904 - timestamp: 1709239931160 -- kind: conda - name: pkgutil-resolve-name - version: 1.3.10 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda - sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a - md5: 405678b942f2481cecdb3e010f4925d9 - depends: - - python >=3.6 - license: MIT AND PSF-2.0 - size: 10778 - timestamp: 1694617398467 -- kind: conda - name: platformdirs - version: 4.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.2-pyhd8ed1ab_0.conda - sha256: adc59384cf0b2fc6dc7362840151e8cb076349197a38f7230278252698a88442 - md5: 6f6cf28bf8e021933869bae3f84b8fc9 - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 20572 - timestamp: 1715777739019 -- kind: conda - name: plum-dispatch - version: 2.3.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/plum-dispatch-2.3.6-pyhd8ed1ab_0.conda - sha256: 653ee7aad4804a3907e83bf7ece62d99a7b8efeb9cbaba2e837d08c6631c3323 - md5: a805d5ef0fdc9fbee2c07ce24b118550 - depends: - - beartype >=0.12 - - python >=3.8 - - rich >=10.0 - license: MIT - license_family: MIT - size: 37177 - timestamp: 1715674046768 -- kind: conda - name: pooch - version: 1.8.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.1-pyhd8ed1ab_0.conda - sha256: 63f95e626754f5e05e74f39c0f4866aa8bd40b933eef336077978d365d66ca7b - md5: d15917f33140f8d2ac9ca44db7ec8a25 - depends: - - packaging >=20.0 - - platformdirs >=2.5.0 - - python >=3.7 - - requests >=2.19.0 - license: BSD-3-Clause - license_family: BSD - size: 52720 - timestamp: 1708448699261 -- kind: conda - name: poppler - version: 24.02.0 - build: h0c752f9_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/poppler-24.02.0-h0c752f9_0.conda - sha256: 54400c2961eca96f14ecbb9ccdac457ef7f86ee6741e38aa71db47eee22b76b6 - md5: 064e1d83d148b0ff5fa9ddd21141d0b1 - depends: - - cairo >=1.18.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.16,<3.0a0 - - libcurl >=8.5.0,<9.0a0 - - libcxx >=16 - - libglib >=2.78.3,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - nspr >=4.35,<5.0a0 - - nss >=3.97,<4.0a0 - - openjpeg >=2.5.0,<3.0a0 - - poppler-data - license: GPL-2.0-only - license_family: GPL - size: 1569106 - timestamp: 1707085713504 -- kind: conda - name: poppler - version: 24.02.0 - build: h590f24d_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/poppler-24.02.0-h590f24d_0.conda - sha256: 55bb2deb67c76bd9f5592bf9765cc879cf11e555c4f8879292cbd5544e88887e - md5: 7e715c1572de09d6106c5a31fa70ffca - depends: - - cairo >=1.18.0,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - lcms2 >=2.16,<3.0a0 - - libcurl >=8.5.0,<9.0a0 - - libgcc-ng >=12 - - libglib >=2.78.3,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libstdcxx-ng >=12 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - nspr >=4.35,<5.0a0 - - nss >=3.97,<4.0a0 - - openjpeg >=2.5.0,<3.0a0 - - poppler-data - license: GPL-2.0-only - license_family: GPL - size: 1846319 - timestamp: 1707085261766 -- kind: conda - name: poppler - version: 24.02.0 - build: hc2f3c52_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/poppler-24.02.0-hc2f3c52_0.conda - sha256: 21e97633c56c9c1330433cfb20d12609a5f419ebe33474480f1b4c32048b298f - md5: e740f88adfd0b75e6233066f6cbd4d82 - depends: - - cairo >=1.18.0,<2.0a0 - - freetype >=2.12.1,<3.0a0 - - lcms2 >=2.16,<3.0a0 - - libcurl >=8.5.0,<9.0a0 - - libglib >=2.78.3,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openjpeg >=2.5.0,<3.0a0 - - poppler-data - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: GPL-2.0-only - license_family: GPL - size: 2214905 - timestamp: 1707086181845 -- kind: conda - name: poppler-data - version: 0.4.12 - build: hd8ed1ab_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - md5: d8d7293c5b37f39b2ac32940621c6592 - license: BSD-3-Clause AND (GPL-2.0-only OR GPL-3.0-only) - license_family: OTHER - size: 2348171 - timestamp: 1675353652214 -- kind: conda - name: postgresql - version: '16.3' - build: h1d90168_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.3-h1d90168_0.conda - sha256: 69a0887d23f51bc7e35097bf03f88d2ff14e88cc578c3f8296a178c8378950ec - md5: a7ccb9b98d8e3ef61c0ca6d470e8e66d - depends: - - __osx >=10.13 - - krb5 >=1.21.2,<1.22.0a0 - - libpq 16.3 h4501773_0 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.3.0,<4.0a0 - - readline >=8.2,<9.0a0 - - tzcode - - tzdata - license: PostgreSQL - size: 4612922 - timestamp: 1715267536439 -- kind: conda - name: postgresql - version: '16.3' - build: h7f155c9_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/postgresql-16.3-h7f155c9_0.conda - sha256: 7cd34a8803a3687f6fbed5908dd9b2ecb0ff923a1ac7c4d602d0f06a5804edbd - md5: a253c97c94a2c2886e1cb79e34a5b641 - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libpq 16.3 hab9416b_0 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.3.0,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: PostgreSQL - size: 18697452 - timestamp: 1715267263356 -- kind: conda - name: postgresql - version: '16.3' - build: h8e811e2_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.3-h8e811e2_0.conda - sha256: 4cd39edd84011657978e35abdc880cf3e49785e8a86f1c99a34029a3e4998abe - md5: e4d52462da124ed3792472f95a36fc2a - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libgcc-ng >=12 - - libpq 16.3 ha72fbe1_0 - - libxml2 >=2.12.6,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.3.0,<4.0a0 - - readline >=8.2,<9.0a0 - - tzcode - - tzdata - license: PostgreSQL - size: 5332852 - timestamp: 1715266435060 -- kind: conda - name: pre-commit - version: 3.7.1 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.7.1-pyha770c72_0.conda - sha256: 689c169ce6ed5d516d8524cc1e6ef2687dff19747c1ed1ee9b347a71f47ff12d - md5: 724bc4489c1174fc8e3233b0624fa51f - depends: - - cfgv >=2.0.0 - - identify >=1.0.0 - - nodeenv >=0.11.1 - - python >=3.9 - - pyyaml >=5.1 - - virtualenv >=20.10.0 - license: MIT - license_family: MIT - size: 179748 - timestamp: 1715432871404 -- kind: conda - name: primod - version: 2024.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/primod-2024.3.0-pyhd8ed1ab_0.conda - sha256: bb5da02eade92d86a93e520c71bfaf6a3012c24658926ccea083cf23c11c3e1b - md5: b85dfca994564949af17f61b12db35cc - depends: - - geopandas - - imod - - numpy - - pandas - - pydantic - - python >=3.10 - - ribasim - - scipy - - tomli-w - - xarray - license: MIT - license_family: MIT - size: 21981 - timestamp: 1711117750365 -- kind: conda - name: proj - version: 9.3.1 - build: h1d62c97_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.3.1-h1d62c97_0.conda - sha256: 234f8f7b255dc9036812ec30d097c0725047f3fc7e8e0bc7944e4e17d242ab99 - md5: 44ec51d0857d9be26158bb85caa74fdb - depends: - - libcurl >=8.4.0,<9.0a0 - - libgcc-ng >=12 - - libsqlite >=3.44.2,<4.0a0 - - libstdcxx-ng >=12 - - libtiff >=4.6.0,<4.7.0a0 - - sqlite - constrains: - - proj4 ==999999999999 - license: MIT - license_family: MIT - size: 3004737 - timestamp: 1701484763294 -- kind: conda - name: proj - version: 9.3.1 - build: h81faed2_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.3.1-h81faed2_0.conda - sha256: 51bc021e25c88a12151d6ab4d3e956e72ea21d2684315f6ea99ee699aaefc1ea - md5: 3940ef505861767d26659645f9ec0460 - depends: - - __osx >=10.9 - - libcurl >=8.4.0,<9.0a0 - - libcxx >=16.0.6 - - libsqlite >=3.44.2,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - sqlite - constrains: - - proj4 ==999999999999 - license: MIT - license_family: MIT - size: 2713966 - timestamp: 1701485089266 -- kind: conda - name: proj - version: 9.3.1 - build: he13c7e8_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/proj-9.3.1-he13c7e8_0.conda - sha256: bcf34f3610e2c34a74fccf76e47e0fd41d36afd8fc043920fef0ab34230bcd01 - md5: 57aa204e187d515bb2600bc74a7e7dfc - depends: - - libcurl >=8.4.0,<9.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - sqlite - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - proj4 ==999999999999 - license: MIT - license_family: MIT - size: 2663958 - timestamp: 1701485332654 -- kind: conda - name: prometheus_client - version: 0.20.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.20.0-pyhd8ed1ab_0.conda - sha256: 757cd91d01c2e0b64fadf6bc9a11f558cf7638d897dfbaf7415ddf324d5405c9 - md5: 9a19b94034dd3abb2b348c8b93388035 - depends: - - python >=3.8 - license: Apache-2.0 - license_family: Apache - size: 48913 - timestamp: 1707932844383 -- kind: conda - name: prompt-toolkit - version: 3.0.42 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda - sha256: 58525b2a9305fb154b2b0d43a48b9a6495441b80e4fbea44f2a34a597d2cef16 - md5: 0bf64bf10eee21f46ac83c161917fa86 - depends: - - python >=3.7 - - wcwidth - constrains: - - prompt_toolkit 3.0.42 - license: BSD-3-Clause - license_family: BSD - size: 270398 - timestamp: 1702399557137 -- kind: conda - name: psutil - version: 5.9.8 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py312h41838bb_0.conda - sha256: 12e5053d19bddaf7841e59cbe9ba98fa5d4d8502ceccddad80888515e1366107 - md5: 03926e7089a5e61b77043b470ae7b553 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 495162 - timestamp: 1705722685887 -- kind: conda - name: psutil - version: 5.9.8 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py312h98912ed_0.conda - sha256: 27e7f8f5d30c74439f39d61e21ac14c0cd03b5d55f7bf9f946fb619016f73c61 - md5: 3facaca6cc0f7988df3250efccd32da3 - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 486243 - timestamp: 1705722547420 -- kind: conda - name: psutil - version: 5.9.8 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py312he70551f_0.conda - sha256: 36f8addb327f80da4d6bd421170ff4cf8fb570d9ee8df39372427a4e33298dca - md5: 5f2998851564bea33a159bd00e6249e8 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 503677 - timestamp: 1705722843679 -- kind: conda - name: pthread-stubs - version: '0.4' - build: h36c2ea0_1001 - build_number: 1001 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 - sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff - md5: 22dad4df6e8630e8dff2428f6f6a7036 - depends: - - libgcc-ng >=7.5.0 - license: MIT - license_family: MIT - size: 5625 - timestamp: 1606147468727 -- kind: conda - name: pthread-stubs - version: '0.4' - build: hc929b4f_1001 - build_number: 1001 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 - sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 - md5: addd19059de62181cd11ae8f4ef26084 - license: MIT - license_family: MIT - size: 5653 - timestamp: 1606147699844 -- kind: conda - name: pthread-stubs - version: '0.4' - build: hcd874cb_1001 - build_number: 1001 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 - sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a - md5: a1f820480193ea83582b13249a7e7bd9 - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 6417 - timestamp: 1606147814351 -- kind: conda - name: pthreads-win32 - version: 2.9.1 - build: hfa6e2cd_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 - sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005 - md5: e2da8758d7d51ff6aa78a14dfb9dbed4 - depends: - - vc 14.* - license: LGPL 2 - size: 144301 - timestamp: 1537755684331 -- kind: conda - name: ptyprocess - version: 0.7.0 - build: pyhd3deb0d_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - md5: 359eeb6536da0e687af562ed265ec263 - depends: - - python - license: ISC - size: 16546 - timestamp: 1609419417991 -- kind: conda - name: pugixml - version: '1.14' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda - sha256: ea5f2d593177318f6b19af05018c953f41124cbb3bf21f9fdedfdb6ac42913ae - md5: 2c97dd90633508b422c11bd3018206ab - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 114871 - timestamp: 1696182708943 -- kind: conda - name: pugixml - version: '1.14' - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda - sha256: 68a5cb9a7560b2ce0d72ccebc7f6623e13ca66a67f80feb1094a75199bd1a50c - md5: 6794ab7a1f26ebfe0452297eba029d4f - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 111324 - timestamp: 1696182979614 -- kind: conda - name: pugixml - version: '1.14' - build: he965462_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.14-he965462_0.conda - sha256: 8ba30eb9ead058a19a472bb8e795ab408c629b0b84fc5bb7b6899e7429d5e625 - md5: 92f9416f48c010bf04c34c9841c84b09 - depends: - - libcxx >=15.0.7 - license: MIT - license_family: MIT - size: 94175 - timestamp: 1696182807580 -- kind: conda - name: pulseaudio-client - version: '16.1' - build: hb77b528_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_5.conda - sha256: 9981c70893d95c8cac02e7edd1a9af87f2c8745b772d529f08b7f9dafbe98606 - md5: ac902ff3c1c6d750dd0dfc93a974ab74 - depends: - - dbus >=1.13.6,<2.0a0 - - libgcc-ng >=12 - - libglib >=2.76.4,<3.0a0 - - libsndfile >=1.2.2,<1.3.0a0 - - libsystemd0 >=254 - constrains: - - pulseaudio 16.1 *_5 - license: LGPL-2.1-or-later - license_family: LGPL - size: 754844 - timestamp: 1693928953742 -- kind: conda - name: pure_eval - version: 0.2.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - md5: 6784285c7e55cb7212efabc79e4c2883 - depends: - - python >=3.5 - license: MIT - license_family: MIT - size: 14551 - timestamp: 1642876055775 -- kind: conda - name: pyarrow - version: 15.0.2 - build: py312h0247585_3_cpu - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-15.0.2-py312h0247585_3_cpu.conda - sha256: 50d3e1db042cd0bf1998b49a01c52af87b1fdca6e3eb6539a8af66d310c12832 - md5: 3d565353e3b11756e9ae9fa3dc42d527 - depends: - - libarrow 15.0.2 h45212c0_3_cpu - - libarrow-acero 15.0.2 h8681a6d_3_cpu - - libarrow-dataset 15.0.2 h8681a6d_3_cpu - - libarrow-flight 15.0.2 h83a3238_3_cpu - - libarrow-flight-sql 15.0.2 h21569af_3_cpu - - libarrow-gandiva 15.0.2 h05de715_3_cpu - - libarrow-substrait 15.0.2 hea7f8fd_3_cpu - - libparquet 15.0.2 h39135fc_3_cpu - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - apache-arrow-proc =*=cpu - license: Apache-2.0 - license_family: APACHE - size: 3466674 - timestamp: 1712760569459 -- kind: conda - name: pyarrow - version: 15.0.2 - build: py312h3340c41_3_cpu - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-15.0.2-py312h3340c41_3_cpu.conda - sha256: 1fd7f72079a7154b450c3773118397aac67f7462fdea2d1a3d952082be0c2daf - md5: 0c567e05e914a2509eb79a924b390937 - depends: - - libarrow 15.0.2 he70291f_3_cpu - - libarrow-acero 15.0.2 hac33072_3_cpu - - libarrow-dataset 15.0.2 hac33072_3_cpu - - libarrow-flight 15.0.2 hd42f311_3_cpu - - libarrow-flight-sql 15.0.2 h9241762_3_cpu - - libarrow-gandiva 15.0.2 hd4ab825_3_cpu - - libarrow-substrait 15.0.2 h9241762_3_cpu - - libgcc-ng >=12 - - libparquet 15.0.2 h6a7eafb_3_cpu - - libstdcxx-ng >=12 - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - apache-arrow-proc =*=cpu - license: Apache-2.0 - license_family: APACHE - size: 4522615 - timestamp: 1712757475698 -- kind: conda - name: pyarrow - version: 15.0.2 - build: py312h352451a_3_cpu - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-15.0.2-py312h352451a_3_cpu.conda - sha256: aeb18c3a9523c96611210ecbca8de54a77cb1c5bbd934a67ddce9ce03562b5d0 - md5: 467611e9d18fa20f9c02d0519ca20976 - depends: - - __osx >=10.13 - - libarrow 15.0.2 h965e444_3_cpu - - libarrow-acero 15.0.2 ha0df490_3_cpu - - libarrow-dataset 15.0.2 ha0df490_3_cpu - - libarrow-flight 15.0.2 h41520de_3_cpu - - libarrow-flight-sql 15.0.2 hb2e0ddf_3_cpu - - libarrow-gandiva 15.0.2 h6ac0def_3_cpu - - libarrow-substrait 15.0.2 hb2e0ddf_3_cpu - - libcxx >=16 - - libparquet 15.0.2 h7cd3cfe_3_cpu - - numpy >=1.26.4,<2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - apache-arrow-proc =*=cpu - license: Apache-2.0 - license_family: APACHE - size: 4027946 - timestamp: 1712760769595 -- kind: conda - name: pyarrow-hotfix - version: '0.6' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pyarrow-hotfix-0.6-pyhd8ed1ab_0.conda - sha256: 9b767969d059c106aac6596438a7e7ebd3aa1e2ff6553d4b7e05126dfebf4bd6 - md5: ccc06e6ef2064ae129fab3286299abda - depends: - - pyarrow >=0.14 - - python >=3.5 - license: Apache-2.0 - license_family: APACHE - size: 13567 - timestamp: 1700596511761 -- kind: conda - name: pycparser - version: '2.22' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - sha256: 406001ebf017688b1a1554b49127ca3a4ac4626ec0fd51dc75ffa4415b720b64 - md5: 844d9eb3b43095b031874477f7d70088 - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 105098 - timestamp: 1711811634025 -- kind: conda - name: pydantic - version: 2.7.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.7.2-pyhd8ed1ab_0.conda - sha256: 878a4c4da320da31ef5007e2dfed8aad1652260fa7544860f206582730d0aa76 - md5: 3523c9c846c85c43ec71eab1e26a619d - depends: - - annotated-types >=0.4.0 - - pydantic-core 2.18.3 - - python >=3.7 - - typing-extensions >=4.6.1 - license: MIT - license_family: MIT - size: 282316 - timestamp: 1716962269411 -- kind: conda - name: pydantic-core - version: 2.18.3 - build: py312h2615798_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.18.3-py312h2615798_0.conda - sha256: d7837cda1480788ab6cd99c672a9b471ca5b76dc6d669c9c61c86a088223e208 - md5: 3706126fbca6c6c014592741f1a415f1 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - typing-extensions >=4.6.0,!=4.7.0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 1587372 - timestamp: 1716938921388 -- kind: conda - name: pydantic-core - version: 2.18.3 - build: py312h4413252_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.18.3-py312h4413252_0.conda - sha256: f09967b5ef464cc147f0d5c627f7adead3c9ae9ce68c1463c4c8a39b582796b0 - md5: 863916e95af2f99c25872a2c68fa25dc - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - typing-extensions >=4.6.0,!=4.7.0 - license: MIT - license_family: MIT - size: 1618124 - timestamp: 1716938170381 -- kind: conda - name: pydantic-core - version: 2.18.3 - build: py312ha47ea1c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pydantic-core-2.18.3-py312ha47ea1c_0.conda - sha256: 4a2470f4b436897becb3caee0ad4f32b1bf537c7163c476d92afc0f39fc7195c - md5: 29fc032cecac9eb1c3c9bd521acaf2f7 - depends: - - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - typing-extensions >=4.6.0,!=4.7.0 - constrains: - - __osx >=10.12 - license: MIT - license_family: MIT - size: 1541503 - timestamp: 1716938222827 -- kind: conda - name: pygments - version: 2.18.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda - sha256: 78267adf4e76d0d64ea2ffab008c501156c108bb08fecb703816fb63e279780b - md5: b7f5c092b8f9800150d998a71b76d5a1 - depends: - - python >=3.8 - license: BSD-2-Clause - license_family: BSD - size: 879295 - timestamp: 1714846885370 -- kind: conda - name: pymetis - version: 2023.1.1 - build: py312h2c024a5_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pymetis-2023.1.1-py312h2c024a5_2.conda - sha256: 881e2734ae3ba5a35ed49f0bc896f2571447c70e103ccbb8cb15e86a209b4b48 - md5: a20fa39eef4a87afd75199fba6ec7c1f - depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - metis >=5.1.1,<5.1.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: APACHE - size: 106622 - timestamp: 1699633290711 -- kind: conda - name: pymetis - version: 2023.1.1 - build: py312h546a421_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pymetis-2023.1.1-py312h546a421_2.conda - sha256: 8ef533991c6c509004dba671ac5148be0af0be2eb7fc23097d84ef1e84f5bf6f - md5: c233cd4a3aba14eed499feb674bd80da - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - metis >=5.1.1,<5.1.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: APACHE - size: 115329 - timestamp: 1699633143630 -- kind: conda - name: pymetis - version: 2023.1.1 - build: py312hb9d1568_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pymetis-2023.1.1-py312hb9d1568_2.conda - sha256: b8c5917d0294353879a811cd3b1fa29123eb07b01c817ff89312cb42f7b27461 - md5: 8da75e3a9cc72b9c8ccc0bf26989022a - depends: - - metis >=5.1.1,<5.1.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 174581 - timestamp: 1699633625116 -- kind: conda - name: pyobjc-core - version: '10.2' - build: py312h74abf1d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.2-py312h74abf1d_0.conda - sha256: adc9590ed50322275a7e835377157c93e93fd457133ecb62d0ccb60cf2906340 - md5: fc53fe067431dee92471aac39ed58128 - depends: - - libffi >=3.4,<4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools - license: MIT - license_family: MIT - size: 469732 - timestamp: 1710591122760 -- kind: conda - name: pyobjc-framework-cocoa - version: '10.2' - build: py312h74abf1d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.2-py312h74abf1d_0.conda - sha256: 6a8b5be723f5c9188bfe3219e0448450775e2e0e798e6986e46605df4c875437 - md5: b5fca135abb5b6d34afceb96c91e60fd - depends: - - libffi >=3.4,<4.0a0 - - pyobjc-core 10.2.* - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 369208 - timestamp: 1710597488587 -- kind: conda - name: pyogrio - version: 0.7.2 - build: py312h3aaa50d_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyogrio-0.7.2-py312h3aaa50d_1.conda - sha256: 89bc19507aa7dc6ed746862c2cd5d749c6e850d2c71f035f8fdadfee875bb82d - md5: 26912d0833a2004013a6baf59d83a218 - depends: - - __osx >=10.9 - - gdal - - libcxx >=16.0.6 - - libgdal >=3.8.0,<3.9.0a0 - - numpy >=1.26.0,<2.0a0 - - packaging - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 597677 - timestamp: 1700083590982 -- kind: conda - name: pyogrio - version: 0.7.2 - build: py312h66d9856_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyogrio-0.7.2-py312h66d9856_1.conda - sha256: 6f956d6a6107169744ed3d1b1958cb3ec1f2b18659fcf69b44e45f3311ba8d64 - md5: ca00256c57930bc4addd3e6649ce340c - depends: - - gdal - - libgcc-ng >=12 - - libgdal >=3.8.0,<3.9.0a0 - - libstdcxx-ng >=12 - - numpy >=1.26.0,<2.0a0 - - packaging - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 656792 - timestamp: 1700083444209 -- kind: conda - name: pyogrio - version: 0.7.2 - build: py312he3b4e22_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pyogrio-0.7.2-py312he3b4e22_1.conda - sha256: 634295877fe52c9822a16eed69e21b164752b9d29905b6c0b3bbce4e73097bad - md5: 5ce109a1361640104e8853978a56634a - depends: - - gdal - - libgdal >=3.8.0,<3.9.0a0 - - numpy >=1.26.0,<2.0a0 - - packaging - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 809000 - timestamp: 1700084142163 -- kind: conda - name: pyparsing - version: 3.1.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda - sha256: 06c77cb03e5dde2d939b216c99dd2db52ea93a4c7c599f3882f136005c359c7b - md5: b9a4dacf97241704529131a0dfc0494f - depends: - - python >=3.6 - license: MIT - license_family: MIT - size: 89455 - timestamp: 1709721146886 -- kind: conda - name: pyproj - version: 3.6.1 - build: py312h14d93e9_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.6.1-py312h14d93e9_5.conda - sha256: f586f1ff7cf73e4610368ac7c3834a7b9229e7801c459107b55a6085e934d002 - md5: 9e4bb17395dc13f270ce7f574b3b18b4 - depends: - - certifi - - proj >=9.3.1,<9.3.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 482212 - timestamp: 1702028483675 -- kind: conda - name: pyproj - version: 3.6.1 - build: py312h38f1c37_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.6.1-py312h38f1c37_5.conda - sha256: cecb339a20ed336e1d91c603852bcd061cad84a10ac5b23f88d6c8c177da4f2d - md5: 867baf2a7c5c6147e05ecc90f6c52a0c - depends: - - certifi - - libgcc-ng >=12 - - proj >=9.3.1,<9.3.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 544962 - timestamp: 1702028241932 -- kind: conda - name: pyproj - version: 3.6.1 - build: py312hc725b1e_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pyproj-3.6.1-py312hc725b1e_5.conda - sha256: 5613805eed4a13a2d3c47c500bfedfd55a923bede9b5f558ca12ddbfbe62b7f6 - md5: 03b58ca2e2652462e83db38e241a352d - depends: - - certifi - - proj >=9.3.1,<9.3.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 723069 - timestamp: 1702028616503 -- kind: conda - name: pysocks - version: 1.7.1 - build: pyh0701188_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 - sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 - md5: 56cd9fe388baac0e90c7149cfac95b60 - depends: - - __win - - python >=3.8 - - win_inet_pton - license: BSD-3-Clause - license_family: BSD - size: 19348 - timestamp: 1661605138291 -- kind: conda - name: pysocks - version: 1.7.1 - build: pyha2e5f31_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - md5: 2a7de29fb590ca14b5243c4c812c8025 - depends: - - __unix - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 18981 - timestamp: 1661604969727 -- kind: conda - name: python - version: 3.12.2 - build: h2628c8c_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.2-h2628c8c_0_cpython.conda - sha256: b8eda863b48ae4531635e23fd15e759d93212b6204c6847d591e25fa5fd67477 - md5: be8803e9f75a477df61d4aabea3c1246 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.5.0,<3.0a0 - - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - size: 16083296 - timestamp: 1708116662336 -- kind: conda - name: python - version: 3.12.2 - build: h9f0c242_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.2-h9f0c242_0_cpython.conda - sha256: 7647ac06c3798a182a4bcb1ff58864f1ef81eb3acea6971295304c23e43252fb - md5: 0179b8007ba008cf5bec11f3b3853902 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.5.0,<3.0a0 - - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - ncurses >=6.4,<7.0a0 - - openssl >=3.2.1,<4.0a0 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - size: 14596811 - timestamp: 1708118065292 -- kind: conda - name: python - version: 3.12.2 - build: hab00c5b_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.2-hab00c5b_0_cpython.conda - sha256: ddb7a2d8d78046bda5d7631e6814f9468d2eb054e10f86f4648c9d1fdaa30c0f - md5: ad7b68400f3a6ebe72b00be093c7f301 - depends: - - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.5.0,<3.0a0 - - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - libnsl >=2.0.1,<2.1.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcrypt >=4.4.36 - - libzlib >=1.2.13,<2.0.0a0 - - ncurses >=6.4,<7.0a0 - - openssl >=3.2.1,<4.0a0 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - xz >=5.2.6,<6.0a0 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - size: 32312631 - timestamp: 1708118077305 -- kind: conda - name: python-dateutil - version: 2.9.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 - md5: 2cf4264fffb9e6eff6031c5b6884d61c - depends: - - python >=3.7 - - six >=1.5 - license: Apache-2.0 - license_family: APACHE - size: 222742 - timestamp: 1709299922152 -- kind: conda - name: python-fastjsonschema - version: 2.19.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.19.1-pyhd8ed1ab_0.conda - sha256: 38b2db169d65cc5595e3ce63294c4fdb6a242ecf71f70b3ad8cad3bd4230d82f - md5: 4d3ceee3af4b0f9a1f48f57176bf8625 - depends: - - python >=3.3 - license: BSD-3-Clause - license_family: BSD - size: 225250 - timestamp: 1703781171097 -- kind: conda - name: python-graphviz - version: 0.20.3 - build: pyh717bed2_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-graphviz-0.20.3-pyh717bed2_0.conda - sha256: 71365b1f6b7eca79af010bfc184fa00ad05bb86eec3c20aec4ae98b411e056ab - md5: 031c005eb6d4513013d99ed163dd5f59 - depends: - - graphviz >=2.46.1 - - python >=3 - license: MIT - license_family: MIT - size: 38226 - timestamp: 1711016613215 -- kind: conda - name: python-json-logger - version: 2.0.7 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca - md5: a61bf9ec79426938ff785eb69dbb1960 - depends: - - python >=3.6 - license: BSD-2-Clause - license_family: BSD - size: 13383 - timestamp: 1677079727691 -- kind: conda - name: python-tzdata - version: '2024.1' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda - sha256: 9da9a849d53705dee450b83507df1ca8ffea5f83bd21a215202221f1c492f8ad - md5: 98206ea9954216ee7540f0c773f2104d - depends: - - python >=3.6 - license: Apache-2.0 - license_family: APACHE - size: 144024 - timestamp: 1707747742930 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda - sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6 - md5: dccc2d142812964fcc6abdc97b672dff - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6385 - timestamp: 1695147396604 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda - sha256: 82c154d95c1637604671a02a89e72f1382e89a4269265a03506496bd928f6f14 - md5: 87201ac4314b911b74197e588cca3639 - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6496 - timestamp: 1695147498447 -- kind: conda - name: python_abi - version: '3.12' - build: 4_cp312 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda - sha256: 488f8519d04b48f59bd6fde21ebe2d7a527718ff28aac86a8b53aa63658bdef6 - md5: 17f4ccf6be9ded08bd0a376f489ac1a6 - constrains: - - python 3.12.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 6785 - timestamp: 1695147430513 -- kind: conda - name: pytz - version: '2024.1' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 - md5: 3eeeeb9e4827ace8c0c1419c85d590ad - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 188538 - timestamp: 1706886944988 -- kind: conda - name: pyvista - version: 0.43.8 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.43.8-pyhd8ed1ab_0.conda - sha256: 3a7be5272e834bbf7248dbabe2c42bac4f2cc1821b04c569f43dce237b97b29f - md5: e0c5b99bd2a16284f55322d0fb28cb39 - depends: - - matplotlib-base >=3.0.1 - - numpy - - pillow - - pooch - - python >=3.8 - - scooby >=0.5.1 - - vtk - license: MIT - license_family: MIT - size: 1675864 - timestamp: 1715698441081 -- kind: conda - name: pywin32 - version: '306' - build: py312h53d5487_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pywin32-306-py312h53d5487_2.conda - sha256: d0ff1cd887b626a125f8323760736d8fab496bf2a400e825cce55361e7631264 - md5: f44c8f35c3f99eca30d6f5b68ddb0f42 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: PSF-2.0 - license_family: PSF - size: 6127499 - timestamp: 1695974557413 -- kind: conda - name: pywinpty - version: 2.0.13 - build: py312h53d5487_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.13-py312h53d5487_0.conda - sha256: 56d95d00a0fe6170e6e0e1da6b0e1201291b8054a6342c0792bc4dd791a39088 - md5: 84bc43e330340c01ce93231c096d4ab1 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - winpty - license: MIT - license_family: MIT - size: 212261 - timestamp: 1708995486138 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312h104f124_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda - sha256: 04aa180782cb675b960c0bf4aad439b4a7a08553c6af74d0b8e5df9a0c7cc4f4 - md5: 260ed90aaf06061edabd7209638cf03b - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 185636 - timestamp: 1695373742454 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312h98912ed_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda - sha256: 7f347a10a7121b08d79d21cd4f438c07c23479ea0c74dfb89d6dc416f791bb7f - md5: e3fd78d8d490af1d84763b9fe3f2e552 - depends: - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 196583 - timestamp: 1695373632212 -- kind: conda - name: pyyaml - version: 6.0.1 - build: py312he70551f_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda - sha256: a72fa8152791b4738432f270e70b3a9a4d583ef059a78aa1c62f4b4ab7b15494 - md5: f91e0baa89ba21166916624ba7bfb422 - depends: - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 167932 - timestamp: 1695374097139 -- kind: conda - name: pyzmq - version: 26.0.3 - build: py312h8fd38d8_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.0.3-py312h8fd38d8_0.conda - sha256: a3bf1e1af97a256a3a498cc7f2fedb478df18cf629cc9e9aa73a5b4cfc204d45 - md5: 27efa6d21e98bcab4585a6b913df7625 - depends: - - libgcc-ng >=12 - - libsodium >=1.0.18,<1.0.19.0a0 - - libstdcxx-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - zeromq >=4.3.5,<4.4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 461684 - timestamp: 1715024520808 -- kind: conda - name: pyzmq - version: 26.0.3 - build: py312ha04878a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-26.0.3-py312ha04878a_0.conda - sha256: 65a17e5cbece9fa2d6df687502bcbe504f0fd906aa02a85b23de5ff55d423926 - md5: a2a851071ceea5b90391003faf94b203 - depends: - - __osx >=10.9 - - libcxx >=16 - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - zeromq >=4.3.5,<4.4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 446747 - timestamp: 1715024631161 -- kind: conda - name: pyzmq - version: 26.0.3 - build: py312hd7027bb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.0.3-py312hd7027bb_0.conda - sha256: 9c13d1300fa5ee9a4c7c8cb14fb70b4ace9f4247318774f306f6123aa4e6e46a - md5: 0fc1ec9be7d6274d3e01f6c7908f69e5 - depends: - - libsodium >=1.0.18,<1.0.19.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zeromq >=4.3.5,<4.3.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 445178 - timestamp: 1715025185530 -- kind: conda - name: qt-main - version: 5.15.8 - build: h4385fff_19 - build_number: 19 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/qt-main-5.15.8-h4385fff_19.conda - sha256: f1ab73268198fe66c0b438b58b34bc56b987d0c411c4d60882c9474186a7d7f0 - md5: e9e7fc8f8b31e436472e6c2697dfa9fa - depends: - - gst-plugins-base >=1.22.9,<1.23.0a0 - - gstreamer >=1.22.9,<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 - - libcxx >=14 - - libglib >=2.78.3,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libpq >=16.2,<17.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - mysql-libs >=8.0.33,<8.1.0a0 - - nspr >=4.35,<5.0a0 - - nss >=3.97,<4.0a0 - - zstd >=1.5.5,<1.6.0a0 - constrains: - - qt 5.15.8 - - __osx >=10.13 - license: LGPL-3.0-only - license_family: LGPL - size: 46210935 - timestamp: 1707961847477 -- kind: conda - name: qt-main - version: 5.15.8 - build: h5810be5_19 - build_number: 19 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5810be5_19.conda - sha256: 41228ec12346d640ef1f549885d8438e98b1be0fdeb68cd1dd3938f255cbd719 - md5: 54866f708d43002a514d0b9b0f84bc11 - depends: - - __glibc >=2.17,<3.0.a0 - - alsa-lib >=1.2.10,<1.3.0.0a0 - - dbus >=1.13.6,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - - gst-plugins-base >=1.22.9,<1.23.0a0 - - gstreamer >=1.22.9,<1.23.0a0 - - harfbuzz >=8.3.0,<9.0a0 - - icu >=73.2,<74.0a0 - - krb5 >=1.21.2,<1.22.0a0 - - libclang >=15.0.7,<16.0a0 - - libclang13 >=15.0.7 - - libcups >=2.3.3,<2.4.0a0 - - libevent >=2.1.12,<2.1.13.0a0 - - libexpat >=2.5.0,<3.0a0 - - libgcc-ng >=12 - - libglib >=2.78.3,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libpq >=16.2,<17.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libstdcxx-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - libxkbcommon >=1.6.0,<2.0a0 - - libxml2 >=2.12.5,<3.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - mysql-libs >=8.0.33,<8.1.0a0 - - nspr >=4.35,<5.0a0 - - nss >=3.97,<4.0a0 - - openssl >=3.2.1,<4.0a0 - - pulseaudio-client >=16.1,<16.2.0a0 - - xcb-util >=0.4.0,<0.5.0a0 - - xcb-util-image >=0.4.0,<0.5.0a0 - - xcb-util-keysyms >=0.4.0,<0.5.0a0 - - xcb-util-renderutil >=0.3.9,<0.4.0a0 - - xcb-util-wm >=0.4.1,<0.5.0a0 - - xorg-libice >=1.1.1,<2.0a0 - - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-xf86vidmodeproto - - zstd >=1.5.5,<1.6.0a0 - constrains: - - qt 5.15.8 - license: LGPL-3.0-only - license_family: LGPL - size: 61337596 - timestamp: 1707958161584 -- kind: conda - name: qt-main - version: 5.15.8 - build: h9e85ed6_19 - build_number: 19 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h9e85ed6_19.conda - sha256: a132554a24f0617f54668479a29d9af80a2235653b08a4ebd200dcd30da971a8 - md5: 1e5fa5b05768a8eed9d8bb0bf5585b1f - depends: - - gst-plugins-base >=1.22.9,<1.23.0a0 - - gstreamer >=1.22.9,<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.3,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.42,<1.7.0a0 - - libsqlite >=3.45.1,<4.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zstd >=1.5.5,<1.6.0a0 - constrains: - - qt 5.15.8 - license: LGPL-3.0-only - license_family: LGPL - size: 60081554 - timestamp: 1707957968211 -- kind: conda - name: quarto - version: 1.4.550 - build: h57928b3_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/quarto-1.4.550-h57928b3_1.conda - sha256: 6415fc839ad74202b20ed7781de3aa076f0bc202f7dd977e6ea782dfb00def71 - md5: d92f625feb8436864b4bfd2bc7f420da - depends: - - dart-sass - - deno >=1.37.2,<1.37.3.0a0 - - deno-dom >=0.1.35,<0.1.36.0a0 - - esbuild - - pandoc >=3.1.11.1,<3.1.12.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 15688899 - timestamp: 1708104504691 -- kind: conda - name: quarto - version: 1.4.550 - build: h694c41f_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/quarto-1.4.550-h694c41f_1.conda - sha256: 914a1b22f3b9616309ee6a066c50707cab37de0e9eb23cd0db3488d05c3991c1 - md5: 451204adcf15c8411d12ba240e7e979a - depends: - - dart-sass - - deno >=1.37.2,<1.37.3.0a0 - - deno-dom >=0.1.35,<0.1.36.0a0 - - esbuild - - pandoc >=3.1.11.1,<3.1.12.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 15721907 - timestamp: 1708104547618 -- kind: conda - name: quarto - version: 1.4.550 - build: ha770c72_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/quarto-1.4.550-ha770c72_1.conda - sha256: 2fd62d66eb6a08b95ba8933aaff7a0e3241c7ced93b5114a3b1e8d28ee24b330 - md5: b7b89be76bcdab239f7956e5fc2727ab - depends: - - dart-sass - - deno >=1.37.2,<1.37.3.0a0 - - deno-dom >=0.1.35,<0.1.36.0a0 - - esbuild - - pandoc >=3.1.11.1,<3.1.12.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 15312136 - timestamp: 1708104283642 -- kind: conda - name: quartodoc - version: 0.7.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/quartodoc-0.7.2-pyhd8ed1ab_0.conda - sha256: 1a214d61abb5a7f424e1397d06595eac4b62b4f4c8190994da23123d5b9bb0f9 - md5: 9bf1905bef4492b77781e058cc27db35 - depends: - - click - - griffe >=0.33 - - importlib-metadata >=5.1.0 - - importlib-resources >=5.10.2 - - plum-dispatch >2.0.0 - - pydantic - - python >=3.10 - - pyyaml - - sphobjinv >=2.3.1 - - tabulate >=0.9.0 - - typing-extensions >=4.4.0 - - watchdog >=3.0.0 - license: MIT - license_family: MIT - size: 64615 - timestamp: 1702333703635 -- kind: conda - name: rasterio - version: 1.3.9 - build: py312h26ef92c_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rasterio-1.3.9-py312h26ef92c_2.conda - sha256: 33fa2502729d3ee1e5ca5097278b247ca62bbb5ca7bac1709f66d70bcc5399d0 - md5: 96d14d34711307a6dc3cd59b090faf43 - depends: - - affine - - attrs - - certifi - - click >=4 - - click-plugins - - cligj >=0.5 - - libgcc-ng >=12 - - libgdal >=3.8.1,<3.9.0a0 - - libstdcxx-ng >=12 - - numpy >=1.26.2,<2.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools >=0.9.8 - - snuggs >=1.4.1 - license: BSD-3-Clause - license_family: BSD - size: 7190256 - timestamp: 1702440857949 -- kind: conda - name: rasterio - version: 1.3.9 - build: py312h2bf6802_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/rasterio-1.3.9-py312h2bf6802_2.conda - sha256: 02a0a5da11579408e8700be80c19219fd79dd1532bd8fa8f986399b0182a978b - md5: 0a49fa306ebb685ee4673ea0cd6ea1c0 - depends: - - affine - - attrs - - certifi - - click >=4 - - click-plugins - - cligj >=0.5 - - libcxx >=15 - - libgdal >=3.8.1,<3.9.0a0 - - numpy >=1.26.2,<2.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools >=0.9.8 - - snuggs >=1.4.1 - license: BSD-3-Clause - license_family: BSD - size: 7529244 - timestamp: 1702441222560 -- kind: conda - name: rasterio - version: 1.3.9 - build: py312hc028deb_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/rasterio-1.3.9-py312hc028deb_2.conda - sha256: 7a1713571d670c86bd1b47a1236ade7a93e0b6f67960f51a6981d12869c7d419 - md5: 3278c8d3806674305672d7a465ab0882 - depends: - - affine - - attrs - - certifi - - click >=4 - - click-plugins - - cligj >=0.5 - - libgdal >=3.8.1,<3.9.0a0 - - numpy >=1.26.2,<2.0a0 - - proj >=9.3.1,<9.3.2.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - setuptools >=0.9.8 - - snuggs >=1.4.1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 7675343 - timestamp: 1702441950706 -- kind: conda - name: rdma-core - version: '51.0' - build: hd3aeb46_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-51.0-hd3aeb46_0.conda - sha256: bcc774b60605b09701cfad41b2d6d9c3f052dd4adfc1f02bf1c929076f48fe30 - md5: 493598e1f28c01e316fda127715593aa - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libnl >=3.9.0,<4.0a0 - - libstdcxx-ng >=12 - license: Linux-OpenIB - license_family: BSD - size: 4734659 - timestamp: 1711958296706 -- kind: conda - name: re2 - version: 2023.09.01 - build: h7f4b329_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - md5: 8f70e36268dea8eb666ef14c29bd3cda - depends: - - libre2-11 2023.09.01 h5a48ba9_2 - license: BSD-3-Clause - license_family: BSD - size: 26617 - timestamp: 1708946796423 -- kind: conda - name: re2 - version: 2023.09.01 - build: hb168e87_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda - sha256: 5739ed2cfa62ed7f828eb4b9e6e69ff1df56cb9a9aacdc296451a3cb647034eb - md5: 266f8ca8528fc7e0fa31066c309ad864 - depends: - - libre2-11 2023.09.01 h81f5012_2 - license: BSD-3-Clause - license_family: BSD - size: 26814 - timestamp: 1708947195067 -- kind: conda - name: re2 - version: 2023.09.01 - build: hd3b24a8_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda - sha256: 929744a982215ea19f6f9a9d00c782969cd690bfddeeb650a39df1536af577fe - md5: ffeb985810bc7d103662e1465c758847 - depends: - - libre2-11 2023.09.01 hf8d8778_2 - license: BSD-3-Clause - license_family: BSD - size: 207315 - timestamp: 1708947529390 -- kind: conda - name: readline - version: '8.2' - build: h8228510_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 - md5: 47d31b792659ce70f470b5c82fdfb7a4 - depends: - - libgcc-ng >=12 - - ncurses >=6.3,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 281456 - timestamp: 1679532220005 -- kind: conda - name: readline - version: '8.2' - build: h9e318b2_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 - md5: f17f77f2acf4d344734bda76829ce14e - depends: - - ncurses >=6.3,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 255870 - timestamp: 1679532707590 -- kind: conda - name: referencing - version: 0.35.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - sha256: be8d6d9e86b1a3fef5424127ff81782f8ca63d3058980859609f6f1ecdd34cb3 - md5: 0fc8b52192a8898627c3efae1003e9f6 - depends: - - attrs >=22.2.0 - - python >=3.8 - - rpds-py >=0.7.0 - license: MIT - license_family: MIT - size: 42210 - timestamp: 1714619625532 -- kind: conda - name: requests - version: 2.32.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - sha256: 5845ffe82a6fa4d437a2eae1e32a1ad308d7ad349f61e337c0a890fe04c513cc - md5: 5ede4753180c7a550a443c430dc8ab52 - depends: - - certifi >=2017.4.17 - - charset-normalizer >=2,<4 - - idna >=2.5,<4 - - python >=3.8 - - urllib3 >=1.21.1,<3 - constrains: - - chardet >=3.0.2,<6 - license: Apache-2.0 - license_family: APACHE - size: 58810 - timestamp: 1717057174842 -- kind: conda - name: rfc3339-validator - version: 0.1.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 - sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d - md5: fed45fc5ea0813240707998abe49f520 - depends: - - python >=3.5 - - six - license: MIT - license_family: MIT - size: 8064 - timestamp: 1638811838081 -- kind: conda - name: rfc3986-validator - version: 0.1.1 - build: pyh9f0ad1d_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 - md5: 912a71cc01012ee38e6b90ddd561e36f - depends: - - python - license: MIT - license_family: MIT - size: 7818 - timestamp: 1598024297745 -- kind: conda - name: ribasim - version: 2024.8.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/ribasim-2024.8.0-pyhd8ed1ab_0.conda - sha256: 2f2c6de401fc373cb5bda0904c09fefffc7639f0cce928b2dd5c788ac4d12128 - md5: 22a954ead9c534dbc95240926b02e027 - depends: - - geopandas - - matplotlib-base - - numpy - - pandas - - pandera >=0.18 - - pyarrow - - pydantic ~=2.0 - - pyogrio - - python >=3.10 - - shapely >=2.0 - - tomli - - tomli-w - license: MIT - license_family: MIT - size: 26685 - timestamp: 1715719906670 -- kind: conda - name: rich - version: 13.7.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda - sha256: 2b26d58aa59e46f933c3126367348651b0dab6e0bf88014e857415bb184a4667 - md5: ba445bf767ae6f0d959ff2b40c20912b - depends: - - markdown-it-py >=2.2.0 - - pygments >=2.13.0,<3.0.0 - - python >=3.7.0 - - typing_extensions >=4.0.0,<5.0.0 - license: MIT - license_family: MIT - size: 184347 - timestamp: 1709150578093 -- kind: conda - name: rioxarray - version: 0.15.5 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/rioxarray-0.15.5-pyhd8ed1ab_0.conda - sha256: 1baa985465cefbe7a2a33e000afeee1044833d0bac2dc6364b5b4a326040b7db - md5: cd7e6bfce5f8d758267c79d54bf108e7 - depends: - - numpy >=1.23 - - packaging - - pyproj >=3.3 - - python >=3.10 - - rasterio >=1.3 - - scipy - - xarray >=2022.3.0 - license: Apache-2.0 - license_family: Apache - size: 51132 - timestamp: 1713807499826 -- kind: conda - name: rpds-py - version: 0.18.1 - build: py312h2615798_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.1-py312h2615798_0.conda - sha256: 5fac4eb59d4117f0e2e73d704d06d2da9e6260f44b27ea57fe179cfe442effd0 - md5: ae3a65ba0fd5bcff4ba65ab57818ef79 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 206318 - timestamp: 1715090984368 -- kind: conda - name: rpds-py - version: 0.18.1 - build: py312h4413252_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.1-py312h4413252_0.conda - sha256: 31891fb09afbe5263f0526388758f65e43ad9b7b3ccd75f791df55782667a8d1 - md5: 73da42918aaeb87d5618f82e2ac18d1f - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 922258 - timestamp: 1715090163612 -- kind: conda - name: rpds-py - version: 0.18.1 - build: py312ha47ea1c_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.18.1-py312ha47ea1c_0.conda - sha256: c9bdd953b66f0de03aace310f20a38f9c06ec781a9a0be764904e338c3811712 - md5: 9d10e9eb2ad2eba2f7c01150c8c2a908 - depends: - - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - constrains: - - __osx >=10.12 - license: MIT - license_family: MIT - size: 300350 - timestamp: 1715090344206 -- kind: conda - name: rtree - version: 1.2.0 - build: py312h72b5f30_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/rtree-1.2.0-py312h72b5f30_0.conda - sha256: 6dafc5ab1ba907a6665f5df60b241f57e9b0953fd29bfe95e3bc46f75a36a236 - md5: 9b80ceb8d83fe2e929db84278c551f68 - depends: - - libspatialindex >=1.9.3,<1.9.4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 62968 - timestamp: 1705698300779 -- kind: conda - name: rtree - version: 1.2.0 - build: py312h8974cf7_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/rtree-1.2.0-py312h8974cf7_0.conda - sha256: ff6433e1fc3b95f85e2f7e5a549f8b17710acd5345ff37e687210fa5b2451948 - md5: 63416e40d1e466da6309b893f4c4649b - depends: - - libspatialindex >=1.9.3,<1.9.4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 62828 - timestamp: 1705698173963 -- kind: conda - name: rtree - version: 1.2.0 - build: py312hb0aae1a_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/rtree-1.2.0-py312hb0aae1a_0.conda - sha256: 234d8d81c8c7ddd96b826a60ebecb762b530b1b12ed632c28e7704337e86e470 - md5: ad9e0b706ffac22ae394d5357c14b7c7 - depends: - - libspatialindex >=1.9.3,<1.9.4.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 62265 - timestamp: 1705698063894 -- kind: conda - name: s2n - version: 1.4.12 - build: h06160fa_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.12-h06160fa_0.conda - sha256: fc5759c4d8136bb9048ed5cd2e8fd1a375104c3a7ec60fee1be0b06e7487d610 - md5: bf1899cfd6dea061a220fa7e96a1f4bd - depends: - - libgcc-ng >=12 - - openssl >=3.2.1,<4.0a0 - license: Apache-2.0 - license_family: Apache - size: 346689 - timestamp: 1713325107791 -- kind: conda - name: scikit-learn - version: 1.5.0 - build: py312h1fcc3ea_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.5.0-py312h1fcc3ea_1.conda - sha256: 96dc4258ba8a7867f73b6941fc35d1f6e330dd716d3f5d48384d39b9ce921dcf - md5: 8b5f1cdde05d0978a15792f6c4c0306b - depends: - - _openmp_mutex >=4.5 - - joblib >=1.2.0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - scipy - - threadpoolctl >=3.1.0 - license: BSD-3-Clause - license_family: BSD - size: 10426658 - timestamp: 1716490318614 -- kind: conda - name: scikit-learn - version: 1.5.0 - build: py312h816cc57_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.5.0-py312h816cc57_1.conda - sha256: e5053c8495f00df51a34cecf08ea809e018dde158ddc4ccd356184718d64a536 - md5: c702dd6421032b589570ad95c0896fcc - depends: - - joblib >=1.2.0 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - scipy - - threadpoolctl >=3.1.0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 9290772 - timestamp: 1716491304075 -- kind: conda - name: scikit-learn - version: 1.5.0 - build: py312hc214ba5_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.5.0-py312hc214ba5_1.conda - sha256: 138b1ec5ea074e4c8d9aa3188c7d131d02cc2d52dc4ab61c77c10cb0997011a4 - md5: 47c4d0817bc4d202db994005d1522a48 - depends: - - __osx >=10.13 - - joblib >=1.2.0 - - libcxx >=16 - - llvm-openmp >=16.0.6 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - scipy - - threadpoolctl >=3.1.0 - license: BSD-3-Clause - license_family: BSD - size: 9576601 - timestamp: 1716490694698 -- kind: conda - name: scipy - version: 1.13.1 - build: py312h1f4e10d_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.13.1-py312h1f4e10d_0.conda - sha256: 17bb2262a733a8c751cea2c446d010e8d6bebdeda12fc6e3cf857cc2a1fbb166 - md5: fbeaeb1f8d575d1ad2457d037c485b4e - depends: - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - numpy <2.3 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 15514427 - timestamp: 1716472573927 -- kind: conda - name: scipy - version: 1.13.1 - build: py312hb9702fa_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.13.1-py312hb9702fa_0.conda - sha256: 2f65b1de8705f0518195d8baffb7990e9a334984ebdd92800f480e73cf84d594 - md5: 46cb49e67c33f8340a09e49e69adf195 - depends: - - __osx >=10.13 - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - - libcxx >=16 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - liblapack >=3.9.0,<4.0a0 - - numpy <2.3 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 16357326 - timestamp: 1716471630008 -- kind: conda - name: scipy - version: 1.13.1 - build: py312hc2bc53b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.13.1-py312hc2bc53b_0.conda - sha256: 865fe2b3ed1aee0a42f6f275592f2571e68f2a60235c86bd9ababc681e30fbb5 - md5: 864b2399a9c998e17d1a9a4e0c601285 - depends: - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - - liblapack >=3.9.0,<4.0a0 - - libstdcxx-ng >=12 - - numpy <2.3 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 17344054 - timestamp: 1716471229479 -- kind: conda - name: scooby - version: 0.10.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/scooby-0.10.0-pyhd8ed1ab_0.conda - sha256: e47c80ff6c06898e7f49fbea5b0fd3a97dda0c11348004ada2070071d03b34cf - md5: 9e57330f431abbb4c88a5f898a4ba223 - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 22221 - timestamp: 1714897547376 -- kind: conda - name: send2trash - version: 1.8.3 - build: pyh0d859eb_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda - sha256: c4401b071e86ddfa0ea4f34b85308db2516b6aeca50053535996864cfdee7b3f - md5: 778594b20097b5a948c59e50ae42482a - depends: - - __linux - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 22868 - timestamp: 1712585140895 -- kind: conda - name: send2trash - version: 1.8.3 - build: pyh31c8845_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_0.conda - sha256: f911307db932c92510da6c3c15b461aef935720776643a1fbf3683f61001068b - md5: c3cb67fc72fb38020fe7923dbbcf69b0 - depends: - - __osx - - pyobjc-framework-cocoa - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 23165 - timestamp: 1712585504123 -- kind: conda - name: send2trash - version: 1.8.3 - build: pyh5737063_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_0.conda - sha256: d8aa230501a33250af2deee03006a2579f0335e7240a9c7286834788dcdcfaa8 - md5: 5a86a21050ca3831ec7f77fb302f1132 - depends: - - __win - - python >=3.7 - - pywin32 - license: BSD-3-Clause - license_family: BSD - size: 23319 - timestamp: 1712585816346 -- kind: conda - name: setuptools - version: 70.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda - sha256: daa4638d288cfdf3b0ecea395d8efa25cafc4ebf4026464a36c797c84541d2be - md5: c8ddb4f34a208df4dd42509a0f6a1c89 - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 483015 - timestamp: 1716368141661 -- kind: conda - name: shapely - version: 2.0.4 - build: py312h3daf033_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/shapely-2.0.4-py312h3daf033_1.conda - sha256: 1c0cb105fd5b3714d11286657010a2cd8eba76d8404c0d33ae3cd57e5e494214 - md5: 901432253d406a9c017b6ae26b121581 - depends: - - __osx >=10.13 - - geos >=3.12.1,<3.12.2.0a0 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 536089 - timestamp: 1715876738481 -- kind: conda - name: shapely - version: 2.0.4 - build: py312h91267bd_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/shapely-2.0.4-py312h91267bd_1.conda - sha256: b5bafd71067ccb3a15f902af1d6cfbdc097e2910bee8f1f6d33cff79dd412570 - md5: f70903bc11cfd0eeed0af9e909648b6c - depends: - - geos >=3.12.1,<3.12.2.0a0 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 534033 - timestamp: 1715877107978 -- kind: conda - name: shapely - version: 2.0.4 - build: py312ha5b4d35_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/shapely-2.0.4-py312ha5b4d35_1.conda - sha256: 0784041570ddc7494431f49dcedc46d436926e1ae4b1d3b765a36fcda34f557f - md5: 1248b799f811d8ea215de88f53ae7ffc - depends: - - geos >=3.12.1,<3.12.2.0a0 - - libgcc-ng >=12 - - numpy >=1.19,<3 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-3-Clause - license_family: BSD - size: 568092 - timestamp: 1715876554913 -- kind: conda - name: six - version: 1.16.0 - build: pyh6c4a22f_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - md5: e5f25f8dbc060e9a8d912e432202afc2 - depends: - - python - license: MIT - license_family: MIT - size: 14259 - timestamp: 1620240338595 -- kind: conda - name: snappy - version: 1.2.0 - build: h6dc393e_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.0-h6dc393e_1.conda - sha256: dc2abe5f45859263c36d287d0d6212e83a3552ef19faf98194d32e70d755d648 - md5: 9c322ec36340610fcf213b72999b049e - depends: - - libcxx >=16 - license: BSD-3-Clause - license_family: BSD - size: 36881 - timestamp: 1712591355487 -- kind: conda - name: snappy - version: 1.2.0 - build: hdb0a2a9_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 - md5: 843bbb8ace1d64ac50d64639ff38b014 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 42334 - timestamp: 1712591084054 -- kind: conda - name: snappy - version: 1.2.0 - build: hfb803bf_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.2.0-hfb803bf_1.conda - sha256: de02a222071d6a832ad3b790c8c977725161ad430ec694fd7b35769b6e1104b4 - md5: a419bf04a7c76a46639e315ac1b8bf72 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 59510 - timestamp: 1712591680669 -- kind: conda - name: sniffio - version: 1.3.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - sha256: bc12100b2d8836b93c55068b463190505b8064d0fc7d025e89f20ebf22fe6c2b - md5: 490730480d76cf9c8f8f2849719c6e2b - depends: - - python >=3.7 - license: Apache-2.0 - license_family: Apache - size: 15064 - timestamp: 1708953086199 -- kind: conda - name: snuggs - version: 1.4.7 - build: py_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 - sha256: ebb8f5f9e362f186fb7d732e656f85c969b86309494436eba51cc3b8b96683f7 - md5: cb83a3d6ecf73f50117635192414426a - depends: - - numpy - - pyparsing >=2.1.6 - - python - license: MIT - license_family: MIT - size: 8136 - timestamp: 1568905295860 -- kind: conda - name: sortedcontainers - version: 2.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2 - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - md5: 6d6552722448103793743dabfbda532d - depends: - - python >=2.7 - license: Apache-2.0 - license_family: APACHE - size: 26314 - timestamp: 1621217159824 -- kind: conda - name: soupsieve - version: '2.5' - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c - md5: 3f144b2c34f8cb5a9abd9ed23a39c561 - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 36754 - timestamp: 1693929424267 -- kind: conda - name: spdlog - version: 1.12.0 - build: h64d2f7d_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.12.0-h64d2f7d_2.conda - sha256: 4b582768ebb9d234c0a9e0eae482733f167d53e316f0f48aac19a028a83a8570 - md5: e039fdff30fd25fbfc7cb91755d80a4f - depends: - - fmt >=10.1.1,<11.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 160999 - timestamp: 1697421628776 -- kind: conda - name: spdlog - version: 1.12.0 - build: h8dd852c_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda - sha256: 3bce42d94b4cd5672bde68ec47374e558b2bc481621f759f70b56bf3da12c31f - md5: 1be852e792cca50421504cee933e3063 - depends: - - __osx >=10.9 - - fmt >=10.1.1,<11.0a0 - - libcxx >=16.0.6 - license: MIT - license_family: MIT - size: 161449 - timestamp: 1697421663869 -- kind: conda - name: spdlog - version: 1.12.0 - build: hd2e6256_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - sha256: 34c2ac3ecafc109ea659087f2a429b8fd7c557eb75d072e723a9954472726e62 - md5: f37afc6ce10d45b9fae2f55ddc635b9f - depends: - - fmt >=10.1.1,<11.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: MIT - license_family: MIT - size: 187863 - timestamp: 1697421353980 -- kind: conda - name: sphobjinv - version: 2.3.1.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/sphobjinv-2.3.1.1-pyhd8ed1ab_0.conda - sha256: 7a5e727b2ee384f5d78596c808ef9fc147a0f3ceedb39dc42b2531d52df2e0d4 - md5: 3503896d50f4e463bb86c77bab85ce07 - depends: - - attrs >=19.2 - - certifi - - jsonschema >=3.0 - - python >=3.8 - license: MIT - license_family: MIT - size: 69178 - timestamp: 1716387030819 -- kind: conda - name: sqlite - version: 3.45.3 - build: h2c6b66d_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.3-h2c6b66d_0.conda - sha256: 945ac702e2bd8cc59cc780dfc37c18255d5e538c8433dc290c0edbad2bcbaeb4 - md5: be7d70f2db41b674733667bdd69bd000 - depends: - - libgcc-ng >=12 - - libsqlite 3.45.3 h2797004_0 - - libzlib >=1.2.13,<2.0.0a0 - - ncurses >=6.4.20240210,<7.0a0 - - readline >=8.2,<9.0a0 - license: Unlicense - size: 848611 - timestamp: 1713367461306 -- kind: conda - name: sqlite - version: 3.45.3 - build: h7461747_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.3-h7461747_0.conda - sha256: 73ab284ff41dd6aeb69f7a8a014018fbf8b019fd261ff4190fd5813b62d07b16 - md5: 4d9a56087e6150e84b94087a8c0fdf98 - depends: - - libsqlite 3.45.3 h92b6c6a_0 - - libzlib >=1.2.13,<2.0.0a0 - - ncurses >=6.4.20240210,<7.0a0 - - readline >=8.2,<9.0a0 - license: Unlicense - size: 901246 - timestamp: 1713367827855 -- kind: conda - name: sqlite - version: 3.45.3 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/sqlite-3.45.3-hcfcfb64_0.conda - sha256: 9815ad33780f8679d21507ffd6e12184da47eab7b945b2e5df35e8af686aafe6 - md5: ef090bf29a90a1371888385e405a3a6f - depends: - - libsqlite 3.45.3 hcfcfb64_0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Unlicense - size: 872907 - timestamp: 1713367918283 -- kind: conda - name: stack_data - version: 0.6.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - md5: e7df0fdd404616638df5ece6e69ba7af - depends: - - asttokens - - executing - - pure_eval - - python >=3.5 - license: MIT - license_family: MIT - size: 26205 - timestamp: 1669632203115 -- kind: conda - name: svt-av1 - version: 2.0.0 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda - sha256: eee484177184c7876d258917ab3f209396e6fc59e9bf3603a3ebf1ce8b39df80 - md5: 207e01ffa0eb2d2efb83fb6f46365a21 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 2633794 - timestamp: 1710374004661 -- kind: conda - name: svt-av1 - version: 2.0.0 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-2.0.0-h63175ca_0.conda - sha256: 0ece693f79e90819958e9e265b2b19409f36b4434aa132a58c993264a927d029 - md5: b3c5c51269efb1bc04502c6231506707 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 2354231 - timestamp: 1710374384723 -- kind: conda - name: svt-av1 - version: 2.0.0 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.0.0-h73e2aa4_0.conda - sha256: 51414c2e9b9f26b71a94037e3969dbfa9f65a2feaf31b7fb0d9905b5fef0e56e - md5: 5eaa877d08099311d615c23a4549482d - depends: - - libcxx >=16 - license: BSD-2-Clause - license_family: BSD - size: 2362393 - timestamp: 1710374582341 -- kind: conda - name: tabulate - version: 0.9.0 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 - sha256: f6e4a0dd24ba060a4af69ca79d32361a6678e61d78c73eb5e357909b025b4620 - md5: 4759805cce2d914c38472f70bf4d8bcb - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 35912 - timestamp: 1665138565317 -- kind: conda - name: tbb - version: 2021.12.0 - build: h297d8ca_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h297d8ca_1.conda - sha256: ab706931ba80e8117995fc838509f044ccd1388a4cd7cc4ff1a55ea904bac723 - md5: 3ff978d8994f591818a506640c6a7071 - depends: - - libgcc-ng >=12 - - libhwloc >=2.10.0,<2.10.1.0a0 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: APACHE - size: 194111 - timestamp: 1716030795319 -- kind: conda - name: tbb - version: 2021.12.0 - build: h3c5361c_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h3c5361c_1.conda - sha256: 7097247f971b4aa29ffc2d3dba908306c6153a9a15088133a7bbd5b7528e5e8f - md5: e23dd312f13ffe470cc4fdeaddc7a32e - depends: - - __osx >=10.13 - - libcxx >=16 - - libhwloc >=2.10.0,<2.10.1.0a0 - license: Apache-2.0 - license_family: APACHE - size: 172122 - timestamp: 1716030842899 -- kind: conda - name: tbb - version: 2021.12.0 - build: hc790b64_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.12.0-hc790b64_1.conda - sha256: 87461c83a4f0d4f119af7368f20c47bbe0c27d963a7c22a3d08c71075077f855 - md5: e98333643abc739ebea1bac97a479828 - depends: - - libhwloc >=2.10.0,<2.10.1.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: APACHE - size: 161771 - timestamp: 1716031112705 -- kind: conda - name: tbb-devel - version: 2021.12.0 - build: h7393e1e_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-devel-2021.12.0-h7393e1e_1.conda - sha256: 670bfacee9193661c17b8d46045d3d42ba56c961d83859b16d8fc7f7cd4bec30 - md5: a644e49902aa960bf4bf99875cf39775 - depends: - - __osx >=10.13 - - libcxx >=16 - - tbb 2021.12.0 h3c5361c_1 - size: 1058748 - timestamp: 1716030884841 -- kind: conda - name: tbb-devel - version: 2021.12.0 - build: h7c56ddd_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2021.12.0-h7c56ddd_1.conda - sha256: a4f4eee733239846dbf37f35777de53840f5721c5bd18f6326288d05daa104c8 - md5: f896f49efc2e33ab5d4d3690bb4f32ef - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - tbb 2021.12.0 h297d8ca_1 - size: 1057309 - timestamp: 1716030849894 -- kind: conda - name: tbb-devel - version: 2021.12.0 - build: hb551fcf_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tbb-devel-2021.12.0-hb551fcf_1.conda - sha256: 0dac2867318c12575eb73e65aa9babd2fff1ec37068d0cc5d3fa942873af75bc - md5: ce48530b0800c691735f1b96c36cb842 - depends: - - tbb 2021.12.0 hc790b64_1 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - size: 1066598 - timestamp: 1716031184519 -- kind: conda - name: tblib - version: 3.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda - sha256: 2e2c255b6f24a6d75b9938cb184520e27db697db2c24f04e18342443ae847c0a - md5: 04eedddeb68ad39871c8127dd1c21f4f - depends: - - python >=3.7 - license: BSD-2-Clause - license_family: BSD - size: 17386 - timestamp: 1702066480361 -- kind: conda - name: terminado - version: 0.18.1 - build: pyh0d859eb_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda - sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c - md5: efba281bbdae5f6b0a1d53c6d4a97c93 - depends: - - __linux - - ptyprocess - - python >=3.8 - - tornado >=6.1.0 - license: BSD-2-Clause - license_family: BSD - size: 22452 - timestamp: 1710262728753 -- kind: conda - name: terminado - version: 0.18.1 - build: pyh31c8845_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda - sha256: 4daae56fc8da17784578fbdd064f17e3b3076b394730a14119e571707568dc8a - md5: 00b54981b923f5aefcd5e8547de056d5 - depends: - - __osx - - ptyprocess - - python >=3.8 - - tornado >=6.1.0 - license: BSD-2-Clause - license_family: BSD - size: 22717 - timestamp: 1710265922593 -- kind: conda - name: terminado - version: 0.18.1 - build: pyh5737063_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda - sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 - md5: 4abd500577430a942a995fd0d09b76a2 - depends: - - __win - - python >=3.8 - - pywinpty >=1.1.0 - - tornado >=6.1.0 - license: BSD-2-Clause - license_family: BSD - size: 22883 - timestamp: 1710262943966 -- kind: conda - name: threadpoolctl - version: 3.5.0 - build: pyhc1e730c_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda - sha256: 45e402941f6bed094022c5726a2ca494e6224b85180d2367fb6ddd9aea68079d - md5: df68d78237980a159bd7149f33c0e8fd - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 23548 - timestamp: 1714400228771 -- kind: conda - name: tiledb - version: 2.20.1 - build: h9fa30f9_7 - build_number: 7 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.20.1-h9fa30f9_7.conda - sha256: 20de414a049c99b81b5f1966f7adbe47e7e2cb240a6f7dca4b9fb73d57122277 - md5: cf4ebf53c36d47c5a084d0aa01b0f0a1 - depends: - - __osx >=10.13 - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - azure-storage-blobs-cpp >=12.10.0,<12.10.1.0a0 - - azure-storage-common-cpp >=12.5.0,<12.5.1.0a0 - - bzip2 >=1.0.8,<2.0a0 - - fmt >=10.2.1,<11.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcurl >=8.7.1,<9.0a0 - - libcxx >=16 - - libgoogle-cloud >=2.22.0,<2.23.0a0 - - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openssl >=3.2.1,<4.0a0 - - spdlog >=1.12.0,<1.13.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 4093432 - timestamp: 1712695191605 -- kind: conda - name: tiledb - version: 2.20.1 - build: hc9ddcec_7 - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tiledb-2.20.1-hc9ddcec_7.conda - sha256: c0eb2fa8be70fe826f1d7291a4f8b064bd00a790019ab4e8ec6cd2068f64e8e1 - md5: dc7608edd746f60604844c0af81a4165 - depends: - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - azure-storage-blobs-cpp >=12.10.0,<12.10.1.0a0 - - azure-storage-common-cpp >=12.5.0,<12.5.1.0a0 - - bzip2 >=1.0.8,<2.0a0 - - fmt >=10.2.1,<11.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcrc32c >=1.1.2,<1.2.0a0 - - libcurl >=8.7.1,<9.0a0 - - libgoogle-cloud >=2.22.0,<2.23.0a0 - - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openssl >=3.2.1,<4.0a0 - - spdlog >=1.12.0,<1.13.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 3289289 - timestamp: 1712694792602 -- kind: conda - name: tiledb - version: 2.20.1 - build: hcf523ab_7 - build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.20.1-hcf523ab_7.conda - sha256: 62a0ff9050cb000c624fc91b5a9052609305f600270d78e6ae248ada3b6b32c6 - md5: 8d1f428e88db4424d08c7a823fffa116 - depends: - - aws-crt-cpp >=0.26.6,<0.26.7.0a0 - - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - - azure-core-cpp >=1.11.1,<1.11.2.0a0 - - azure-storage-blobs-cpp >=12.10.0,<12.10.1.0a0 - - azure-storage-common-cpp >=12.5.0,<12.5.1.0a0 - - bzip2 >=1.0.8,<2.0a0 - - fmt >=10.2.1,<11.0a0 - - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcurl >=8.7.1,<9.0a0 - - libgcc-ng >=12 - - libgoogle-cloud >=2.22.0,<2.23.0a0 - - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - openssl >=3.2.1,<4.0a0 - - spdlog >=1.12.0,<1.13.0a0 - - zstd >=1.5.5,<1.6.0a0 - license: MIT - license_family: MIT - size: 4589082 - timestamp: 1712694183883 -- kind: conda - name: tinycss2 - version: 1.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda - sha256: bc55e5899e66805589c02061e315bfc23ae6cc2f2811f5cc13fb189a5ed9d90f - md5: 8662629d9a05f9cff364e31ca106c1ac - depends: - - python >=3.5 - - webencodings >=0.4 - license: BSD-3-Clause - license_family: BSD - size: 25405 - timestamp: 1713975078735 -- kind: conda - name: tk - version: 8.6.13 - build: h1abcd95_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 - md5: bf830ba5afc507c6232d4ef0fb1a882d - depends: - - libzlib >=1.2.13,<2.0.0a0 - license: TCL - license_family: BSD - size: 3270220 - timestamp: 1699202389792 -- kind: conda - name: tk - version: 8.6.13 - build: h5226925_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 - md5: fc048363eb8f03cd1737600a5d08aafe - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: TCL - license_family: BSD - size: 3503410 - timestamp: 1699202577803 -- kind: conda - name: tk - version: 8.6.13 - build: noxft_h4845f30_101 - build_number: 101 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e - md5: d453b98d9c83e71da0741bb0ff4d76bc - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: TCL - license_family: BSD - size: 3318875 - timestamp: 1699202167581 -- kind: conda - name: tomli - version: 2.0.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - md5: 5844808ffab9ebdb694585b50ba02a96 - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 15940 - timestamp: 1644342331069 -- kind: conda - name: tomli-w - version: 1.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tomli-w-1.0.0-pyhd8ed1ab_0.tar.bz2 - sha256: efb5f78a224c4bb14aab04690c9912256ea12c3a8b8413e60167573ce1282b02 - md5: 73506d1ab4202481841c68c169b7ef6c - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 10052 - timestamp: 1638551820635 -- kind: conda - name: toolz - version: 0.12.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.1-pyhd8ed1ab_0.conda - sha256: 22b0a9790317526e08609d5dfdd828210ae89e6d444a9e954855fc29012e90c6 - md5: 2fcb582444635e2c402e8569bb94e039 - depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 52358 - timestamp: 1706112720607 -- kind: conda - name: tornado - version: '6.4' - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4-py312h41838bb_0.conda - sha256: 558f50290a25d8da6071a8e951b2b0c2ef77f457254438fa7c19cb9ee9f5d952 - md5: 2d2d1fde5800d45cb56218583156d23d - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - size: 840576 - timestamp: 1708363459702 -- kind: conda - name: tornado - version: '6.4' - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4-py312h98912ed_0.conda - sha256: 5764795df60bd9fdbe54ec6df20ef2a94507b2a22b29be899b78745383bafab3 - md5: e8332e534dca8c5c12c8352e0a23501c - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - size: 840527 - timestamp: 1708363299520 -- kind: conda - name: tornado - version: '6.4' - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4-py312he70551f_0.conda - sha256: 0ebb1cd17f63f47262c42114a2b0af2b8d0bc19b0ae52e90e312a77ff7c55270 - md5: 98907504f8c3eb0452bb10362227ce16 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 844146 - timestamp: 1708363742639 -- kind: conda - name: tqdm - version: 4.66.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.4-pyhd8ed1ab_0.conda - sha256: 75342f40a69e434a1a23003c3e254a95dca695fb14955bc32f1819cd503964b2 - md5: e74cd796e70a4261f86699ee0a3a7a24 - depends: - - colorama - - python >=3.7 - license: MPL-2.0 or MIT - size: 89452 - timestamp: 1714855008479 -- kind: conda - name: traitlets - version: 5.14.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - sha256: 8a64fa0f19022828513667c2c7176cfd125001f3f4b9bc00d33732e627dd2592 - md5: 3df84416a021220d8b5700c613af2dc5 - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 110187 - timestamp: 1713535244513 -- kind: conda - name: typeguard - version: 4.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.3.0-pyhd8ed1ab_0.conda - sha256: 60d546ac09b473afecd666e9239a831562bf6109b28415941fe5587089fbefb8 - md5: b2c8d7c6d8da590539b97a307089fbab - depends: - - importlib_metadata >=3.6 - - python >=3.8 - - typing_extensions >=4.7.0 - constrains: - - pytest >=7 - license: MIT - license_family: MIT - size: 34798 - timestamp: 1717143197644 -- kind: conda - name: types-python-dateutil - version: 2.9.0.20240316 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20240316-pyhd8ed1ab_0.conda - sha256: 6630bbc43dfb72339fadafc521db56c9d17af72bfce459af195eecb01163de20 - md5: 7831efa91d57475373ee52fb92e8d137 - depends: - - python >=3.6 - license: Apache-2.0 AND MIT - size: 21769 - timestamp: 1710590028155 -- kind: conda - name: typing-extensions - version: 4.11.0 - build: hd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.11.0-hd8ed1ab_0.conda - sha256: aecbd9c601ba5a6c128da8975276fd817b968a9edc969b7ae97aee76e80a14a6 - md5: 471e3988f8ca5e9eb3ce6be7eac3bcee - depends: - - typing_extensions 4.11.0 pyha770c72_0 - license: PSF-2.0 - license_family: PSF - size: 10093 - timestamp: 1712330094282 -- kind: conda - name: typing_extensions - version: 4.11.0 - build: pyha770c72_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda - sha256: a7e8714d14f854058e971a6ed44f18cc37cc685f98ddefb2e6b7899a0cc4d1a2 - md5: 6ef2fc37559256cf682d8b3375e89b80 - depends: - - python >=3.8 - license: PSF-2.0 - license_family: PSF - size: 37583 - timestamp: 1712330089194 -- kind: conda - name: typing_inspect - version: 0.9.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing_inspect-0.9.0-pyhd8ed1ab_0.conda - sha256: 16e0b825c138e14ebc84623248d91d93a8cff29bb93595cc4aa46ca32f24f1de - md5: 9e924b76b91908a17e28a19a0ab88687 - depends: - - mypy_extensions >=0.3.0 - - python >=3.5 - - typing_extensions >=3.7.4 - license: MIT - license_family: MIT - size: 14906 - timestamp: 1685820229594 -- kind: conda - name: typing_utils - version: 0.1.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2 - sha256: 9e3758b620397f56fb709f796969de436d63b7117897159619b87938e1f78739 - md5: eb67e3cace64c66233e2d35949e20f92 - depends: - - python >=3.6.1 - license: Apache-2.0 - license_family: APACHE - size: 13829 - timestamp: 1622899345711 -- kind: conda - name: tzcode - version: 2024a - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2024a-h10d778d_0.conda - sha256: e3ee34b2711500f3b1d38309d47cfd7e4d05c0144f0b2b2bdfbc271a28cfdd76 - md5: 8d50ba6668dbd193cd42ccd9099fa2ae - license: BSD-3-Clause - license_family: BSD - size: 63341 - timestamp: 1706869081062 -- kind: conda - name: tzcode - version: 2024a - build: h3f72095_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda - sha256: d3ea2927cabd6c9f27ee0cb498f893ac0133687d6a9e65e0bce4861c732a18df - md5: 32146e34aaec3745a08b6f49af3f41b0 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 69821 - timestamp: 1706868851630 -- kind: conda - name: tzdata - version: 2024a - build: h0c530f3_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - sha256: 7b2b69c54ec62a243eb6fba2391b5e443421608c3ae5dbff938ad33ca8db5122 - md5: 161081fc7cec0bfda0d86d7cb595f8d8 - license: LicenseRef-Public-Domain - size: 119815 - timestamp: 1706886945727 -- kind: conda - name: ucrt - version: 10.0.22621.0 - build: h57928b3_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 - md5: 72608f6cd3e5898229c3ea16deb1ac43 - constrains: - - vs2015_runtime >=14.29.30037 - license: LicenseRef-Proprietary - license_family: PROPRIETARY - size: 1283972 - timestamp: 1666630199266 -- kind: conda - name: ucx - version: 1.15.0 - build: ha691c75_8 - build_number: 8 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-ha691c75_8.conda - sha256: 85b40ac6607c9e4e32bcb13e95da41ff48a10f813df0c1e74ff32412e1f7da35 - md5: 3f9bc6137b240642504a6c9b07a10c25 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - rdma-core >=51.0 - constrains: - - cuda-version >=11.2,<12 - license: BSD-3-Clause - license_family: BSD - size: 6842006 - timestamp: 1712025621683 -- kind: conda - name: ukkonen - version: 1.0.1 - build: py312h0d7def4_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py312h0d7def4_4.conda - sha256: f5f7550991ca647f69b67b9188c7104a3456122611dd6a6e753cff555e45dfd9 - md5: 57cfbb8ce3a1800bd343bf6afba6f878 - depends: - - cffi - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 17235 - timestamp: 1695549871621 -- kind: conda - name: ukkonen - version: 1.0.1 - build: py312h49ebfd2_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py312h49ebfd2_4.conda - sha256: efca19a5e73e4aacfc5e90a5389272b2508e41dc4adab9eb5353c5200ba37041 - md5: 4e6b5a8025cd8fd97b3cfe103ffce6b1 - depends: - - cffi - - libcxx >=15.0.7 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 13246 - timestamp: 1695549689363 -- kind: conda - name: ukkonen - version: 1.0.1 - build: py312h8572e83_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py312h8572e83_4.conda - sha256: f9a4384d466f4d8b5b497d951329dd4407ebe02f8f93456434e9ab789d6e23ce - md5: 52c9e25ee0a32485a102eeecdb7eef52 - depends: - - cffi - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 14050 - timestamp: 1695549556745 -- kind: conda - name: uri-template - version: 1.3.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda - sha256: b76904b53721dc88a46352324c79d2b077c2f74a9f7208ad2c4249892669ae94 - md5: 0944dc65cb4a9b5b68522c3bb585d41c - depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 23999 - timestamp: 1688655976471 -- kind: conda - name: uriparser - version: 0.9.8 - build: h5a68840_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/uriparser-0.9.8-h5a68840_0.conda - sha256: ed0eed8ed0343d29cdbfaeb1bfd141f090af696547d69f91c18f46350299f00d - md5: 28b4cf9065681f43cc567410edf8243d - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 49181 - timestamp: 1715010467661 -- kind: conda - name: uriparser - version: 0.9.8 - build: h6aefe2f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.8-h6aefe2f_0.conda - sha256: fec8e52955fc314580a93dee665349bf430ce6df19019cea3fae7ec60f732bdd - md5: 649890a63cc818b24fbbf0572db221a5 - depends: - - __osx >=10.9 - - libcxx >=16 - license: BSD-3-Clause - license_family: BSD - size: 43396 - timestamp: 1715010079800 -- kind: conda - name: uriparser - version: 0.9.8 - build: hac33072_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda - sha256: 2aad2aeff7c69a2d7eecd7b662eef756b27d6a6b96f3e2c2a7071340ce14543e - md5: d71d3a66528853c0a1ac2c02d79a0284 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - license: BSD-3-Clause - license_family: BSD - size: 48270 - timestamp: 1715010035325 -- kind: conda - name: urllib3 - version: 2.2.1 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda - sha256: d4009dcc9327684d6409706ce17656afbeae690d8522d3c9bc4df57649a352cd - md5: 08807a87fa7af10754d46f63b368e016 - depends: - - brotli-python >=1.0.9 - - pysocks >=1.5.6,<2.0,!=1.5.7 - - python >=3.7 - license: MIT - license_family: MIT - size: 94669 - timestamp: 1708239595549 -- kind: conda - name: utfcpp - version: 4.0.5 - build: h57928b3_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/utfcpp-4.0.5-h57928b3_0.conda - sha256: 1380fd2eb7336ee08faaed098675a305ed6185b9491ebe8ad08a30fb657ddee3 - md5: 116f6c77011fd7869f71b163cdd837b5 - license: BSL-1.0 - size: 14042 - timestamp: 1704191209163 -- kind: conda - name: utfcpp - version: 4.0.5 - build: h694c41f_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.5-h694c41f_0.conda - sha256: a480e0a0e563d3915221d52bb11e0acf1a1bb58aa913349eefe8dca6ce02d4f4 - md5: f59ae41dec5f4035713eb00b552c6eb9 - license: BSL-1.0 - size: 13826 - timestamp: 1704191204619 -- kind: conda - name: utfcpp - version: 4.0.5 - build: ha770c72_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.5-ha770c72_0.conda - sha256: c4a286b5ee817ab58c091fbfeb790c931f919c13a3dd18e7770936e08b19b50b - md5: 25965c1d1d5fc00ce2b663b73008e3b7 - license: BSL-1.0 - size: 13698 - timestamp: 1704191017780 -- kind: conda - name: vc - version: '14.3' - build: ha32ba9b_20 - build_number: 20 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_20.conda - sha256: 16cb562ce210ee089060f4aa52f3225a571c83885632a870ea2297d460e3bb00 - md5: 2abfb5cb1b9d41a50f765d60f0be563d - depends: - - vc14_runtime >=14.38.33135 - track_features: - - vc14 - license: BSD-3-Clause - license_family: BSD - size: 17122 - timestamp: 1716231244564 -- kind: conda - name: vc14_runtime - version: 14.38.33135 - build: h835141b_20 - build_number: 20 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33135-h835141b_20.conda - sha256: 05b07e0dd3fd49dcc98a365ff661ed6b65e2f0266b4bb03d273131ffdba663be - md5: e971b35a5765862fabc4ba6e5ddf9470 - depends: - - ucrt >=10.0.20348.0 - constrains: - - vs2015_runtime 14.38.33135.* *_20 - license: LicenseRef-ProprietaryMicrosoft - license_family: Proprietary - size: 744189 - timestamp: 1716231234745 -- kind: conda - name: virtualenv - version: 20.26.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.26.2-pyhd8ed1ab_0.conda - sha256: 1eefd180723fb2fd295352323b53777eeae5765b24d62ae75fc9f1e71b455f11 - md5: 7d36e7a485ea2f5829408813bdbbfb38 - depends: - - distlib <1,>=0.3.7 - - filelock <4,>=3.12.2 - - platformdirs <5,>=3.9.1 - - python >=3.8 - license: MIT - license_family: MIT - size: 3458445 - timestamp: 1715681264937 -- kind: conda - name: vs2015_runtime - version: 14.38.33135 - build: h22015db_20 - build_number: 20 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33135-h22015db_20.conda - sha256: 2cebabc39766ea051e577762d813ad4151e9d0ff96f3ff3374d575a272951416 - md5: bb4f5ab332e46e1b022d8842e72905b1 - depends: - - vc14_runtime >=14.38.33135 - license: BSD-3-Clause - license_family: BSD - size: 17124 - timestamp: 1716231247457 -- kind: conda - name: vtk - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.2.6-qt_py312h1234567_220.conda - sha256: a4bb9493e9e6b75d415b2c6b5547a08f498a37e81e8c74c256f5a2c65a644056 - md5: db449dc60b613f7835293890a0f5a8d1 - depends: - - vtk-base 9.2.6 qt_py312h1234567_220 - - vtk-io-ffmpeg 9.2.6 qt_py312h1234567_220 - license: BSD-3-Clause - license_family: BSD - size: 14071 - timestamp: 1702972681474 -- kind: conda - name: vtk - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/vtk-9.2.6-qt_py312h1234567_220.conda - sha256: 3caf17ee72e05eae0dff5e87231b0352ae1771c86d384a9cdb93ac77d11ddc91 - md5: ec271f1f6ee4e5ca88d5c604c45b7d87 - depends: - - vtk-base 9.2.6 qt_py312h1234567_220 - - vtk-io-ffmpeg 9.2.6 qt_py312h1234567_220 - license: BSD-3-Clause - license_family: BSD - size: 14218 - timestamp: 1702975430499 -- kind: conda - name: vtk - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vtk-9.2.6-qt_py312h1234567_220.conda - sha256: 452aba1a5fe61bd4eb5dce5a49b0b3e01166afb13c2841d3312a0a91c757c6a5 - md5: 8cfb673627c194691af9ca2b8bcb6731 - depends: - - vtk-base 9.2.6 qt_py312h1234567_220 - license: BSD-3-Clause - license_family: BSD - size: 14408 - timestamp: 1702972058602 -- kind: conda - name: vtk-base - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.2.6-qt_py312h1234567_220.conda - sha256: 3d84cf64c682667f653c076516648849d4c52b4af4b5dcf2b67a6fe1e0421d83 - md5: 1dc0327554f77b69e50dd7e000bcb466 - depends: - - double-conversion >=3.3.0,<3.4.0a0 - - eigen - - expat - - freetype >=2.12.1,<3.0a0 - - gl2ps >=1.4.2,<1.4.3.0a0 - - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - jsoncpp >=1.9.5,<1.9.6.0a0 - - libexpat >=2.5.0,<2.6.0a0 - - libgcc-ng >=12 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libogg >=1.3.4,<1.4.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libstdcxx-ng >=12 - - libtheora >=1.1.1,<1.2.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcb >=1.15,<1.16.0a0 - - libxml2 >=2.11.6,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - loguru - - lz4-c >=1.9.3,<1.10.0a0 - - nlohmann_json - - numpy - - proj >=9.3.1,<9.3.2.0a0 - - pugixml >=1.14,<1.15.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - qt-main >=5.15.8,<5.16.0a0 - - sqlite - - tbb >=2021.11.0 - - tbb-devel - - tk >=8.6.13,<8.7.0a0 - - utfcpp - - wslink - - xorg-libice >=1.1.1,<2.0a0 - - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxau >=1.0.11,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxt >=1.3.0,<2.0a0 - - zlib - constrains: - - paraview ==9999999999 - license: BSD-3-Clause - license_family: BSD - size: 41989109 - timestamp: 1702972519915 -- kind: conda - name: vtk-base - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.2.6-qt_py312h1234567_220.conda - sha256: 00aac35c881cda445105d930eec6d01f8f799bdde4f93f5dc663669bdbca8f26 - md5: f121cd2846a820da2456c828b117b0a2 - depends: - - double-conversion >=3.3.0,<3.4.0a0 - - eigen - - expat - - freetype >=2.12.1,<3.0a0 - - gl2ps >=1.4.2,<1.4.3.0a0 - - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - jsoncpp >=1.9.5,<1.9.6.0a0 - - libcxx >=14 - - libexpat >=2.5.0,<2.6.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libogg >=1.3.4,<1.4.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libtheora >=1.1.1,<1.2.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libxml2 >=2.11.6,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - loguru - - lz4-c >=1.9.3,<1.10.0a0 - - nlohmann_json - - numpy - - proj >=9.3.1,<9.3.2.0a0 - - pugixml >=1.14,<1.15.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - qt-main >=5.15.8,<5.16.0a0 - - sqlite - - tbb >=2021.11.0 - - tbb-devel - - tk >=8.6.13,<8.7.0a0 - - utfcpp - - wslink - - zlib - constrains: - - paraview ==9999999999 - license: BSD-3-Clause - license_family: BSD - size: 33922275 - timestamp: 1702975288521 -- kind: conda - name: vtk-base - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vtk-base-9.2.6-qt_py312h1234567_220.conda - sha256: 03673c741503ab3e6b3d4a35ba88f126730869d2949f48bc42255a22d07aff4f - md5: e2fa5ee34dd3cbc25ea2300c361d9924 - depends: - - double-conversion >=3.3.0,<3.4.0a0 - - eigen - - expat - - ffmpeg >=6.1.0,<7.0a0 - - freetype >=2.12.1,<3.0a0 - - gl2ps >=1.4.2,<1.4.3.0a0 - - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.3,<1.14.4.0a0 - - jsoncpp >=1.9.5,<1.9.6.0a0 - - libexpat >=2.5.0,<2.6.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libogg >=1.3.4,<1.4.0a0 - - libpng >=1.6.39,<1.7.0a0 - - libsqlite >=3.44.2,<4.0a0 - - libtheora >=1.1.1,<1.2.0a0 - - libtiff >=4.6.0,<4.7.0a0 - - libxml2 >=2.11.6,<3.0.0a0 - - libzlib >=1.2.13,<2.0.0a0 - - loguru - - lz4-c >=1.9.3,<1.10.0a0 - - nlohmann_json - - numpy - - proj >=9.3.1,<9.3.2.0a0 - - pugixml >=1.14,<1.15.0a0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - qt-main >=5.15.8,<5.16.0a0 - - sqlite - - tbb >=2021.11.0 - - tbb-devel - - ucrt >=10.0.20348.0 - - utfcpp - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - wslink - - zlib - constrains: - - paraview ==9999999999 - license: BSD-3-Clause - license_family: BSD - size: 31227350 - timestamp: 1702971931494 -- kind: conda - name: vtk-io-ffmpeg - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.2.6-qt_py312h1234567_220.conda - sha256: bd964f46f061f86fed5446150b7b892809e83137bf33b59c410ef19eee24c9c0 - md5: dd89b6944ac4f761f20825b51bbc891d - depends: - - ffmpeg >=6.1.0,<7.0a0 - - vtk-base 9.2.6 qt_py312h1234567_220 - license: BSD-3-Clause - license_family: BSD - size: 72000 - timestamp: 1702972671946 -- kind: conda - name: vtk-io-ffmpeg - version: 9.2.6 - build: qt_py312h1234567_220 - build_number: 220 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/vtk-io-ffmpeg-9.2.6-qt_py312h1234567_220.conda - sha256: 6a7a374e125f550311d34e9908cae21259372a3f1c4568b2ecfd91cd5d389748 - md5: c0d13eda6b01270308bbeb4e0f7889a8 - depends: - - ffmpeg >=6.1.0,<7.0a0 - - vtk-base 9.2.6 qt_py312h1234567_220 - license: BSD-3-Clause - license_family: BSD - size: 61973 - timestamp: 1702975418530 -- kind: conda - name: watchdog - version: 4.0.1 - build: py312h2e8e312_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/watchdog-4.0.1-py312h2e8e312_0.conda - sha256: 35c657fd70de86e69dd8fcb04697df660da79410b4098a263acab55d363117ef - md5: 29cbd97528b7f7ce91a59186e391c0db - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - pyyaml >=3.10 - license: Apache-2.0 - license_family: APACHE - size: 162034 - timestamp: 1716562347718 -- kind: conda - name: watchdog - version: 4.0.1 - build: py312h7900ff3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/watchdog-4.0.1-py312h7900ff3_0.conda - sha256: c4786da0c938a65cea07e2bb3fe76dbeed6968c322994c66395176307cf78425 - md5: 7cc94a3b5e9698eecc2c39dbf7a173db - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - pyyaml >=3.10 - license: Apache-2.0 - license_family: APACHE - size: 136444 - timestamp: 1716561872155 -- kind: conda - name: watchdog - version: 4.0.1 - build: py312hbd25219_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/watchdog-4.0.1-py312hbd25219_0.conda - sha256: f20d599605b43e670d2f44a6ad76eb916e9d0980c70ac4df2bc527b3f005590a - md5: 7cecf3b27b6a0ba239695d2992a1a177 - depends: - - __osx >=10.13 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - pyyaml >=3.10 - license: Apache-2.0 - license_family: APACHE - size: 144881 - timestamp: 1716561920161 -- kind: conda - name: wcwidth - version: 0.2.13 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda - sha256: b6cd2fee7e728e620ec736d8dfee29c6c9e2adbd4e695a31f1d8f834a83e57e3 - md5: 68f0738df502a14213624b288c60c9ad - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 32709 - timestamp: 1704731373922 -- kind: conda - name: webcolors - version: '1.13' - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda - sha256: 6e097d5fe92849ad3af2c2a313771ad2fbf1cadd4dc4afd552303b2bf3f85211 - md5: 166212fe82dad8735550030488a01d03 - depends: - - python >=3.5 - license: BSD-3-Clause - license_family: BSD - size: 18186 - timestamp: 1679900907305 -- kind: conda - name: webencodings - version: 0.5.1 - build: pyhd8ed1ab_2 - build_number: 2 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda - sha256: 2adf9bd5482802837bc8814cbe28d7b2a4cbd2e2c52e381329eaa283b3ed1944 - md5: daf5160ff9cde3a468556965329085b9 - depends: - - python >=2.6 - license: BSD-3-Clause - license_family: BSD - size: 15600 - timestamp: 1694681458271 -- kind: conda - name: websocket-client - version: 1.8.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda - sha256: 44a5e3b97feef24cd719f7851cca9af9799dc9c17d3e0298d5856baab2d682f5 - md5: f372c576b8774922da83cda2b12f9d29 - depends: - - python >=3.8 - license: Apache-2.0 - license_family: APACHE - size: 47066 - timestamp: 1713923494501 -- kind: conda - name: wheel - version: 0.43.0 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda - sha256: cb318f066afd6fd64619f14c030569faf3f53e6f50abf743b4c865e7d95b96bc - md5: 0b5293a157c2b5cd513dd1b03d8d3aae - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 57963 - timestamp: 1711546009410 -- kind: conda - name: win32_setctime - version: 1.1.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/win32_setctime-1.1.0-pyhd8ed1ab_0.tar.bz2 - sha256: b2c4dfa3dcf888b9449a4a2fd480b2db4e9167838d91df15fe745f9ba7adff95 - md5: dc80c0c2b01f7d6d6d5df4b63ef54f17 - depends: - - python >=3.5 - license: MIT - license_family: MIT - size: 7389 - timestamp: 1642883658436 -- kind: conda - name: win_inet_pton - version: 1.1.0 - build: pyhd8ed1ab_6 - build_number: 6 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 - sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 - md5: 30878ecc4bd36e8deeea1e3c151b2e0b - depends: - - __win - - python >=3.6 - license: PUBLIC-DOMAIN - size: 8191 - timestamp: 1667051294134 -- kind: conda - name: winpty - version: 0.4.3 - build: '4' - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 - sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 - md5: 1cee351bf20b830d991dbe0bc8cd7dfe - arch: x86_64 - platform: win - license: MIT - license_family: MIT - size: 1176306 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py312h41838bb_0.conda - sha256: 9ed208c4c844c50f161764df7ed7a226c42822917c892ab7c8f67eec6ca96dff - md5: d87798aa7210da2c5eaf96c0346dca00 - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - size: 59057 - timestamp: 1699533259706 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py312h98912ed_0.conda - sha256: dc8431b343961347ad93b33d2d8270e8c15d8825382f4f2540835c94aba2de05 - md5: fa957a1c7bee7e47ad44633caf7be8bc - depends: - - libgcc-ng >=12 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: BSD-2-Clause - license_family: BSD - size: 62482 - timestamp: 1699532968076 -- kind: conda - name: wrapt - version: 1.16.0 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py312he70551f_0.conda - sha256: e4b5ac6c897e68a798dfe13a1499dc9b555c48b468aa477d456807f2a7366c30 - md5: cea7b1aa961de6a8ac90584b5968a01d - depends: - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 61358 - timestamp: 1699533495284 -- kind: conda - name: wslink - version: 2.0.4 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/wslink-2.0.4-pyhd8ed1ab_0.conda - sha256: 8d6b0866c964f3af11afb7bee9dafaddb794cf2b2216e5ebcf1ccbc45d43750f - md5: d51c40c9af5f104d4bb16598efc5b53d - depends: - - aiohttp <4 - - msgpack-python >=1,<2 - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 34198 - timestamp: 1716591663821 -- kind: conda - name: x264 - version: 1!164.3095 - build: h166bdaf_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 - sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 - md5: 6c99772d483f566d59e25037fea2c4b1 - depends: - - libgcc-ng >=12 - license: GPL-2.0-or-later - license_family: GPL - size: 897548 - timestamp: 1660323080555 -- kind: conda - name: x264 - version: 1!164.3095 - build: h775f41a_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 - sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069 - md5: 23e9c3180e2c0f9449bb042914ec2200 - license: GPL-2.0-or-later - license_family: GPL - size: 937077 - timestamp: 1660323305349 -- kind: conda - name: x264 - version: 1!164.3095 - build: h8ffe710_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 - sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249 - md5: 19e39905184459760ccb8cf5c75f148b - depends: - - vc >=14.1,<15 - - vs2015_runtime >=14.16.27033 - license: GPL-2.0-or-later - license_family: GPL - size: 1041889 - timestamp: 1660323726084 -- kind: conda - name: x265 - version: '3.5' - build: h2d74725_3 - build_number: 3 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 - sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2 - md5: ca7129a334198f08347fb19ac98a2de9 - depends: - - vc >=14.1,<15 - - vs2015_runtime >=14.16.27033 - license: GPL-2.0-or-later - license_family: GPL - size: 5517425 - timestamp: 1646611941216 -- kind: conda - name: x265 - version: '3.5' - build: h924138e_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 - sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 - md5: e7f6ed84d4623d52ee581325c1587a6b - depends: - - libgcc-ng >=10.3.0 - - libstdcxx-ng >=10.3.0 - license: GPL-2.0-or-later - license_family: GPL - size: 3357188 - timestamp: 1646609687141 -- kind: conda - name: x265 - version: '3.5' - build: hbb4e6a2_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 - sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4 - md5: a3bf3e95b7795871a6734a784400fcea - depends: - - libcxx >=12.0.1 - license: GPL-2.0-or-later - license_family: GPL - size: 3433205 - timestamp: 1646610148268 -- kind: conda - name: xarray - version: 2024.5.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/xarray-2024.5.0-pyhd8ed1ab_0.conda - sha256: cc5b17254ea131dace72eb3cea1ded242aa650c5dee4e0453eae1ffd699c0141 - md5: e839fd0ae78a368c930f0b1feafa6736 - depends: - - numpy >=1.23 - - packaging >=23.1 - - pandas >=2.0 - - python >=3.9 - constrains: - - hdf5 >=1.12 - - distributed >=2023.4 - - nc-time-axis >=1.4 - - cartopy >=0.21 - - h5py >=3.8 - - h5netcdf >=1.1 - - toolz >=0.12 - - dask-core >=2023.4 - - pint >=0.22 - - scipy >=1.10 - - numba >=0.56 - - cftime >=1.6 - - seaborn >=0.12 - - iris >=3.4 - - zarr >=2.14 - - flox >=0.7 - - bottleneck >=1.3 - - sparse >=0.14 - - matplotlib-base >=3.7 - - netcdf4 >=1.6.0 - license: Apache-2.0 - license_family: APACHE - size: 786586 - timestamp: 1715608167507 -- kind: conda - name: xcb-util - version: 0.4.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-hd590300_1.conda - sha256: 0c91d87f0efdaadd4e56a5f024f8aab20ec30f90aa2ce9e4ebea05fbc20f71ad - md5: 9bfac7ccd94d54fd21a0501296d60424 - depends: - - libgcc-ng >=12 - - libxcb >=1.13 - - libxcb >=1.15,<1.16.0a0 - license: MIT - license_family: MIT - size: 19728 - timestamp: 1684639166048 -- kind: conda - name: xcb-util-image - version: 0.4.0 - build: h8ee46fc_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h8ee46fc_1.conda - sha256: 92ffd68d2801dbc27afe223e04ae7e78ef605fc8575f107113c93c7bafbd15b0 - md5: 9d7bcddf49cbf727730af10e71022c73 - depends: - - libgcc-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - xcb-util >=0.4.0,<0.5.0a0 - license: MIT - license_family: MIT - size: 24474 - timestamp: 1684679894554 -- kind: conda - name: xcb-util-keysyms - version: 0.4.0 - build: h8ee46fc_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h8ee46fc_1.conda - sha256: 8451d92f25d6054a941b962179180728c48c62aab5bf20ac10fef713d5da6a9a - md5: 632413adcd8bc16b515cab87a2932913 - depends: - - libgcc-ng >=12 - - libxcb >=1.15,<1.16.0a0 - license: MIT - license_family: MIT - size: 14186 - timestamp: 1684680497805 -- kind: conda - name: xcb-util-renderutil - version: 0.3.9 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-hd590300_1.conda - sha256: 6987588e6fff5892056021c2ea52f7a0deefb2c7348e70d24750e2d60dabf009 - md5: e995b155d938b6779da6ace6c6b13816 - depends: - - libgcc-ng >=12 - - libxcb >=1.13 - - libxcb >=1.15,<1.16.0a0 - license: MIT - license_family: MIT - size: 16955 - timestamp: 1684639112393 -- kind: conda - name: xcb-util-wm - version: 0.4.1 - build: h8ee46fc_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h8ee46fc_1.conda - sha256: 08ba7147c7579249b6efd33397dc1a8c2404278053165aaecd39280fee705724 - md5: 90108a432fb5c6150ccfee3f03388656 - depends: - - libgcc-ng >=12 - - libxcb >=1.15,<1.16.0a0 - license: MIT - license_family: MIT - size: 52114 - timestamp: 1684679248466 -- kind: conda - name: xerces-c - version: 3.2.5 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.5-h63175ca_0.conda - sha256: 21328b0442f2f86ad5bf14481ed60f56a8ebb765a68d158a57ec6f32eb55762b - md5: b1e07902b6bb7833db8cc4ec32f32dc7 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 3574165 - timestamp: 1703093650967 -- kind: conda - name: xerces-c - version: 3.2.5 - build: hac6953d_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.5-hac6953d_0.conda - sha256: 75d06ca406f03f653d7a3183f2a1ccfdb3a3c6c830493933ec4c3c98e06a32bb - md5: 63b80ca78d29380fe69e69412dcbe4ac - depends: - - icu >=73.2,<74.0a0 - - libcurl >=8.5.0,<9.0a0 - - libgcc-ng >=12 - - libnsl >=2.0.1,<2.1.0a0 - - libstdcxx-ng >=12 - license: Apache-2.0 - license_family: Apache - size: 1636164 - timestamp: 1703092965257 -- kind: conda - name: xerces-c - version: 3.2.5 - build: hbbe9ea5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.5-hbbe9ea5_0.conda - sha256: 10487c0b28ee2303570c6d0867000587a8c36836fffd4d634d8778c494d16965 - md5: ade166000a13c81d9a75f65281e302b0 - depends: - - icu >=73.2,<74.0a0 - - libcurl >=8.5.0,<9.0a0 - - libcxx >=15 - license: Apache-2.0 - license_family: Apache - size: 1346161 - timestamp: 1703093374769 -- kind: conda - name: xkeyboard-config - version: '2.41' - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.41-hd590300_0.conda - sha256: 56955610c0747ea7cb026bb8aa9ef165ff41d616e89894538173b8b7dd2ee49a - md5: 81f740407b45e3f9047b3174fa94eb9e - depends: - - libgcc-ng >=12 - - xorg-libx11 >=1.8.7,<2.0a0 - license: MIT - license_family: MIT - size: 898045 - timestamp: 1707104384997 -- kind: conda - name: xorg-fixesproto - version: '5.0' - build: h7f98852_1002 - build_number: 1002 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 - sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 - md5: 65ad6e1eb4aed2b0611855aff05e04f6 - depends: - - libgcc-ng >=9.3.0 - - xorg-xextproto - license: MIT - license_family: MIT - size: 9122 - timestamp: 1617479697350 -- kind: conda - name: xorg-kbproto - version: 1.0.7 - build: h7f98852_1002 - build_number: 1002 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 - sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 - md5: 4b230e8381279d76131116660f5a241a - depends: - - libgcc-ng >=9.3.0 - license: MIT - license_family: MIT - size: 27338 - timestamp: 1610027759842 -- kind: conda - name: xorg-kbproto - version: 1.0.7 - build: hcd874cb_1002 - build_number: 1002 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2 - sha256: 5b16e1ca1ecc0d2907f236bc4d8e6ecfd8417db013c862a01afb7f9d78e48c09 - md5: 8d11c1dac4756ca57e78c1bfe173bba4 - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 28166 - timestamp: 1610028297505 -- kind: conda - name: xorg-libice - version: 1.1.1 - build: hcd874cb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda - sha256: 353e07e311eb10e934f03e0123d0f05d9b3770a70b0c3993e6d11cf74d85689f - md5: 5271e3af4791170e2c55d02818366916 - depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libx11 >=1.8.4,<2.0a0 - license: MIT - license_family: MIT - size: 158086 - timestamp: 1685308072189 -- kind: conda - name: xorg-libice - version: 1.1.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda - sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236 - md5: b462a33c0be1421532f28bfe8f4a7514 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 58469 - timestamp: 1685307573114 -- kind: conda - name: xorg-libsm - version: 1.2.4 - build: h7391055_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda - sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1 - md5: 93ee23f12bc2e684548181256edd2cf6 - depends: - - libgcc-ng >=12 - - libuuid >=2.38.1,<3.0a0 - - xorg-libice >=1.1.1,<2.0a0 - license: MIT - license_family: MIT - size: 27433 - timestamp: 1685453649160 -- kind: conda - name: xorg-libsm - version: 1.2.4 - build: hcd874cb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda - sha256: 3a8cc151142c379d3ec3ec4420395d3a273873d3a45a94cd3038d143f5a519e8 - md5: 25926681339df15918243d9a7cec25a1 - depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libice >=1.1.1,<2.0a0 - license: MIT - license_family: MIT - size: 86397 - timestamp: 1685454296879 -- kind: conda - name: xorg-libx11 - version: 1.8.9 - build: h8ee46fc_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda - sha256: 3e53ba247f1ad68353f18aceba5bf8ce87e3dea930de85d36946844a7658c9fb - md5: 077b6e8ad6a3ddb741fce2496dd01bec - depends: - - libgcc-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - xorg-kbproto - - xorg-xextproto >=7.3.0,<8.0a0 - - xorg-xproto - license: MIT - license_family: MIT - size: 828060 - timestamp: 1712415742569 -- kind: conda - name: xorg-libx11 - version: 1.8.9 - build: hefa74cf_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.9-hefa74cf_0.conda - sha256: 15217b9180ff7d6840762363647fabcb79636517454d2c05dd69cb3fc38a1001 - md5: 3672e991346895f332af1ebc60b8bca9 - depends: - - libxcb >=1.15,<1.16.0a0 - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-kbproto - - xorg-xextproto >=7.3.0,<8.0a0 - - xorg-xproto - license: MIT - license_family: MIT - size: 814566 - timestamp: 1712416687331 -- kind: conda - name: xorg-libxau - version: 1.0.11 - build: h0dc2134_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda - sha256: 8a2e398c4f06f10c64e69f56bcf3ddfa30b432201446a0893505e735b346619a - md5: 9566b4c29274125b0266d0177b5eb97b - license: MIT - license_family: MIT - size: 13071 - timestamp: 1684638167647 -- kind: conda - name: xorg-libxau - version: 1.0.11 - build: hcd874cb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda - sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77 - md5: c46ba8712093cb0114404ae8a7582e1a - depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - license: MIT - license_family: MIT - size: 51297 - timestamp: 1684638355740 -- kind: conda - name: xorg-libxau - version: 1.0.11 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda - sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 - md5: 2c80dc38fface310c9bd81b17037fee5 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 14468 - timestamp: 1684637984591 -- kind: conda - name: xorg-libxdmcp - version: 1.1.3 - build: h35c211d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2 - sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f - md5: 86ac76d6bf1cbb9621943eb3bd9ae36e - license: MIT - license_family: MIT - size: 17225 - timestamp: 1610071995461 -- kind: conda - name: xorg-libxdmcp - version: 1.1.3 - build: h7f98852_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 - sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 - md5: be93aabceefa2fac576e971aef407908 - depends: - - libgcc-ng >=9.3.0 - license: MIT - license_family: MIT - size: 19126 - timestamp: 1610071769228 -- kind: conda - name: xorg-libxdmcp - version: 1.1.3 - build: hcd874cb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 - sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93 - md5: 46878ebb6b9cbd8afcf8088d7ef00ece - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 67908 - timestamp: 1610072296570 -- kind: conda - name: xorg-libxext - version: 1.3.4 - build: h0b41bf4_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda - sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 - md5: 82b6df12252e6f32402b96dacc656fec - depends: - - libgcc-ng >=12 - - xorg-libx11 >=1.7.2,<2.0a0 - - xorg-xextproto - license: MIT - license_family: MIT - size: 50143 - timestamp: 1677036907815 -- kind: conda - name: xorg-libxext - version: 1.3.4 - build: hcd874cb_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda - sha256: 829320f05866ea1cc51924828427f215f4d0db093e748a662e3bb68b764785a4 - md5: 2aa695ac3c56193fd8d526e3b511e021 - depends: - - m2w64-gcc-libs - - xorg-libx11 >=1.7.2,<2.0a0 - - xorg-xextproto - license: MIT - license_family: MIT - size: 221821 - timestamp: 1677038179908 -- kind: conda - name: xorg-libxfixes - version: 5.0.3 - build: h7f98852_1004 - build_number: 1004 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 - sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 - md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a - depends: - - libgcc-ng >=9.3.0 - - xorg-fixesproto - - xorg-libx11 >=1.7.0,<2.0a0 - license: MIT - license_family: MIT - size: 18145 - timestamp: 1617717802636 -- kind: conda - name: xorg-libxpm - version: 3.5.17 - build: hcd874cb_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda - sha256: d5cc2f026658e8b85679813bff35c16c857f873ba02489e6eb6e30d5865dacc4 - md5: 029be9b667bf3896fa28bc32adb1bfc3 - depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxt >=1.3.0,<2.0a0 - - xorg-xextproto >=7.3.0,<8.0a0 - - xorg-xproto - license: MIT - license_family: MIT - size: 195881 - timestamp: 1696449889560 -- kind: conda - name: xorg-libxrender - version: 0.9.11 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda - sha256: 26da4d1911473c965c32ce2b4ff7572349719eaacb88a066db8d968a4132c3f7 - md5: ed67c36f215b310412b2af935bf3e530 - depends: - - libgcc-ng >=12 - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-renderproto - license: MIT - license_family: MIT - size: 37770 - timestamp: 1688300707994 -- kind: conda - name: xorg-libxt - version: 1.3.0 - build: hcd874cb_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda - sha256: d513e0c627f098ef6655ce188eca79a672eaf763b0bbf37b228cb46dc82a66ca - md5: 511a29edd2ff3d973f63e54f19dcc06e - depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-kbproto - - xorg-libice >=1.1.1,<2.0a0 - - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-xproto - license: MIT - license_family: MIT - size: 671704 - timestamp: 1690289114426 -- kind: conda - name: xorg-libxt - version: 1.3.0 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda - sha256: e7648d1efe2e858c4bc63ccf4a637c841dc971b37ded85a01be97a5e240fecfa - md5: ae92aab42726eb29d16488924f7312cb - depends: - - libgcc-ng >=12 - - xorg-kbproto - - xorg-libice >=1.1.1,<2.0a0 - - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-xproto - license: MIT - license_family: MIT - size: 379256 - timestamp: 1690288540492 -- kind: conda - name: xorg-renderproto - version: 0.11.1 - build: h7f98852_1002 - build_number: 1002 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 - sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 - md5: 06feff3d2634e3097ce2fe681474b534 - depends: - - libgcc-ng >=9.3.0 - license: MIT - license_family: MIT - size: 9621 - timestamp: 1614866326326 -- kind: conda - name: xorg-xextproto - version: 7.3.0 - build: h0b41bf4_1003 - build_number: 1003 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda - sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 - md5: bce9f945da8ad2ae9b1d7165a64d0f87 - depends: - - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 30270 - timestamp: 1677036833037 -- kind: conda - name: xorg-xextproto - version: 7.3.0 - build: hcd874cb_1003 - build_number: 1003 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda - sha256: 04c0a08fd34fa33406c20f729e8f9cc40e8fd898072b952a5c14280fcf26f2e6 - md5: 6e6c2639620e436bddb7c040cd4f3adb - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 31034 - timestamp: 1677037259999 -- kind: conda - name: xorg-xf86vidmodeproto - version: 2.3.1 - build: h7f98852_1002 - build_number: 1002 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-h7f98852_1002.tar.bz2 - sha256: 43398aeacad5b8753b7a1c12cb6bca36124e0c842330372635879c350c430791 - md5: 3ceea9668625c18f19530de98b15d5b0 - depends: - - libgcc-ng >=9.3.0 - license: MIT - license_family: MIT - size: 23875 - timestamp: 1620067286978 -- kind: conda - name: xorg-xproto - version: 7.0.31 - build: h7f98852_1007 - build_number: 1007 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 - sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d - md5: b4a4381d54784606820704f7b5f05a15 - depends: - - libgcc-ng >=9.3.0 - license: MIT - license_family: MIT - size: 74922 - timestamp: 1607291557628 -- kind: conda - name: xorg-xproto - version: 7.0.31 - build: hcd874cb_1007 - build_number: 1007 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2 - sha256: b84cacba8479fa14199c9255fb62e005cacc619e90198c53b1653973709ec331 - md5: 88f3c65d2ad13826a9e0b162063be023 - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 75708 - timestamp: 1607292254607 -- kind: conda - name: xugrid - version: 0.10.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/xugrid-0.10.0-pyhd8ed1ab_0.conda - sha256: cf9b0c63b573405d5ac34a35819d98c10884abb0d49b19af0fc7414f8f44fa00 - md5: 7ef2f388e3b2adcecfed74591bff2451 - depends: - - dask - - geopandas - - numba >=0.50 - - numba_celltree - - numpy - - pandas - - pooch - - python >=3.9 - - scipy - - shapely >=2.0 - - xarray >=0.15 - license: MIT - license_family: MIT - size: 94214 - timestamp: 1714580639671 -- kind: conda - name: xyzservices - version: 2024.4.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2024.4.0-pyhd8ed1ab_0.conda - sha256: 4e095631b52a78bbd9b53f28eb79b0c8f448d9509cf0451e99c2f3f85576f114 - md5: 93dffc47dadbe36a1a644f3f50d4979d - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 46179 - timestamp: 1712210047952 -- kind: conda - name: xz - version: 5.2.6 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - md5: 2161070d867d1b1204ea749c8eec4ef0 - depends: - - libgcc-ng >=12 - license: LGPL-2.1 and GPL-2.0 - size: 418368 - timestamp: 1660346797927 -- kind: conda - name: xz - version: 5.2.6 - build: h775f41a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 - md5: a72f9d4ea13d55d745ff1ed594747f10 - license: LGPL-2.1 and GPL-2.0 - size: 238119 - timestamp: 1660346964847 -- kind: conda - name: xz - version: 5.2.6 - build: h8d14728_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 - md5: 515d77642eaa3639413c6b1bc3f94219 - depends: - - vc >=14.1,<15 - - vs2015_runtime >=14.16.27033 - license: LGPL-2.1 and GPL-2.0 - size: 217804 - timestamp: 1660346976440 -- kind: conda - name: yaml - version: 0.2.5 - build: h0d85af4_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 - sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 - md5: d7e08fcf8259d742156188e8762b4d20 - license: MIT - license_family: MIT - size: 84237 - timestamp: 1641347062780 -- kind: conda - name: yaml - version: 0.2.5 - build: h7f98852_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 - md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae - depends: - - libgcc-ng >=9.4.0 - license: MIT - license_family: MIT - size: 89141 - timestamp: 1641346969816 -- kind: conda - name: yaml - version: 0.2.5 - build: h8ffe710_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 - sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 - md5: adbfb9f45d1004a26763652246a33764 - depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: MIT - license_family: MIT - size: 63274 - timestamp: 1641347623319 -- kind: conda - name: yarl - version: 1.9.4 - build: py312h41838bb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/yarl-1.9.4-py312h41838bb_0.conda - sha256: 748199e3d7725e8e50c6b3d87066de383a2bedd8248d89dd80c8c6e78f2bc8b9 - md5: 5d15d92a788612cf319ecfac53e0c542 - depends: - - idna >=2.0 - - multidict >=4.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - size: 111929 - timestamp: 1705508793012 -- kind: conda - name: yarl - version: 1.9.4 - build: py312h98912ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.9.4-py312h98912ed_0.conda - sha256: 7bf7e32c5a18a1c5d21e0b7891133fb0cd38774f8014acdc5b548c601d4d47c3 - md5: ec3eb4803df33e90a41bc216a68d02f1 - depends: - - idna >=2.0 - - libgcc-ng >=12 - - multidict >=4.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: Apache-2.0 - license_family: Apache - size: 120673 - timestamp: 1705508484830 -- kind: conda - name: yarl - version: 1.9.4 - build: py312he70551f_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/yarl-1.9.4-py312he70551f_0.conda - sha256: 57089bd47731282b4f58c378b4711f397393e6e1c8252aa49af881e36685e07d - md5: 9dee8a153f1644fbc66c40bcda96bf59 - depends: - - idna >=2.0 - - multidict >=4.0 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Apache-2.0 - license_family: Apache - size: 111720 - timestamp: 1705509335395 -- kind: conda - name: zarr - version: 2.18.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.18.2-pyhd8ed1ab_0.conda - sha256: 16685f7412d79345732e889595a881ee320b85abd44f7244c0f7e628d9d976ec - md5: 02f53038910b6fbc9d36bd5f663318e8 - depends: - - asciitree - - fasteners - - numcodecs >=0.10.0 - - numpy >=1.23 - - python >=3.9 - constrains: - - notebook - - ipywidgets >=8.0.0 - - ipytree >=0.2.2 - license: MIT - license_family: MIT - size: 160260 - timestamp: 1716779819794 -- kind: conda - name: zeromq - version: 4.3.5 - build: h75354e8_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h75354e8_4.conda - sha256: bc9aaee39e7be107d7daff237435dfd8f791aca460a98583a36a263615205262 - md5: 03cc8d9838ad9dd0060ab532e81ccb21 - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libgcc-ng >=12 - - libsodium >=1.0.18,<1.0.19.0a0 - - libstdcxx-ng >=12 - license: MPL-2.0 - license_family: MOZILLA - size: 353229 - timestamp: 1715607188837 -- kind: conda - name: zeromq - version: 4.3.5 - build: hde137ed_4 - build_number: 4 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-hde137ed_4.conda - sha256: 871625ce993e6c61649b14659a3d1d6011fbb242b7d6a25cadbc6300b2356f32 - md5: e56609055da6c658aa329d42a6c6b9f2 - depends: - - __osx >=10.13 - - krb5 >=1.21.2,<1.22.0a0 - - libcxx >=16 - - libsodium >=1.0.18,<1.0.19.0a0 - license: MPL-2.0 - license_family: MOZILLA - size: 304498 - timestamp: 1715607961981 -- kind: conda - name: zeromq - version: 4.3.5 - build: he1f189c_4 - build_number: 4 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-he1f189c_4.conda - sha256: 0f375034a88659f764ce837f324698a883da227fcb517561ffaf6a89474211b4 - md5: b755eb545c2728b9a53729f02e627834 - depends: - - krb5 >=1.21.2,<1.22.0a0 - - libsodium >=1.0.18,<1.0.19.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MPL-2.0 - license_family: MOZILLA - size: 2707065 - timestamp: 1715607874610 -- kind: conda - name: zict - version: 3.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_0.conda - sha256: 3d65c081514569ab3642ba7e6c2a6b4615778b596db6b1c82ee30a2d912539e5 - md5: cf30c2c15b82aacb07f9c09e28ff2275 - depends: - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 36325 - timestamp: 1681770298596 -- kind: conda - name: zipp - version: 3.17.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26 - md5: 2e4d6bc0b14e10f895fc6791a7d9b26a - depends: - - python >=3.8 - license: MIT - license_family: MIT - size: 18954 - timestamp: 1695255262261 -- kind: conda - name: zlib - version: 1.2.13 - build: h2466b09_6 - build_number: 6 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-h2466b09_6.conda - sha256: 7aebf311fdb9227deddaedc33ace85bc960f5116ffb31f3ff07db380dfca0b41 - md5: 86591a585a18e35d23279b6b384eb4b9 - depends: - - libzlib 1.2.13 h2466b09_6 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: Zlib - license_family: Other - size: 107894 - timestamp: 1716874644593 -- kind: conda - name: zlib - version: 1.2.13 - build: h4ab18f5_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h4ab18f5_6.conda - sha256: 534824ea44939f3e59ca8ebb95e3ece6f50f9d2a0e69999fbc692311252ed6ac - md5: 559d338a4234c2ad6e676f460a093e67 - depends: - - libgcc-ng >=12 - - libzlib 1.2.13 h4ab18f5_6 - license: Zlib - license_family: Other - size: 92883 - timestamp: 1716874088980 -- kind: conda - name: zlib - version: 1.2.13 - build: h87427d6_6 - build_number: 6 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h87427d6_6.conda - sha256: 3091d48a579c08ba20885bc8856def925e9dee9d1a7d8713e3ce002eb29fcd19 - md5: 700b922d6d22e7deb5fb2964d0c8cf6a - depends: - - __osx >=10.13 - - libzlib 1.2.13 h87427d6_6 - license: Zlib - license_family: Other - size: 88732 - timestamp: 1716874218187 -- kind: conda - name: zstd - version: 1.5.6 - build: h0ea2cb4_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda - sha256: 768e30dc513568491818fb068ee867c57c514b553915536da09e5d10b4ebf3c3 - md5: 9a17230f95733c04dc40a2b1e5491d74 - depends: - - libzlib >=1.2.13,<2.0.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 349143 - timestamp: 1714723445995 -- kind: conda - name: zstd - version: 1.5.6 - build: h915ae27_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda - sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 - md5: 4cb2cd56f039b129bb0e491c1164167e - depends: - - __osx >=10.9 - - libzlib >=1.2.13,<2.0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 498900 - timestamp: 1714723303098 -- kind: conda - name: zstd - version: 1.5.6 - build: ha6fb4c9_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda - sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b - md5: 4d056880988120e29d75bfff282e0f45 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 554846 - timestamp: 1714722996770 From dbe30e5725390b1f83b7fb7659ee616b93b5dd72 Mon Sep 17 00:00:00 2001 From: HendrikKok Date: Fri, 5 Jul 2024 12:59:50 +0200 Subject: [PATCH 2/3] resolve review comments --- docs/coupler_ribametamod_preprocessing.qmd | 47 +++++++++------------- 1 file changed, 20 insertions(+), 27 deletions(-) diff --git a/docs/coupler_ribametamod_preprocessing.qmd b/docs/coupler_ribametamod_preprocessing.qmd index 5326e17..28a90b6 100644 --- a/docs/coupler_ribametamod_preprocessing.qmd +++ b/docs/coupler_ribametamod_preprocessing.qmd @@ -2,11 +2,9 @@ title: Pre-processing --- -This document describes how to setup a coupled Ribasim-MetaSWAP-MODFLOW6 model. The `primod` Python package is used to setting up coupled models. It takes all three models, derives the exchange relationships, and writes: +This document describes how to set up a coupled Ribasim-MetaSWAP-MODFLOW 6 model. The `primod` Python package is used for setting up a coupled model. It uses the three models, updateds modelinput, derives the exchange relationships, and writes: -* the Ribasim model -* the MetaSWAP model -* the MODFLOW 6 simulation +* the model input files * the exchange files * the iMOD coupler configuration file * the optional logging configuration file @@ -35,7 +33,7 @@ does not support this yet. Initialising this model can be scripted. The [RibaMetaMod](primod_api/RibaMetaMod.html#primod.RibaMetaMod) class includes three seperate couplings. ### MODFLOW 6 and MetaSWAP -This coupling is equal to the [MetaMod](primod_api/MetaMod.html#primod.MetaMod) driver. This coupling requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages: +This coupling is equal to the [MetaMod](primod_api/MetaMod.html#primod.MetaMod) driver and requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages: * [Recharge](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Recharge.html) for the exchange of the flux from the unstaurated zone. * [Wel](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Wel.html) for the optional exchange of irrigation from groundwater @@ -46,9 +44,12 @@ This coupling requires the following [MetaSWAP](https://deltares.github.io/imod- * [LanduseOptions](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.LanduseOptions.html) to specify the irrigation regime. ### MODFLOW 6 and Ribasim -This coupling is equal to the one of [RibaMod](primod_api/RibaMod.html#primod.RibaMod). This coupling requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages: +This coupling is equal to the one of [RibaMod](primod_api/RibaMod.html#primod.RibaMod) and requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages for exchangeing stage (active) and flux (active and passive): -* [River](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) and/or [Drainage](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Drainage.html) to exchange stage (active) and/or flux (active and passive). +* [River](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) +* [Drainage](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Drainage.html) + +These packages can be used interchangeably This coupling has the folowing requirement on the Ribasim model: @@ -73,16 +74,16 @@ This coupling is used for routing runoff at the subsurface to the Ribasim basins * [Ponding](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.Ponding.html) to define the ponding level at which runoff is generated. -Optionally the irrigation from surface water can be coupled to the [UserDemand](https://deltares.github.io/Ribasim/reference/node/user-demand.html) in Ribasim. In that case the sprinkling realised in MetaSWAP, depends on the water availability for the [UserDemand](https://deltares.github.io/Ribasim/reference/node/user-demand.html) in Ribasim. This coupling requires the following [MetaSWAP](https://deltares.github.io/imod-python/api/msw.html) packages: +Optionally the irrigation from surface water can be coupled to the [UserDemand](https://deltares.github.io/Ribasim/reference/node/user-demand.html) in Ribasim. In that case the sprinkling realized in MetaSWAP, depends on the water availability for the [UserDemand](https://deltares.github.io/Ribasim/reference/node/user-demand.html) in Ribasim. This coupling requires the following [MetaSWAP](https://deltares.github.io/imod-python/api/msw.html) packages: * [Sprinkling](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.Sprinkling.html) to define the maximum irrigation rates. * [LanduseOptions](https://deltares.github.io/imod-python/api/generated/msw/imod.msw.LanduseOptions.html) to specify the irrigation regime. This coupling has the following requirements on the Ribasim model: -* There should be [User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) defined with one priority per coupled water user. For this priority there should be a rate defined > 0.0 +* There should be [User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) defined with one priority per coupled water user. For this priority there should be a rate defined > 0.0. This specified rate will be replaced with the coupled MetaSWAP demands. -If [Allocation](https://deltares.github.io/Ribasim/reference/python/Allocation.html#ribasim.Allocation) is active in the Ribasim model, The demand-realisation cyle is based on the user priority and the water availibility. When it's inactive its based on water availibility alone. +If [Allocation](https://deltares.github.io/Ribasim/reference/python/Allocation.html#ribasim.Allocation) is active in the Ribasim model, The demand-realization cyle is based on the user priority and the water availibility. When it's inactive its based on water availibility alone. ## Coupling and model extents @@ -184,10 +185,10 @@ Ribasim and MODFLOW : For the flux exchange, the Overlay is based on the [river](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) conductance. The indices are based on the package level. For the stage exchange, the mapping is based on the x and y locations of the [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) elements. For every [river](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.River.html) conductance gridcell the neirest [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) element is found. Ribasim and MetaSWAP -: For Runoff exchange the Overlay is based on the basin definition and all active SVATS. For the irrigation of surface water, the Overlay is based on the water user definition and all SVATS where irrigation from surface water is active. +: For Runoff exchange the overlay is based on the basin definition and all active SVATS. For the irrigation of surface water, the Overlay is based on the water user definition and all SVATS for which irrigation from surface water is active. MODFLOW 6 and MetaSWAP -: The grid based recharge, storage and well exchange is based on overlapping xy-coordinates. The optional 1-N coupling between MODFLOW 6 and MetaSWAP is based on the subunit coordinate in the MetaSWAP model. +: The grid-based recharge, storage and well exchange is based on overlapping xy-coordinates. The optional 1-N coupling between MODFLOW 6 and MetaSWAP is based on the subunit coordinate in the MetaSWAP model. ## Modifications to the models @@ -196,25 +197,17 @@ Ribasim : The `primod.RibaMod` class makes the following alteration to the Ribasim input before writing the Ribasim model: -* for basins that are coupled to MODFLOW 6, -the infiltration and drainage columns are set to `NaN` / `Null` (nodata) in -the Basin / Static or Basin / Time tables. - -This ensures that Ribasim does not overwrite the exchange flows while running -coupled with MODFLOW 6. - -Conceptually, it also means that when a basin is coupled, it should generally -located inside of the MODFLOW 6 model; after all, when half of the basin is -located outside of the MODFLOW 6 model, it will not receive drainage or lose -water to infiltration in that half. +* for basins coupled to MODFLOW 6, +the "infiltration and drainage" columns are set to `NaN` / `Null` (nodata) in +the Basin / Static or Basin / Time tables. This ensures that Ribasim does not overwrite the exchange flows while running coupled with MODFLOW 6. -* For all [User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) coupled to MetaSWAP, the rate is set to zero after initialisation of the iMOD-coupler. The rate > 0 is needed to find the coupled indices from the internal -[User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) array. +Coupled basins should entirely fall within the MODFLOW 6 domain. +The portion outside the MODFLOW 6 domain is excluded from infiltration and drainage. Modflow 6 -: For all actively coupled RIV packages an API-package is added to the simulation. This package is used to return the correction flux. When making a water-balance from the MODFLOW 6 output, this package output should be summed with the RIV output +: For all actively coupled RIV packages an API-package is added to the simulation. This package is used to apply the flux correction. In a water-balance from the MODFLOW 6 output, this package output should be added RIV output MetaSWAP -: curently no modifications are made in the MetaSWAP model +: Currently no modifications are made in the MetaSWAP model From 30d404c0296d6a5f29b178ab43b4dee5c9c3be45 Mon Sep 17 00:00:00 2001 From: HendrikKok Date: Fri, 5 Jul 2024 13:04:56 +0200 Subject: [PATCH 3/3] typo's --- docs/coupler_ribametamod_preprocessing.qmd | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/coupler_ribametamod_preprocessing.qmd b/docs/coupler_ribametamod_preprocessing.qmd index 28a90b6..55dc27b 100644 --- a/docs/coupler_ribametamod_preprocessing.qmd +++ b/docs/coupler_ribametamod_preprocessing.qmd @@ -30,7 +30,7 @@ does not support this yet. Initialising this model can be scripted. ## Coupling and model requirements -The [RibaMetaMod](primod_api/RibaMetaMod.html#primod.RibaMetaMod) class includes three seperate couplings. +The [RibaMetaMod](primod_api/RibaMetaMod.html#primod.RibaMetaMod) class includes three separate couplings. ### MODFLOW 6 and MetaSWAP This coupling is equal to the [MetaMod](primod_api/MetaMod.html#primod.MetaMod) driver and requires the following [MODFLOW](https://deltares.github.io/imod-python/api/mf6.html) packages: @@ -51,7 +51,7 @@ This coupling is equal to the one of [RibaMod](primod_api/RibaMod.html#primod.Ri These packages can be used interchangeably -This coupling has the folowing requirement on the Ribasim model: +This coupling has the following requirement on the Ribasim model: * The [Basins](https://deltares.github.io/Ribasim/reference/node/basin.html) need to be set up with a [subgrid](https://deltares.github.io/Ribasim/reference/node/basin.html#subgrid) for active coupling. @@ -83,7 +83,7 @@ This coupling has the following requirements on the Ribasim model: * There should be [User_demand](https://deltares.github.io/Ribasim/reference/python/Model.html#ribasim.Model.user_demand) defined with one priority per coupled water user. For this priority there should be a rate defined > 0.0. This specified rate will be replaced with the coupled MetaSWAP demands. -If [Allocation](https://deltares.github.io/Ribasim/reference/python/Allocation.html#ribasim.Allocation) is active in the Ribasim model, The demand-realization cyle is based on the user priority and the water availibility. When it's inactive its based on water availibility alone. +If [Allocation](https://deltares.github.io/Ribasim/reference/python/Allocation.html#ribasim.Allocation) is active in the Ribasim model, The demand-realization cycle is based on the user priority and the water availability. When it's inactive its based on water availability alone. ## Coupling and model extents @@ -95,7 +95,7 @@ If [Allocation](https://deltares.github.io/Ribasim/reference/python/Allocation.h Ribasim. Boundaries outside of any basin polygon will simply use the regular file input. + Not every MetaSWAP SVAT need to be linked with Ribasim. For uncoupled SVATS, runoff is not routed via the surface water and irrigation from surface water is unlimited. - + The MetaSWAP model does not need to be active in the complete MODFLOW 6 simulation window. Uncoupled MODFLOW 6 nodes can have an aditional [RCH](https://deltares.github.io/imod-python/api/generated/msw/imod.mf6.Recharge.html) and [EVT](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Evapotranspiration.html) package. + + The MetaSWAP model does not need to be active in the complete MODFLOW 6 simulation window. Uncoupled MODFLOW 6 nodes can have an additional [RCH](https://deltares.github.io/imod-python/api/generated/msw/imod.mf6.Recharge.html) and [EVT](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Evapotranspiration.html) package. ## Abbreviated examples of coupling @@ -155,10 +155,10 @@ ribametamod_model.write( ) ``` -For including the optional coupling of irrigation from surface water, the folowing adition can be done: +For including the optional coupling of irrigation from surface water, the following addition can be done: ``` python -# read aditional water-user definition polygon +# read additional water-user definition polygon water_users_definition = gpd.read_file("ribasim_network.gpkg", layer="water_user_areas") # add water-user definition to the RibaMetaDriverCoupling @@ -172,7 +172,7 @@ driver_coupling_ribameta = primod.RibaMetaDriverCoupling( ``` ## Exchange derivation -The exchanges are derived based on spatial overlap of the models. In general all couplings with ribasim are based on a spatial overlap of the basin and/or water user definition polygons. The coupling between MODFLOW 6 6 and MetaSWAP is based on overlapping grid based coordinates. The coupling based on polygon defninitions is done in the folowing way: +The exchanges are derived based on spatial overlap of the models. In general all couplings with ribasim are based on a spatial overlap of the basin and/or water user definition polygons. The coupling between MODFLOW 6 6 and MetaSWAP is based on overlapping grid based coordinates. The coupling based on polygon definitions is done in the following way: * Rasterize the basin and/or Water users definition polygons (provided as a `geopandas.GeoDataFrame`) to the MODFLOW 6 or MetaSWAP model grid.