diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml
index 0040aa2..0f102c2 100644
--- a/.github/workflows/build_and_test.yaml
+++ b/.github/workflows/build_and_test.yaml
@@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v5
- name: Set up pixi
- uses: prefix-dev/setup-pixi@v0.9.2
+ uses: prefix-dev/setup-pixi@v0.9.3
with:
environments: dashboard
diff --git a/.github/workflows/pixi_build.yaml b/.github/workflows/pixi_build.yaml
index f659c8a..dda6014 100644
--- a/.github/workflows/pixi_build.yaml
+++ b/.github/workflows/pixi_build.yaml
@@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v5
- name: Set up pixi
- uses: prefix-dev/setup-pixi@v0.9.2
+ uses: prefix-dev/setup-pixi@v0.9.3
with:
environments: default
diff --git a/.github/workflows/run-checks.yml b/.github/workflows/run-checks.yml
index 9e239ed..67c4f93 100644
--- a/.github/workflows/run-checks.yml
+++ b/.github/workflows/run-checks.yml
@@ -20,7 +20,8 @@ jobs:
{
"MD013": false,
"MD033": false,
- "MD034": false
+ "MD034": false,
+ "MD041": false
}
EOF
- name: Lint markdown files (markdownlint)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c45974b..92adfb4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# FANS Changelog
+## v0.6.0
+
+- Introduce MaterialManager abstraction class to handle multiple material models within the microstructure [#115](https://github.com/DataAnalyticsEngineering/FANS/pull/115)
+- Bugfix: `homogenized_tangent` was computed but not written to HDF5 output [#113](https://github.com/DataAnalyticsEngineering/FANS/pull/113)
+
## v0.5.2
- Bugfix: Fix bad initial guess for time steps > 0 [#109](https://github.com/DataAnalyticsEngineering/FANS/pull/109)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 485cfe8..57be65d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.21)
# ##############################################################################
project(FANS
- VERSION 0.5.2
+ VERSION 0.6.0
LANGUAGES C CXX
)
@@ -151,6 +151,7 @@ target_include_directories(FANS_FANS PUBLIC $
+
+
-
+
+
+
+
+
+
+
+
-## Table of contents
+# Fourier-Accelerated Nodal Solver (FANS)
-- [Dependencies](#dependencies)
-- [Building](#building)
-- [Installing](#installing)
-- [Input File Format](#input-file-format)
+Fourier-Accelerated Nodal Solver (FANS) is an FFT-based homogenization solver for microscale multiphysics problems. FANS is written in C++, built using CMake, and it has MPI parallelization.
-## Dependencies
+## Table of Contents
-FANS has the following dependencies:
+- [Quick start](#quick-start)
+- [Build from source](#build-from-source)
+ - [Installing dependencies](#installing-dependencies)
+ - [Building FANS](#building-fans)
+- [Python environment for the FANS dashboard](#python-environment-for-the-fans-dashboard)
+- [Input file format](#input-file-format)
+ - [Microstructure definition](#microstructure-definition)
+ - [Problem type and material model](#problem-type-and-material-model)
+ - [Solver settings](#solver-settings)
+ - [Macroscale loading conditions](#macroscale-loading-conditions)
+ - [Results specification](#results-specification)
-- A C++ compiler (e.g., GCC, Clang, etc.)
-- CMake (version 3.21 or higher)
-- Git (for cloning this repo)
-- MPI (mpicc and mpic++)
-- HDF5 with MPI support
-- Eigen3
-- FFTW3 with MPI support
-- nlohmann-json (for JSON input parsing)
+## Quick start
-### Installing dependencies
+**Want to get started immediately?**
+
+FANS is available as a precompiled binary on [conda-forge](https://anaconda.org/conda-forge/fans). Package managers such as [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html), [mamba](https://mamba.readthedocs.io/en/latest/installation/mamba-installation.html), [micromamba](https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html), and [Pixi](https://pixi.sh) can be used to install FANS from the conda-forge channel.
+
+Use [Pixi](https://pixi.sh) (recommended):
+
+```bash
+# Install Pixi (if not already installed)
+curl -fsSL https://pixi.sh/install.sh | sh
+
+# Install FANS via Pixi
+pixi global install fans
+
+# Verify installation
+FANS --version
+```
+
+That's it! No dependencies to install, no compilation needed π
+
+To get started immediately, we include ready to use example [input files](test/input_files/) and [microstructures](test/microstructures/) you can use as templates to create your own.
+
+---
+
+## Build from source
-- On Debian-based systems, we recommend installing the dependencies using `apt`,
+**Recommended for:** Developers, contributors, HPC users, or those needing custom builds.
- ```bash
- apt-get install \
- libhdf5-dev \
- libhdf5-openmpi-dev \
- libopenmpi-dev \
- libeigen3-dev \
- libfftw3-dev \
- libfftw3-mpi-dev \
- nlohmann-json3-dev
- ```
+FANS requires the following dependencies:
-- On macOS, you can obtain the dependencies using `brew` and set the environment variables:
+| Dependency | Purpose | |
+|------------|---------|------------------|
+| **C++ Compiler** | (GCC, Clang, etc.) | C++17 or newer |
+| **CMake** | Build system | β₯ 3.21 |
+| **MPI** | Parallel computing | (OpenMPI, MPICH, Intel MPI) |
+| **HDF5** | Data I/O | **with MPI support** |
+| **FFTW3** | FFT computations | **with MPI support** |
+| **Eigen3** | Linear algebra | β₯ 3.4 |
+| **nlohmann-json** | JSON parsing | β₯ 3.11 |
- ```zsh
- brew install gnu-time cmake gcc@15
- brew install open-mpi --build-from-source --cc=gcc-15
- brew install hdf5-mpi --build-from-source --cc=gcc-15
- brew install fftw eigen nlohmann-json
+### Installing dependencies
- export CC=gcc-15 CXX=g++-15 MPICC=mpicc MPICXX=mpicxx
- ```
+
-### Setting up a Python environment
+ Using Pixi (Cross-platform - Easiest for source builds)
-Also, we recommend setting up a Python virtual environment for the [`FANS_Dashboard.ipynb`](FANS_Dashboard/FANS_Dashboard.ipynb) via [pixi](https://pixi.sh/) with all required Python dependencies in an isolated environment:
+This uses the repository's [pixi.toml](pixi.toml) to define the `dev` environment.
```bash
-# Install Pixi if not done already,
-curl -fsSL https://pixi.sh/install.sh | sh
+# Clone the repository
+git clone https://github.com/DataAnalyticsEngineering/FANS.git
+cd FANS
-# Create and activate the environment
-pixi shell -e dashboard
+# Enter development environment (all dependencies pre-installed!)
+pixi shell -e dev
```
-We also provide a set of Docker images. For further information, please refer to the [Docker README](docker/README.md).
+
-### Installing dependencies using Spack
+
+Linux (Debian/Ubuntu)
-Spack is a package manager designed for high-performance computing environments. It simplifies the installation of complex software stacks, making it ideal for setting up FANS on HPC systems.
+We recommend installing the dependencies using `apt`:
-1. **Install Spack** by following these [installation instructions](https://spack.readthedocs.io/en/latest/getting_started.html).
+```bash
+apt-get install -y \
+ build-essential \
+ cmake \
+ git \
+ file \
+ libhdf5-dev \
+ libhdf5-openmpi-dev \
+ libopenmpi-dev \
+ libeigen3-dev \
+ libfftw3-dev \
+ libfftw3-mpi-dev \
+ nlohmann-json3-dev
+```
-2. **Install Dependencies**: Once Spack is set up, install the required dependencies:
+
- ```bash
- spack install cmake
- spack install mpi
- spack install hdf5 +cxx +mpi
- spack install eigen
- spack install fftw +mpi
- spack install nlohmann-json
- ```
+
+macOS
- Additionally, optimized FFTW implementations can be used depending on your system's architecture, for example `amdfftw` (For AMD systems) or `cray-fftw` (For Cray systems), or `fujitsu-fftw` (For Fujitsu systems).
+We recommend installing the dependencies using [`brew`](https://brew.sh):
-3. **Load Dependencies** Once dependencies are installed, load them before building:
+```bash
+brew install gnu-time cmake gcc@15
+brew install open-mpi --build-from-source --cc=gcc-15
+brew install hdf5-mpi --build-from-source --cc=gcc-15
+brew install fftw eigen nlohmann-json
+
+# Set environment variables
+export CC=gcc-15 CXX=g++-15 MPICC=mpicc MPICXX=mpicxx
+```
- ```bash
- spack load cmake mpi hdf5 eigen fftw nlohmann-json
- ```
+
-## Building
+
+ Using Spack (HPC environments)
-1. Clone the repository:
+[Spack](https://spack.readthedocs.io/en/latest/) is a flexible package manager for building and managing software stacks in high-performance computing environments. Install Spack by following these [installation instructions](https://spack.readthedocs.io/en/latest/getting_started.html). Once Spack is set up, install the required dependencies:
- ```bash
- git clone https://github.com/DataAnalyticsEngineering/FANS.git
- cd FANS
- ```
+```bash
+spack install cmake
+spack install mpi
+spack install hdf5+cxx+mpi
+spack install eigen
+spack install fftw+mpi
+spack install nlohmann-json
+
+# Load dependencies
+spack load cmake mpi hdf5 eigen fftw nlohmann-json
+```
-2. Configure the build using CMake:
+Additionally, optimized FFTW implementations can be used depending on your system's architecture:
- ```bash
- mkdir build
- cd build
- cmake ..
- ```
+- AMD systems: `spack install amdfftw+mpi`
+- Cray systems: `spack install cray-fftw+mpi`
+- Fujitsu systems: `spack install fujitsu-fftw+mpi`
-3. Compile:
+
- ```bash
- cmake --build . -j
- ```
+
+Docker images
-The compilation symlinks the generated `FANS` binary into the `test/` directory for convenience.
+Pre-configured Docker images are available for containerized deployments. See [`docker/README.md`](docker/README.md) for further details.
-### Configuring a build
+
-The following CMake configuration options exist:
+### Building FANS
-- `CMAKE_BUILD_TYPE`: Sets the build type. Common values are Debug, Release, RelWithDebInfo, and MinSizeRel.
- - Default: NONE
+```bash
+# Clone the repository
+git clone https://github.com/DataAnalyticsEngineering/FANS.git
+cd FANS
-- `FANS_BUILD_STATIC`: Build static library instead of shared library.
- - Default: OFF
+# Create build directory
+mkdir build && cd build
-- `CMAKE_INTERPROCEDURAL_OPTIMIZATION`: Enable inter-procedural optimization (IPO) for all targets.
- - Default: ON (if supported)
- - Note: When you run the configure step for the first time, IPO support is automatically checked and enabled if available. A status message will indicate whether IPO is activated or not supported.
+# Configure (basic)
+cmake ..
-## Installing
+# Build
+cmake --build . -j
-Install FANS (system-wide) using the following options:
+# Run tests with 8 mpi processes
+cd ../test
+./run_tests.sh -n 8
+```
-1. Using CMake (sudo required if --prefix is omitted):
+**Build options:**
- ```bash
- cmake --install . [--prefix ]
- ```
+| CMake Option | Description | Default |
+|--------------|-------------|---------|
+| `CMAKE_BUILD_TYPE` | Build type: `Debug`, `Release`, `RelWithDebInfo` | `NONE` |
+| `CMAKE_INTERPROCEDURAL_OPTIMIZATION` | Enable link-time optimization (LTO) | `ON` (if supported) |
+| `FANS_BUILD_STATIC` | Build static library | `OFF` |
+| `CMAKE_INSTALL_PREFIX` | Installation directory | System default |
+| `FANS_LIBRARY_FOR_MICRO_MANAGER` | Build Python bindings using Pybind11 (needed) | `OFF` |
+| `FANS_ENABLE_SANITIZERS` | Enable runtime sanitizers (AddressSanitizer and LeakSanitizer) for memory debugging | `OFF` |
-### Install using Conda
+---
-[](https://anaconda.org/conda-forge/fans)
-[](https://anaconda.org/conda-forge/fans)
-[](https://anaconda.org/conda-forge/fans)
+## Python environment for the FANS dashboard
-FANS is also available as a conda package on [conda-forge/fans](https://anaconda.org/conda-forge/fans). No dependencies have to be manually installed for it to work.
-It can be installed via
+FANS includes [`FANS_Dashboard.ipynb`](FANS_Dashboard/FANS_Dashboard.ipynb), a comprehensive pipeline for post-processing, visualization, and analysis of simulation results. We recommend setting up a Python virtual environment via [Pixi](https://pixi.sh/) with all required Python dependencies in an isolated environment:
```bash
-conda install conda-forge::fans
+# Install and activate the dashboard environment
+pixi shell -e dashboard
```
-exposing the executable `FANS`.
+The `dashboard` environment includes:
+
+- Python
+- Jupyter notebook (`ipykernel`)
+- [MSUtils](https://github.com/DataAnalyticsEngineering/MSUtils) for FANS-specific utilities
+- Testing tools (`pytest`)
+- Code quality tools (`pre-commit`)
-## Input File Format
+See [`FANS_Dashboard`](FANS_Dashboard/) for further details.
+
+---
+
+## Input file format
FANS requires a JSON input file specifying the problem parameters. Example input files can be found in the [`test/input_files`](test/input_files) directory. It is recommended to use these files as a reference to create your input file.
-### Microstructure Definition
+### Microstructure definition
```json
"microstructure": {
@@ -173,36 +235,53 @@ FANS requires a JSON input file specifying the problem parameters. Example input
- `datasetname`: This is the path within the HDF5 file to the specific dataset that represents the microstructure.
- `L`: Microstructure length defines the physical dimensions of the microstructure in the $x$, $y$, and $z$ directions.
-### Problem Type and Material Model
+### Problem type and material model
```json
"problem_type": "mechanical",
-"matmodel": "LinearElasticIsotropic",
"strain_type": "small",
-"material_properties": {
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667]
- }
+"materials": [
+ {
+ "phases": [0],
+ "matmodel": "PseudoPlasticLinearHardening",
+ "material_properties": {
+ "bulk_modulus": [62.5000],
+ "shear_modulus": [28.8462],
+ "yield_stress": [0.1],
+ "hardening_parameter": [0.0]
+ }
+ },
+ {
+ "phases": [1],
+ "matmodel": "LinearElasticIsotropic",
+ "material_properties": {
+ "bulk_modulus": [222.222],
+ "shear_modulus": [166.6667]
+ }
+ }
+]
```
-- `problem_type`: This defines the type of physical problem you are solving. Common options include `thermal` problems and `mechanical` problems.
-- `matmodel`: This specifies the material model to be used in the simulation. Examples include
+- `problem_type`: This defines the type of physical problem you are solving. Options include `thermal` problems and `mechanical` problems.
+- `strain_type`: This indicates whether the problem is formulated using infinitesimal (`small`) strain or finite (`large`) strain theory.
+- `materials`: An array of material groups, where each group assigns one or more phases to a specific material model. Each material group contains:
+ - `phases`: An array of phase IDs (material labels) from the microstructure that use this material model.
+ - `matmodel`: The constitutive model for this material group. Available models include:
- - `LinearThermalIsotropic` for linear isotropic conductive material model.
- - `LinearThermalTriclinic` for linear triclinic conductive material model.
- - `GBDiffusion` for diffusion model with transversely isotropic grain boundary and isotropic bulk for polycrystalline materials.
+ - `LinearThermalIsotropic` for linear isotropic conductive material model.
+ - `LinearThermalTriclinic` for linear triclinic conductive material model.
+ - `GBDiffusion` for diffusion model with transversely isotropic grain boundary and isotropic bulk for polycrystalline materials.
- - `LinearElasticIsotropic` for linear isotropic elastic material model.
- - `LinearElasticTriclinic` for linear triclinic elastic material model.
- - `PseudoPlasticLinearHardening` / `PseudoPlasticNonLinearHardening` for plasticity mimicking model with linear/nonlinear hardening.
- - `J2ViscoPlastic_LinearIsotropicHardening` / `J2ViscoPlastic_NonLinearIsotropicHardening` for rate-independent / dependent J2 plasticity model with kinematic and linear/nonlinear isotropic hardening.
- - `SaintVenantKirchhoff` for the hyperelastic Saint Venant-Kirchhoff material model.
- - `CompressibleNeoHookean` for the compressible Neo-Hookean material model.
+ - `LinearElasticIsotropic` for linear isotropic elastic material model.
+ - `LinearElasticTriclinic` for linear triclinic elastic material model.
+ - `PseudoPlasticLinearHardening` / `PseudoPlasticNonLinearHardening` for plasticity mimicking model with linear/nonlinear hardening.
+ - `J2ViscoPlastic_LinearIsotropicHardening` / `J2ViscoPlastic_NonLinearIsotropicHardening` for rate-independent / dependent J2 plasticity model with kinematic and linear/nonlinear isotropic hardening.
+ - `SaintVenantKirchhoff` for the hyperelastic Saint Venant-Kirchhoff material model.
+ - `CompressibleNeoHookean` for the compressible Neo-Hookean material model.
-- `strain_type`: This indicates whether the problem is formulated using infinitesimal (`small`) strain or finite (`large`) strain theory.
-- `material_properties`: This provides the necessary material parameters for the chosen material model. For thermal problems, you might specify `conductivity`, while mechanical problems might require `bulk_modulus`, `shear_modulus`, and more properties for advanced material models. These properties can be defined as arrays to represent multiple phases within the microstructure.
+ - `material_properties`: Material parameters specific to the chosen model. Properties are defined as arrays, where each element corresponds to one of the phases listed in the `phases` array.
-### Solver Settings
+### Solver settings
```json
"FE_type": "HEX8",
@@ -218,7 +297,7 @@ FANS requires a JSON input file specifying the problem parameters. Example input
- `FE_type`: This specifies the type of finite element to be used. Common options include:
- `HEX8`: Standard trilinear hexahedral elements with full integration (8 Gauss points). Suitable for most problems but may exhibit volumetric locking for nearly incompressible materials (Poisson's ratio ~ 0.5).
- `BBAR`: B-bar elements with selective reduced integration to mitigate volumetric locking. Recommended for materials with high Poisson's ratios (0.4 to 0.5).
- - `HEX8R`: Reduced integration elements with a single Gauss point at the element center. Use with caution as they may lead to hourglassing and less accurate results.
+ - `HEX8R`: Reduced integration elements with a single Gauss point at the element center. Use with cautionβthese may produce less accurate field results and can cause local material issues such as negative Jacobian ($J < 0$), leading to nonphysical solutions (hourglassing).
- `method`: This indicates the numerical method to be used for solving the system of equations. `cg` stands for the Conjugate Gradient method, and `fp` stands for the Fixed Point method.
- `error_parameters`: This section defines the error parameters for the solver. Error control is applied to the finite element nodal residual of the problem.
- `measure`: Specifies the norm used to measure the error. Options include `Linfinity`, `L1`, or `L2`.
@@ -226,7 +305,7 @@ FANS requires a JSON input file specifying the problem parameters. Example input
- `tolerance`: Sets the tolerance level for the solver, defining the convergence criterion based on the chosen error measure. The solver iterates until the solution meets this tolerance.
- `n_it`: Specifies the maximum number of iterations allowed for the FANS solver.
-### Macroscale Loading Conditions
+### Macroscale loading conditions
```json
"macroscale_loading": [
@@ -246,9 +325,9 @@ FANS requires a JSON input file specifying the problem parameters. Example input
```
- `macroscale_loading`: This defines the external loading applied to the microstructure. It is an array of arrays, where each sub-array represents a load path applied to the system. The format of the load path depends on the problem type:
- - For `thermal` problems, the array typically has 3 components, representing the temperature gradients in the $x$, $y$, and $z$ directions.
- - For `small` strain `mechanical` problems, the array must have 6 components, corresponding to the components of the strain tensor in Mandel notation (e.g., $[\varepsilon_{11}, \varepsilon_{22}, \varepsilon_{33}, \sqrt{2}\varepsilon_{12}, \sqrt{2}\varepsilon_{13}, \sqrt{2}\varepsilon_{23}]$).
- - For `large` strain `mechanical` problems, the array must have 9 components, corresponding to the deformation gradient tensor components (e.g., $[F_{11}, F_{12}, F_{13}, F_{21}, F_{22}, F_{23}, F_{31}, F_{32}, F_{33}]$).
+ - For `thermal` problems, the array typically has 3 components, representing the macroscale temperature gradients in the $x$, $y$, and $z$ directions.
+ - For `small` strain `mechanical` problems, the array must have 6 components, corresponding to the macroscale strain tensor in Mandel notation: $[\varepsilon_{11},\ \varepsilon_{22},\ \varepsilon_{33},\ \sqrt{2}\,\varepsilon_{12},\ \sqrt{2}\,\varepsilon_{13},\ \sqrt{2}\,\varepsilon_{23}]$.
+ - For `large` strain `mechanical` problems, the array must have 9 components, corresponding to the macroscale deformation gradient tensor: $[F_{11},\ F_{12},\ F_{13},\ F_{21},\ F_{22},\ F_{23},\ F_{31},\ F_{32},\ F_{33}]$.
In the case of path/time-dependent loading, as shown, for example, in plasticity problems, the `macroscale_loading` array can include multiple steps with corresponding loading conditions.
@@ -265,7 +344,7 @@ FANS also supports mixed boundary conditions, where some components can be strai
}]
```
-### Results Specification
+### Results specification
```json
"results": ["stress_average", "strain_average", "absolute_error", "phase_stress_average", "phase_strain_average",
diff --git a/include/MaterialManager.h b/include/MaterialManager.h
new file mode 100644
index 0000000..cbff981
--- /dev/null
+++ b/include/MaterialManager.h
@@ -0,0 +1,278 @@
+#ifndef MATERIALMANAGER_H
+#define MATERIALMANAGER_H
+
+#include "general.h"
+#include "matmodel.h"
+
+template
+Matmodel *createMatmodel(const Reader &reader);
+
+/**
+ * @brief Lightweight struct for fast material model lookup in hot loops
+ */
+template
+struct MaterialInfo {
+ Matmodel *model;
+ LinearModel *linear_model; // Pre-cast pointer (nullptr if nonlinear)
+ int local_mat_id;
+ bool is_linear;
+};
+
+/**
+ * @brief MaterialManager: Manages multiple material models for multi-material simulations
+ *
+ * Enables different phases in the microstructure to use different constitutive models.
+ *
+ */
+template
+class MaterialManager {
+ private:
+ MaterialInfo *phase_to_info{nullptr}; // [n_phases] - HOT DATA
+ int n_phases;
+
+ public:
+ vector *> models; // vector of unique material models
+ Matrix kapparef_mat; // Reference stiffness for fundamental solution
+ bool all_linear{true}; // True if ALL phases use linear models
+
+ MaterialManager(const Reader &reader)
+ {
+ // Check for old format (backward compatibility)
+ json materials_json;
+ if (reader.inputJson.contains("matmodel") && reader.inputJson.contains("material_properties")) {
+ // Old format: convert to new format
+ json mat_group;
+ mat_group["matmodel"] = reader.inputJson["matmodel"];
+ mat_group["material_properties"] = reader.inputJson["material_properties"];
+
+ // Infer phases from material_properties array length
+ auto props = reader.inputJson["material_properties"];
+ int n_mats = 0;
+ for (auto it = props.begin(); it != props.end(); ++it) {
+ if (it.value().is_array()) {
+ n_mats = it.value().size();
+ break;
+ }
+ }
+ vector phases(n_mats);
+ for (int i = 0; i < n_mats; ++i)
+ phases[i] = i;
+ mat_group["phases"] = phases;
+
+ materials_json = json::array({mat_group});
+ } else {
+ materials_json = reader.inputJson.at("materials");
+ }
+
+ const auto &mats = materials_json;
+ if (!mats.is_array() || mats.empty())
+ throw std::runtime_error("MaterialManager: 'materials' must be non-empty array");
+
+ int max_phase = -1;
+ for (const auto &mg : mats) {
+ if (!mg.contains("phases") || !mg.contains("matmodel") || !mg.contains("material_properties"))
+ throw std::runtime_error("MaterialManager: material group missing required fields");
+
+ for (int p : mg["phases"].get>())
+ max_phase = std::max(max_phase, p);
+ }
+
+ n_phases = max_phase + 1;
+ if (n_phases == 0)
+ throw std::runtime_error("MaterialManager: No phases defined");
+
+ phase_to_info = new MaterialInfo[n_phases]();
+
+ // Create models and map phases
+ for (const auto &mg : mats) {
+ auto *model = create_material_model_from_json(mg, reader);
+ models.push_back(model);
+
+ auto *linear_model = dynamic_cast *>(model);
+ bool is_linear = (linear_model != nullptr);
+ if (!is_linear)
+ all_linear = false;
+
+ auto phases = mg["phases"].get>();
+ for (size_t i = 0; i < phases.size(); ++i) {
+ int p = phases[i];
+ if (p < 0 || p >= n_phases || phase_to_info[p].model)
+ throw std::runtime_error("MaterialManager: Invalid or duplicate phase " + std::to_string(p));
+ phase_to_info[p] = {model, linear_model, static_cast(i), is_linear};
+ }
+ }
+
+ // Verify all phases assigned
+ for (int p = 0; p < n_phases; ++p)
+ if (!phase_to_info[p].model)
+ throw std::runtime_error("MaterialManager: Phase " + std::to_string(p) + " not assigned");
+
+ compute_reference_stiffness(reader);
+
+ // Print detailed information about material configuration for logging
+ if (reader.world_rank == 0) {
+ printf("\n# MaterialManager initialized:\n");
+ printf("# Number of material models: %zu\n", models.size());
+ printf("# Number of phases: %d\n#\n", n_phases);
+
+ for (size_t i = 0; i < mats.size(); ++i) {
+ const auto &mg = mats[i];
+ printf("# Material Model %zu: %s\n", i + 1, mg["matmodel"].get().c_str());
+
+ // Print phases
+ auto phases = mg["phases"].get>();
+ printf("# Phases: [");
+ for (size_t j = 0; j < phases.size(); ++j) {
+ printf("%d", phases[j]);
+ if (j < phases.size() - 1)
+ printf(", ");
+ }
+ printf("]\n");
+
+ // Print material properties
+ printf("# Material properties:\n");
+ const auto &props = mg["material_properties"];
+ for (auto it = props.begin(); it != props.end(); ++it) {
+ printf("# %s: ", it.key().c_str());
+ if (it.value().is_array()) {
+ printf("[");
+ for (size_t k = 0; k < it.value().size(); ++k) {
+ if (it.value()[k].is_number()) {
+ printf("%.5g", it.value()[k].get());
+ } else if (it.value()[k].is_string()) {
+ printf("\"%s\"", it.value()[k].get().c_str());
+ }
+ if (k < it.value().size() - 1)
+ printf(", ");
+ }
+ printf("]");
+ } else if (it.value().is_number()) {
+ printf("%.5g", it.value().get());
+ } else if (it.value().is_string()) {
+ printf("\"%s\"", it.value().get().c_str());
+ }
+ printf("\n");
+ }
+ printf("#\n");
+ }
+ }
+ }
+
+ ~MaterialManager()
+ {
+ for (auto *m : models)
+ delete m;
+ delete[] phase_to_info;
+ }
+
+ // Initialize internal variables for all material models
+ void initialize_internal_variables(ptrdiff_t num_elements, int num_gauss_points)
+ {
+ for (auto *model : models) {
+ model->initializeInternalVariables(num_elements, num_gauss_points);
+ }
+ }
+
+ // Compute reference stiffness for the fundamental solution
+ void compute_reference_stiffness(const Reader &reader)
+ {
+ if (reader.inputJson.contains("reference_material")) {
+ // Check for optional user-defined reference material
+ auto ref_mat = reader.inputJson["reference_material"].get>>();
+ if (ref_mat.size() != n_str || ref_mat[0].size() != n_str) {
+ throw std::invalid_argument("reference_material must be " + std::to_string(n_str) + "x" + std::to_string(n_str));
+ }
+
+ for (int i = 0; i < n_str; ++i) {
+ kapparef_mat.row(i) = Eigen::Map(ref_mat[i].data(), n_str);
+ }
+ Eigen::LLT> llt(kapparef_mat);
+ if (llt.info() != Eigen::Success) {
+ throw std::invalid_argument("reference_material must be symmetric positive definite");
+ }
+
+ if (reader.world_rank == 0) {
+ cout << "# Using user-defined reference material for fundamental solution." << endl;
+ }
+ } else {
+ // Default: simple average of reference stiffness across all material models
+ kapparef_mat = Matrix::Zero();
+ for (auto *model : models) {
+ kapparef_mat += model->get_reference_stiffness();
+ }
+ kapparef_mat /= static_cast(models.size());
+ }
+ }
+
+ // Update internal variables after converged time step
+ void update_internal_variables()
+ {
+ for (auto *model : models) {
+ model->updateInternalVariables();
+ }
+ }
+
+ // Set macroscale loading gradient for all models
+ void set_gradient(vector g0)
+ {
+ for (auto *model : models) {
+ model->setGradient(g0);
+ }
+ }
+
+ // Post-processing for all material models
+ void postprocess(Solver &solver, Reader &reader, int load_idx, int time_idx)
+ {
+ for (auto *model : models) {
+ model->postprocess(solver, reader, load_idx, time_idx);
+ }
+ }
+
+ // Get material info for a phase
+ inline const MaterialInfo &get_info(int phase_id) const
+ {
+ return phase_to_info[phase_id];
+ }
+ inline size_t get_num_models() const
+ {
+ return models.size();
+ } // Get number of unique material models
+ inline int get_num_phases() const
+ {
+ return n_phases;
+ } // Get number of phases in microstructure
+
+ private:
+ // Helper function to create a material model from a material group in JSON
+ Matmodel *create_material_model_from_json(
+ const json &mat_group,
+ const Reader &base_reader)
+ {
+ // Create a minimal temporary reader
+ Reader temp_reader;
+
+ // Copy safe members
+ temp_reader.world_rank = base_reader.world_rank;
+ temp_reader.world_size = base_reader.world_size;
+ temp_reader.FE_type = base_reader.FE_type;
+ temp_reader.strain_type = base_reader.strain_type;
+ temp_reader.problemType = base_reader.problemType;
+ temp_reader.method = base_reader.method;
+ temp_reader.l_e = base_reader.l_e;
+ temp_reader.dims = base_reader.dims;
+
+ // Override material properties and n_mat for this specific material group
+ temp_reader.materialProperties = mat_group["material_properties"];
+
+ // n_mat for this model is the number of phases using it
+ auto phases = mat_group["phases"].get>();
+ temp_reader.n_mat = phases.size();
+
+ // Override matmodel name for factory function
+ temp_reader.matmodel = mat_group["matmodel"].get();
+
+ return createMatmodel(temp_reader);
+ }
+};
+
+#endif // MATERIALMANAGER_H
diff --git a/include/material_models/CompressibleNeoHookean.h b/include/material_models/CompressibleNeoHookean.h
index cf51f97..1fc1e41 100644
--- a/include/material_models/CompressibleNeoHookean.h
+++ b/include/material_models/CompressibleNeoHookean.h
@@ -30,19 +30,6 @@ class CompressibleNeoHookean : public LargeStrainMechModel {
mu[i] = shear_modulus[i];
lambda[i] = bulk_modulus[i] - (2.0 / 3.0) * mu[i];
}
-
- if (kapparef_mat.isZero()) {
- // Compute reference tangent at F=I
- kapparef_mat = Matrix::Zero();
- for (int mat_idx = 0; mat_idx < n_mat; ++mat_idx) {
- Matrix3d F_identity = Matrix3d::Identity();
- Matrix3d S = compute_S(F_identity, mat_idx, 0);
- Matrix C_mandel = compute_material_tangent(F_identity, mat_idx);
- Matrix A = compute_spatial_tangent(F_identity, S, C_mandel);
- kapparef_mat += A;
- }
- kapparef_mat /= static_cast(n_mat);
- }
}
Matrix3d compute_S(const Matrix3d &F, int mat_index, ptrdiff_t element_idx) override
@@ -104,6 +91,22 @@ class CompressibleNeoHookean : public LargeStrainMechModel {
return C_tangent;
}
+ Matrix get_reference_stiffness() const override
+ {
+ // Compute reference tangent at F=I
+ auto *self = const_cast(this);
+ Matrix kapparef = Matrix::Zero();
+ Matrix3d F_identity = Matrix3d::Identity();
+
+ for (int mat_idx = 0; mat_idx < n_mat; ++mat_idx) {
+ Matrix3d S = self->compute_S(F_identity, mat_idx, 0);
+ Matrix C_mandel = self->compute_material_tangent(F_identity, mat_idx);
+ Matrix A = compute_spatial_tangent(F_identity, S, C_mandel);
+ kapparef += A;
+ }
+ return kapparef / static_cast(n_mat);
+ }
+
private:
vector lambda;
vector mu;
diff --git a/include/material_models/GBDiffusion.h b/include/material_models/GBDiffusion.h
index 56219df..3d321a8 100644
--- a/include/material_models/GBDiffusion.h
+++ b/include/material_models/GBDiffusion.h
@@ -95,7 +95,7 @@ class GBDiffusion : public ThermalModel, public LinearModel<1, 3> {
throw std::runtime_error("Error in GBDiffusion initialization: " + std::string(e.what()));
}
- Matrix3d kappa_temp = Matrix3d::Zero();
+ kappa_average = Matrix3d::Zero();
Matrix3d phase_kappa;
phase_stiffness = new Matrix[n_mat];
@@ -112,14 +112,12 @@ class GBDiffusion : public ThermalModel, public LinearModel<1, 3> {
} else {
throw std::runtime_error("GBDiffusion: Unknown material index");
}
- kappa_temp += phase_kappa;
+ kappa_average += phase_kappa;
for (int p = 0; p < n_gp; ++p) {
phase_stiffness[i] += B_int[p].transpose() * phase_kappa * B_int[p] * v_e / n_gp;
}
}
- if (kapparef_mat.isZero()) {
- kapparef_mat = kappa_temp / n_mat;
- }
+ kappa_average = kappa_average / n_mat;
}
~GBDiffusion()
{
@@ -128,6 +126,11 @@ class GBDiffusion : public ThermalModel, public LinearModel<1, 3> {
phase_stiffness = nullptr;
}
+ Matrix3d get_reference_stiffness() const override
+ {
+ return kappa_average;
+ }
+
void get_sigma(int i, int mat_index, ptrdiff_t element_idx) override
{
if (mat_index < num_crystals) {
@@ -192,6 +195,7 @@ class GBDiffusion : public ThermalModel, public LinearModel<1, 3> {
double *GBnormals = nullptr;
Vector3d N;
+ Matrix3d kappa_average;
};
#endif // GBDIFFUSION_H
diff --git a/include/material_models/J2Plasticity.h b/include/material_models/J2Plasticity.h
index 03c0a41..f0e8d74 100644
--- a/include/material_models/J2Plasticity.h
+++ b/include/material_models/J2Plasticity.h
@@ -22,15 +22,6 @@ class J2Plasticity : public SmallStrainMechModel {
}
n_mat = bulk_modulus.size();
- if (kapparef_mat.isZero()) {
- const double Kbar = std::accumulate(bulk_modulus.begin(), bulk_modulus.end(), 0.0) / static_cast(n_mat);
- const double Gbar = std::accumulate(shear_modulus.begin(), shear_modulus.end(), 0.0) / static_cast(n_mat);
- const double lambdabar = Kbar - 2.0 * Gbar / 3.0;
- kapparef_mat.setZero();
- kapparef_mat.topLeftCorner(3, 3).setConstant(lambdabar);
- kapparef_mat.diagonal().array() += 2.0 * Gbar;
- }
-
// Allocate the member matrices/vectors for performance optimization
sqrt_two_over_three = sqrt(2.0 / 3.0);
sigma_trial_n1.setZero();
@@ -120,6 +111,18 @@ class J2Plasticity : public SmallStrainMechModel {
virtual double compute_q_trial(double psi_val, int mat_index) = 0;
virtual double compute_gamma(double f_trial, int mat_index, int i, ptrdiff_t element_idx) = 0;
+ Matrix get_reference_stiffness() const override
+ {
+ const double Kbar = std::accumulate(bulk_modulus.begin(), bulk_modulus.end(), 0.0) / static_cast(n_mat);
+ const double Gbar = std::accumulate(shear_modulus.begin(), shear_modulus.end(), 0.0) / static_cast(n_mat);
+ const double lambdabar = Kbar - 2.0 * Gbar / 3.0;
+
+ Matrix kappa_ref = Matrix::Zero();
+ kappa_ref.topLeftCorner(3, 3).setConstant(lambdabar);
+ kappa_ref.diagonal().array() += 2.0 * Gbar;
+ return kappa_ref;
+ }
+
void postprocess(Solver<3, 6> &solver, Reader &reader, int load_idx, int time_idx) override;
protected:
diff --git a/include/material_models/LinearElastic.h b/include/material_models/LinearElastic.h
index 3ad8ca5..f1798e6 100644
--- a/include/material_models/LinearElastic.h
+++ b/include/material_models/LinearElastic.h
@@ -24,19 +24,6 @@ class LinearElasticIsotropic : public SmallStrainMechModel, public LinearModel<3
lambda[i] = bulk_modulus[i] - (2.0 / 3.0) * mu[i];
}
- if (kapparef_mat.isZero()) {
- double lambda_ref = (*max_element(lambda.begin(), lambda.end()) +
- *min_element(lambda.begin(), lambda.end())) /
- 2;
- double mu_ref = (*max_element(mu.begin(), mu.end()) +
- *min_element(mu.begin(), mu.end())) /
- 2;
-
- kapparef_mat = Matrix::Zero();
- kapparef_mat.topLeftCorner(3, 3).setConstant(lambda_ref);
- kapparef_mat += 2 * mu_ref * Matrix::Identity();
- }
-
phase_stiffness = new Matrix[n_mat];
Matrix phase_kappa;
@@ -65,6 +52,22 @@ class LinearElasticIsotropic : public SmallStrainMechModel, public LinearModel<3
sigma(i + 5, 0) = buf2 * eps(i + 5, 0);
}
+ Matrix get_reference_stiffness() const override
+ {
+ // Return the reference stiffness computed in constructor
+ double lambda_ref = (*std::max_element(lambda.begin(), lambda.end()) +
+ *std::min_element(lambda.begin(), lambda.end())) /
+ 2;
+ double mu_ref = (*std::max_element(mu.begin(), mu.end()) +
+ *std::min_element(mu.begin(), mu.end())) /
+ 2;
+
+ Matrix kappa_ref = Matrix::Zero();
+ kappa_ref.topLeftCorner(3, 3).setConstant(lambda_ref);
+ kappa_ref += 2 * mu_ref * Matrix::Identity();
+ return kappa_ref;
+ }
+
private:
vector bulk_modulus;
vector lambda;
@@ -107,7 +110,6 @@ class LinearElasticTriclinic : public SmallStrainMechModel, public LinearModel<3
// Assemble stiffness matrices for each material
C_mats.resize(n_mat);
- Matrix kappa_temp = Matrix::Zero();
for (size_t i = 0; i < n_mat; ++i) {
Matrix C_i = Matrix::Zero();
@@ -124,11 +126,6 @@ class LinearElasticTriclinic : public SmallStrainMechModel, public LinearModel<3
C_i = C_i.selfadjointView();
C_mats[i] = C_i;
- kappa_temp += C_i;
- }
-
- if (kapparef_mat.isZero()) {
- kapparef_mat = kappa_temp / n_mat;
}
// Compute phase stiffness matrices
@@ -146,6 +143,16 @@ class LinearElasticTriclinic : public SmallStrainMechModel, public LinearModel<3
sigma.segment<6>(i) = C_mats[mat_index] * eps.segment<6>(i);
}
+ Matrix get_reference_stiffness() const override
+ {
+ // Simple average of all stiffness matrices
+ Matrix avg = Matrix::Zero();
+ for (const auto &C : C_mats) {
+ avg += C;
+ }
+ return avg / n_mat;
+ }
+
private:
std::vector, Eigen::aligned_allocator>> C_mats;
MatrixXd C_constants;
diff --git a/include/material_models/LinearThermal.h b/include/material_models/LinearThermal.h
index b7adc89..9a5c9eb 100644
--- a/include/material_models/LinearThermal.h
+++ b/include/material_models/LinearThermal.h
@@ -16,24 +16,20 @@ class LinearThermalIsotropic : public ThermalModel, public LinearModel<1, 3> {
}
n_mat = conductivity.size();
- if (kapparef_mat.isZero()) {
- double kappa_ref = (*max_element(conductivity.begin(), conductivity.end()) +
- *min_element(conductivity.begin(), conductivity.end())) /
- 2;
- kapparef_mat = kappa_ref * Matrix3d::Identity();
- }
-
Matrix3d phase_kappa;
+ kappa_average = Matrix3d::Zero();
phase_stiffness = new Matrix[n_mat];
for (size_t i = 0; i < n_mat; ++i) {
phase_stiffness[i] = Matrix::Zero();
phase_kappa = conductivity[i] * Matrix3d::Identity();
+ kappa_average += phase_kappa;
for (int p = 0; p < n_gp; ++p) {
phase_stiffness[i] += B_int[p].transpose() * phase_kappa * B_int[p] * v_e / n_gp;
}
}
+ kappa_average /= n_mat;
}
void get_sigma(int i, int mat_index, ptrdiff_t element_idx) override
@@ -43,8 +39,14 @@ class LinearThermalIsotropic : public ThermalModel, public LinearModel<1, 3> {
sigma(i + 2, 0) = conductivity[mat_index] * eps(i + 2, 0);
}
+ Matrix3d get_reference_stiffness() const override
+ {
+ return kappa_average;
+ }
+
private:
vector conductivity;
+ Matrix3d kappa_average;
};
class LinearThermalTriclinic : public ThermalModel, public LinearModel<1, 3> {
@@ -80,28 +82,23 @@ class LinearThermalTriclinic : public ThermalModel, public LinearModel<1, 3> {
// Assemble conductivity matrices for each material
K_mats.resize(n_mat);
- kapparef_mat = Matrix3d::Zero();
+ kappa_average = Matrix3d::Zero();
+ phase_stiffness = new Matrix[n_mat];
for (size_t i = 0; i < n_mat; ++i) {
Matrix3d K_i;
K_i << K_constants(0, i), K_constants(1, i), K_constants(2, i),
K_constants(1, i), K_constants(3, i), K_constants(4, i),
K_constants(2, i), K_constants(4, i), K_constants(5, i);
-
K_mats[i] = K_i;
- kapparef_mat += K_i;
- }
-
- kapparef_mat /= n_mat;
+ kappa_average += K_i;
- // Compute phase stiffness matrices
- phase_stiffness = new Matrix[n_mat];
- for (size_t i = 0; i < n_mat; ++i) {
phase_stiffness[i] = Matrix::Zero();
for (int p = 0; p < n_gp; ++p) {
phase_stiffness[i] += B_int[p].transpose() * K_mats[i] * B_int[p] * v_e / n_gp;
}
}
+ kappa_average /= n_mat;
}
void get_sigma(int i, int mat_index, ptrdiff_t element_idx) override
@@ -109,9 +106,15 @@ class LinearThermalTriclinic : public ThermalModel, public LinearModel<1, 3> {
sigma.segment<3>(i) = K_mats[mat_index] * eps.segment<3>(i);
}
+ Matrix3d get_reference_stiffness() const override
+ {
+ return kappa_average;
+ }
+
private:
std::vector> K_mats;
MatrixXd K_constants;
+ Matrix3d kappa_average;
};
#endif // LINEARTHERMAL_H
diff --git a/include/material_models/PseudoPlastic.h b/include/material_models/PseudoPlastic.h
index f259ebd..a7eb3fa 100644
--- a/include/material_models/PseudoPlastic.h
+++ b/include/material_models/PseudoPlastic.h
@@ -31,15 +31,6 @@ class PseudoPlastic : public SmallStrainMechModel {
throw std::runtime_error("Missing material properties for the requested material model.");
}
n_mat = bulk_modulus.size();
-
- if (kapparef_mat.isZero()) {
- const double Kbar = std::accumulate(bulk_modulus.begin(), bulk_modulus.end(), 0.0) / static_cast(n_mat);
- const double Gbar = std::accumulate(shear_modulus.begin(), shear_modulus.end(), 0.0) / static_cast(n_mat);
- const double lambdabar = Kbar - 2.0 * Gbar / 3.0;
- kapparef_mat.setZero();
- kapparef_mat.topLeftCorner(3, 3).setConstant(lambdabar);
- kapparef_mat.diagonal().array() += 2.0 * Gbar;
- }
}
void initializeInternalVariables(ptrdiff_t num_elements, int num_gauss_points) override
@@ -49,6 +40,18 @@ class PseudoPlastic : public SmallStrainMechModel {
virtual void get_sigma(int i, int mat_index, ptrdiff_t element_idx) override = 0; // Pure virtual method
+ Matrix get_reference_stiffness() const override
+ {
+ const double Kbar = std::accumulate(bulk_modulus.begin(), bulk_modulus.end(), 0.0) / static_cast(n_mat);
+ const double Gbar = std::accumulate(shear_modulus.begin(), shear_modulus.end(), 0.0) / static_cast(n_mat);
+ const double lambdabar = Kbar - 2.0 * Gbar / 3.0;
+
+ Matrix kappa_ref = Matrix::Zero();
+ kappa_ref.topLeftCorner(3, 3).setConstant(lambdabar);
+ kappa_ref.diagonal().array() += 2.0 * Gbar;
+ return kappa_ref;
+ }
+
void postprocess(Solver<3, 6> &solver, Reader &reader, int load_idx, int time_idx) override
{
VectorXf element_plastic_flag = VectorXf::Zero(solver.local_n0 * solver.n_y * solver.n_z);
diff --git a/include/material_models/SaintVenantKirchhoff.h b/include/material_models/SaintVenantKirchhoff.h
index fedd9ee..a8fca87 100644
--- a/include/material_models/SaintVenantKirchhoff.h
+++ b/include/material_models/SaintVenantKirchhoff.h
@@ -28,19 +28,6 @@ class SaintVenantKirchhoff : public LargeStrainMechModel {
mu[i] = shear_modulus[i];
lambda[i] = bulk_modulus[i] - (2.0 / 3.0) * mu[i];
}
-
- if (kapparef_mat.isZero()) {
- // Compute reference tangent at F=I
- kapparef_mat = Matrix::Zero();
- for (int mat_idx = 0; mat_idx < n_mat; ++mat_idx) {
- Matrix3d F_identity = Matrix3d::Identity();
- Matrix3d S = compute_S(F_identity, mat_idx, 0);
- Matrix C_mandel = compute_material_tangent(F_identity, mat_idx);
- Matrix A = compute_spatial_tangent(F_identity, S, C_mandel);
- kapparef_mat += A;
- }
- kapparef_mat /= static_cast(n_mat);
- }
}
Matrix3d compute_S(const Matrix3d &F, int mat_index, ptrdiff_t element_idx) override
@@ -58,6 +45,24 @@ class SaintVenantKirchhoff : public LargeStrainMechModel {
return C;
}
+ Matrix get_reference_stiffness() const override
+ {
+ // Compute reference tangent at F=I
+ Matrix kapparef = Matrix::Zero();
+ for (int mat_idx = 0; mat_idx < n_mat; ++mat_idx) {
+ Matrix3d F_identity = Matrix3d::Identity();
+ Matrix3d E = 0.5 * (F_identity.transpose() * F_identity - Matrix3d::Identity());
+ double trE = E.trace();
+ Matrix3d S = lambda[mat_idx] * trE * Matrix3d::Identity() + 2.0 * mu[mat_idx] * E;
+ Matrix C = Matrix::Zero();
+ C.topLeftCorner(3, 3).setConstant(lambda[mat_idx]);
+ C += 2.0 * mu[mat_idx] * Matrix::Identity();
+ Matrix A = compute_spatial_tangent(F_identity, S, C);
+ kapparef += A;
+ }
+ return kapparef / static_cast(n_mat);
+ }
+
private:
vector lambda;
vector mu;
diff --git a/include/matmodel.h b/include/matmodel.h
index 48cbe4f..62c3213 100644
--- a/include/matmodel.h
+++ b/include/matmodel.h
@@ -24,7 +24,7 @@ class Matmodel {
Matmodel(const Reader &reader);
- Matrix Compute_Reference_ElementStiffness();
+ Matrix Compute_Reference_ElementStiffness(const Matrix &kapparef_mat);
Matrix &element_residual(Matrix &ue, int mat_index, ptrdiff_t element_idx);
void getStrainStress(double *strain, double *stress, Matrix &ue, int mat_index, ptrdiff_t element_idx);
void setGradient(vector _g0);
@@ -34,8 +34,8 @@ class Matmodel {
virtual void initializeInternalVariables(ptrdiff_t num_elements, int num_gauss_points) {}
virtual void updateInternalVariables() {}
- vector macroscale_loading;
- Matrix kapparef_mat; // Reference stiffness/conductivity matrix for the fundamental solution
+ vector macroscale_loading;
+ virtual Matrix get_reference_stiffness() const = 0;
virtual ~Matmodel() = default;
@@ -85,29 +85,6 @@ Matmodel::Matmodel(const Reader &reader)
eps.resize(n_str * n_gp);
g0.resize(n_str * n_gp);
sigma.resize(n_str * n_gp);
-
- kapparef_mat.setZero();
-
- // Check for optional user-defined reference material
- if (reader.materialProperties.contains("reference_material")) {
- auto ref_mat = reader.materialProperties["reference_material"].get>>();
- if (ref_mat.size() != n_str || ref_mat[0].size() != n_str) {
- throw std::invalid_argument("reference_material must be " + std::to_string(n_str) + "x" + std::to_string(n_str));
- }
- for (int i = 0; i < n_str; ++i) {
- for (int j = 0; j < n_str; ++j) {
- kapparef_mat(i, j) = ref_mat[i][j];
- }
- }
- // Verify SPD using Cholesky decomposition
- Eigen::LLT> llt(kapparef_mat);
- if (llt.info() != Eigen::Success) {
- throw std::invalid_argument("reference_material must be symmetric positive definite");
- }
- if (reader.world_rank == 0) {
- cout << "# Using user-defined reference material for fundamental solution." << endl;
- }
- }
}
template
@@ -244,7 +221,7 @@ void Matmodel::setGradient(vector _g0)
}
}
template
-Matrix Matmodel::Compute_Reference_ElementStiffness()
+Matrix Matmodel::Compute_Reference_ElementStiffness(const Matrix &kapparef_mat)
{
Matrix Reference_ElementStiffness = Matrix::Zero();
Matrix tmp = Matrix::Zero();
diff --git a/include/mixedBCs.h b/include/mixedBCs.h
index 56df9a3..fe2ddaf 100644
--- a/include/mixedBCs.h
+++ b/include/mixedBCs.h
@@ -174,7 +174,7 @@ struct MixedBCController {
}
vector gvec(g0_vec.data(), g0_vec.data() + g0_vec.size());
- solver.matmodel->setGradient(gvec);
+ solver.matmanager->set_gradient(gvec);
}
template
@@ -183,9 +183,9 @@ struct MixedBCController {
mixed_active = true;
mbc_local = mbc_in;
step_idx = t;
- mbc_local.finalize(solver.matmodel->kapparef_mat);
+ mbc_local.finalize(solver.matmanager->kapparef_mat);
- int n_str = solver.matmodel->num_str;
+ int n_str = solver.matmanager->get_info(0).model->num_str;
// Only initialize on the FIRST step (t=0)
if (t == 0) {
@@ -219,7 +219,7 @@ struct MixedBCController {
}
vector gvec(g0_vec.data(), g0_vec.data() + n_str);
- solver.matmodel->setGradient(gvec);
+ solver.matmanager->set_gradient(gvec);
// Do one update to adjust stress-controlled components
solver.updateMixedBC();
diff --git a/include/reader.h b/include/reader.h
index f7a0c34..2773de7 100644
--- a/include/reader.h
+++ b/include/reader.h
@@ -26,6 +26,7 @@ class Reader {
char ms_datasetname[4096]{}; // Absolute path of Micro-structure in hdf5 file
char results_prefix[4096]{};
int n_mat;
+ json inputJson; // Complete input JSON (for MaterialManager)
json materialProperties;
double TOL;
json errorParameters;
diff --git a/include/setup.h b/include/setup.h
index cdd0df4..7461b9b 100644
--- a/include/setup.h
+++ b/include/setup.h
@@ -70,13 +70,19 @@ Matmodel<3, 9> *createMatmodel<3, 9>(const Reader &reader)
}
template
-Solver *createSolver(Reader &reader, Matmodel *matmodel)
+Solver *createSolver(Reader &reader, MaterialManager *matmanager)
{
if (reader.method == "fp") {
- return new SolverFP(reader, matmodel);
+ return new SolverFP(reader, matmanager);
} else if (reader.method == "cg") {
- return new SolverCG(reader, matmodel);
+ return new SolverCG(reader, matmanager);
} else {
throw std::invalid_argument(reader.method + " is not a valid method");
}
}
+
+template
+MaterialManager *createMaterialManager(const Reader &reader)
+{
+ return new MaterialManager(reader);
+}
diff --git a/include/solver.h b/include/solver.h
index 0acc015..7195d54 100644
--- a/include/solver.h
+++ b/include/solver.h
@@ -2,13 +2,16 @@
#define SOLVER_H
#include "matmodel.h"
+#include "MaterialManager.h"
+
+class J2Plasticity;
typedef Map, Unaligned, OuterStride<>> RealArray;
template
class Solver : private MixedBCController {
public:
- Solver(Reader &reader, Matmodel *matmodel);
+ Solver(Reader &reader, MaterialManager *matmanager);
virtual ~Solver();
Reader &reader;
@@ -24,9 +27,9 @@ class Solver : private MixedBCController {
const ptrdiff_t local_n1;
const ptrdiff_t local_1_start;
- const int n_it; //!< Max number of FANS iterations
- double TOL; //!< Tolerance on relative error norm
- Matmodel *matmodel; //!< Material Model
+ const int n_it; //!< Max number of FANS iterations
+ double TOL; //!< Tolerance on relative error norm
+ MaterialManager *matmanager; //!< Material Manager
unsigned short *ms; // Micro-structure
double *v_r; //!< Residual vector
@@ -100,9 +103,9 @@ class Solver : private MixedBCController {
};
template
-Solver::Solver(Reader &reader, Matmodel *mat)
+Solver::Solver(Reader &reader, MaterialManager *matmgr)
: reader(reader),
- matmodel(mat),
+ matmanager(matmgr),
world_rank(reader.world_rank),
world_size(reader.world_size),
n_x(reader.dims[0]),
@@ -133,7 +136,7 @@ Solver::Solver(Reader &reader, Matmodel *mat)
}
std::memset(v_u_prev, 0, local_n0 * n_y * n_z * howmany * sizeof(double));
- matmodel->initializeInternalVariables(local_n0 * n_y * n_z, matmodel->n_gp);
+ matmanager->initialize_internal_variables(local_n0 * n_y * n_z, matmanager->models[0]->n_gp);
computeFundamentalSolution();
}
@@ -146,7 +149,7 @@ void Solver::computeFundamentalSolution()
}
clock_t tot_time = clock();
- Matrix Ker0 = matmodel->Compute_Reference_ElementStiffness();
+ Matrix Ker0 = matmanager->models[0]->Compute_Reference_ElementStiffness(matmanager->kapparef_mat);
complex tpi = 2 * acos(-1) * complex(0, 1); //=2*pi*i
@@ -270,8 +273,9 @@ template
template
void Solver::compute_residual(RealArray &r_matrix, RealArray &u_matrix)
{
- compute_residual_basic(r_matrix, u_matrix, [&](Matrix &ue, int mat_index, ptrdiff_t element_idx) -> Matrix & {
- return matmodel->element_residual(ue, mat_index, element_idx);
+ compute_residual_basic(r_matrix, u_matrix, [&](Matrix &ue, int phase_id, ptrdiff_t element_idx) -> Matrix & {
+ const MaterialInfo &info = matmanager->get_info(phase_id);
+ return info.model->element_residual(ue, info.local_mat_id, element_idx);
});
}
@@ -292,7 +296,7 @@ void Solver::solve()
printf("# Total Time ................... %2.6f sec\n", double(tot_time) / CLOCKS_PER_SEC);
printf("# FFT contribution to total time %2.6f %% \n", 100. * double(fft_time) / double(tot_time));
}
- matmodel->updateInternalVariables();
+ matmanager->update_internal_variables();
}
template
@@ -465,22 +469,23 @@ void Solver::postprocess(Reader &reader, int load_idx, int time_
v_u + local_n0 * n_y * n_z * howmany, n_y * n_z * howmany, MPI_DOUBLE, (world_rank + 1) % world_size, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
Matrix ue;
- int mat_index;
+ int phase_id;
iterateCubes<0>([&](ptrdiff_t *idx, ptrdiff_t *idxPadding) {
for (int i = 0; i < 8; ++i) {
for (int j = 0; j < howmany; ++j) {
ue(howmany * i + j, 0) = v_u[howmany * idx[i] + j];
}
}
- mat_index = ms[idx[0]];
+ phase_id = ms[idx[0]];
- matmodel->getStrainStress(strain.segment(n_str * idx[0], n_str).data(), stress.segment(n_str * idx[0], n_str).data(), ue, mat_index, idx[0]);
+ const MaterialInfo &info = matmanager->get_info(phase_id);
+ info.model->getStrainStress(strain.segment(n_str * idx[0], n_str).data(), stress.segment(n_str * idx[0], n_str).data(), ue, info.local_mat_id, idx[0]);
stress_average += stress.segment(n_str * idx[0], n_str);
strain_average += strain.segment(n_str * idx[0], n_str);
- phase_stress_average[mat_index] += stress.segment(n_str * idx[0], n_str);
- phase_strain_average[mat_index] += strain.segment(n_str * idx[0], n_str);
- phase_counts[mat_index]++;
+ phase_stress_average[phase_id] += stress.segment(n_str * idx[0], n_str);
+ phase_strain_average[phase_id] += strain.segment(n_str * idx[0], n_str);
+ phase_counts[phase_id]++;
});
MPI_Allreduce(MPI_IN_PLACE, stress_average.data(), n_str, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD);
@@ -600,7 +605,7 @@ void Solver::postprocess(Reader &reader, int load_idx, int time_
reader.writeSlab("strain", load_idx, time_idx, strain.data(), n_str);
reader.writeSlab("stress", load_idx, time_idx, stress.data(), n_str);
- matmodel->postprocess(*this, reader, load_idx, time_idx);
+ matmanager->postprocess(*this, reader, load_idx, time_idx);
// Compute homogenized tangent only if requested
if (find(reader.resultsToWrite.begin(), reader.resultsToWrite.end(), "homogenized_tangent") != reader.resultsToWrite.end()) {
@@ -610,8 +615,8 @@ void Solver::postprocess(Reader &reader, int load_idx, int time_
cout << "# Homogenized tangent: " << endl
<< setprecision(12) << homogenized_tangent << endl
<< endl;
- reader.writeData("homogenized_tangent", load_idx, time_idx, homogenized_tangent.data(), dims, 2);
}
+ reader.writeData("homogenized_tangent", load_idx, time_idx, homogenized_tangent.data(), dims, 2);
}
extrapolateDisplacement(); // prepare v_u for next time step
}
@@ -628,16 +633,17 @@ VectorXd Solver::get_homogenized_stress()
v_u + local_n0 * n_y * n_z * howmany, n_y * n_z * howmany, MPI_DOUBLE, (world_rank + 1) % world_size, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
Matrix ue;
- int mat_index;
+ int phase_id;
iterateCubes<0>([&](ptrdiff_t *idx, ptrdiff_t *idxPadding) {
for (int i = 0; i < 8; ++i) {
for (int j = 0; j < howmany; ++j) {
ue(howmany * i + j, 0) = v_u[howmany * idx[i] + j];
}
}
- mat_index = ms[idx[0]];
+ phase_id = ms[idx[0]];
- matmodel->getStrainStress(strain.segment(n_str * idx[0], n_str).data(), stress.segment(n_str * idx[0], n_str).data(), ue, mat_index, idx[0]);
+ const MaterialInfo &info = matmanager->get_info(phase_id);
+ info.model->getStrainStress(strain.segment(n_str * idx[0], n_str).data(), stress.segment(n_str * idx[0], n_str).data(), ue, info.local_mat_id, idx[0]);
homogenized_stress += stress.segment(n_str * idx[0], n_str);
});
@@ -654,12 +660,17 @@ MatrixXd Solver::get_homogenized_tangent(double pert_param)
VectorXd unperturbed_stress = get_homogenized_stress();
VectorXd perturbed_stress;
vector pert_strain(n_str, 0.0);
- vector g0 = this->matmodel->macroscale_loading;
- bool islinear = dynamic_cast *>(this->matmodel) != nullptr;
+ vector g0 = matmanager->get_info(0).model->macroscale_loading;
+ bool islinear = matmanager->all_linear;
this->reader.errorParameters["type"] = "relative";
this->TOL = max(1e-6, this->TOL);
+ for (auto *model : matmanager->models) {
+ if (dynamic_cast(model) != nullptr) {
+ throw std::runtime_error("Homogenized tangent computation not implemented for J2Plasticity models.");
+ }
+ }
// TODO: a deep copy of the solver object is needed here to avoid modifying the history of the solver object
for (int i = 0; i < n_str; i++) {
@@ -671,7 +682,7 @@ MatrixXd Solver::get_homogenized_tangent(double pert_param)
pert_strain[i] += pert_param;
}
- matmodel->setGradient(pert_strain);
+ matmanager->set_gradient(pert_strain);
disableMixedBC();
solve();
perturbed_stress = get_homogenized_stress();
diff --git a/include/solverCG.h b/include/solverCG.h
index 1147e87..b02a428 100644
--- a/include/solverCG.h
+++ b/include/solverCG.h
@@ -14,7 +14,7 @@ class SolverCG : public Solver {
using Solver::v_u_real;
using Solver::v_r_real;
- SolverCG(Reader &reader, Matmodel *matmodel);
+ SolverCG(Reader &reader, MaterialManager *matmanager);
virtual ~SolverCG();
double *s;
@@ -33,8 +33,8 @@ class SolverCG : public Solver {
};
template
-SolverCG::SolverCG(Reader &reader, Matmodel *mat)
- : Solver(reader, mat),
+SolverCG::SolverCG(Reader &reader, MaterialManager *matmgr)
+ : Solver(reader, matmgr),
s(fftw_alloc_real(reader.alloc_local * 2)),
s_real(s, n_z * howmany, local_n0 * n_y, OuterStride<>((n_z + 2) * howmany)),
@@ -63,8 +63,7 @@ void SolverCG::internalSolve()
if (this->world_rank == 0)
printf("\n# Start FANS - Conjugate Gradient Solver \n");
- LinearModel *linearModel = dynamic_cast *>(this->matmodel);
- bool islinear = (linearModel == NULL) ? false : true;
+ bool islinear = this->matmanager->all_linear;
s_real.setZero();
d_real.setZero();
@@ -95,8 +94,9 @@ void SolverCG::internalSolve()
if (islinear && !this->isMixedBCActive()) {
Matrix res_e;
this->template compute_residual_basic<0>(rnew_real, d_real,
- [&](Matrix &ue, int mat_index, ptrdiff_t element_idx) -> Matrix & {
- res_e.noalias() = linearModel->phase_stiffness[mat_index] * ue;
+ [&](Matrix &ue, int phase_id, ptrdiff_t element_idx) -> Matrix & {
+ const MaterialInfo &info = this->matmanager->get_info(phase_id);
+ res_e.noalias() = info.linear_model->phase_stiffness[info.local_mat_id] * ue;
return res_e;
});
diff --git a/include/solverFP.h b/include/solverFP.h
index a01adfb..67b99a4 100644
--- a/include/solverFP.h
+++ b/include/solverFP.h
@@ -14,7 +14,7 @@ class SolverFP : public Solver {
using Solver::v_u_real;
using Solver::v_r_real;
- SolverFP(Reader &reader, Matmodel *matmodel);
+ SolverFP(Reader &reader, MaterialManager *matmanager);
void internalSolve();
@@ -23,8 +23,8 @@ class SolverFP : public Solver {
};
template
-SolverFP::SolverFP(Reader &reader, Matmodel *matmodel)
- : Solver(reader, matmodel)
+SolverFP::SolverFP(Reader &reader, MaterialManager *matmanager)
+ : Solver(reader, matmanager)
{
this->CreateFFTWPlans(this->v_r, (fftw_complex *) this->v_r, this->v_r);
}
diff --git a/pixi.lock b/pixi.lock
index 45070f6..6112dbf 100644
--- a/pixi.lock
+++ b/pixi.lock
@@ -3,1435 +3,2947 @@ environments:
dashboard:
channels:
- url: https://conda.anaconda.org/conda-forge/
- indexes:
- - https://pypi.org/simple
packages:
linux-64:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/astropy-base-7.1.1-py314h28ce15b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.9.1-h194c533_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.9.8-h346e085_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.12.5-hb03c661_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.1-h7e655bb_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.6-h1deb5b9_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.10.7-had4b759_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.23.2-hbff472d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.13.3-h8ba2272_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.8.6-h493c25d_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h7e655bb_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.7-h7e655bb_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.35.0-h719b17a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.606-h522d481_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.16.1-h3a458e0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.13.2-h3a5f585_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.15.0-h2a74896_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.11.0-h3d7a050_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.13.0-hf38f1be_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bottleneck-1.6.0-np2py314h56abb78_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.2.0-h41a2e66_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.2.0-hf2c8021_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py314hdfeb8a1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brunsli-0.1-hd1e3526_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.22.0-h4cfbee9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py314hc02f841_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.6.0-h54a6638_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.3-py314h9891dd4_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_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.16.2-h3c4dab8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.17-py314h8c728da_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/editdistance-s-1.0.0-py314h9891dd4_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ducc0-0.39.1-py314ha160325_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf1063bd_110.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/geos-3.14.1-h480dda7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
+ - 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-hae5d5c5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmpy2-2.2.1-py314h28848ee_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.15.1-nompi_py314hc32fe06_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-12.2.0-h15599e2_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.6-nompi_h6e4c0c1_103.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/imagecodecs-2025.11.11-py314hfc787d7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyha191276_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.9-py314h97ea11e_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20250512.1-cxx17_hba17884_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-37_h4a7cf45_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-37_h0358290_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.16.0-h4e3cde8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-22.0.0-h99e40f8_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-22.0.0-h635bf11_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-compute-22.0.0-h8c2c5c3_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-22.0.0-h635bf11_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-22.0.0-h3f74fd7_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp21.1-21.1.5-default_h99862b1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-21.1.5-default_h746c552_1.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-hb8b1518_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.125-hb03c661_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
- 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.7.1-hecca717_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.86.1-h32235b2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.39.0-hdb79228_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.39.0-hdbdcf42_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.73.1-h3288cfb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.12.1-default_h7f8ec31_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-37_h47877c9_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm21-21.1.5-hf7376ad_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.3-nompi_h11f7409_103.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopentelemetry-cpp-1.21.0-hb9b0907_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopentelemetry-cpp-headers-1.21.0-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-22.0.0-h7376487_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-18.0-h3675c94_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-6.31.1-h49aed37_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2025.11.05-h7b12aa8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.22.0-h454ac66_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.11.0-hb04c3b8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-hf2a90c1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h031cc0b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvulkan-loader-1.4.328.1-h5279c79_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_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.13.0-hca5e8e5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-ha9997c6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h26afc86_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.43-h711ed8c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.2-py314hae3bed6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.2-py314hae3bed6_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.7-py314h1194b4b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mpc-1.3.1-h24ddda3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.2.1-h90cbb55_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.2-py314h9891dd4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.7.3-nompi_py314hed328fd_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.3.4-py314h2b28147_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.0-h26f9b46_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.2.1-hd747db4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.3-py314ha0b5721_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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.46-h1321c63_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-12.0.0-py314h72745e2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.7.0-hb72c0af_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/prometheus-cpp-1.3.0-ha5d0236_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.1.0-py314h5bd0f2a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.1.3-py314h0f05182_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-22.0.0-py314hdafbbf9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-22.0.0-py314h52d6ec5_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyerfa-2.0.1.5-py310h32771cd_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyshtools-4.13.1-py314h797cafe_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.0-h32b2ec7_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.9.0-py314hc02f841_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hfb55c3c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.9.3-h5c1c036_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/quaternion-2024.0.12-py314hc02f841_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2025.11.05-h5301d42_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.28.0-py314h2e6c369_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.2-py314he7377e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.28.0-py314h2e6c369_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.6.0-h8399546_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.25.2-py314ha0b5721_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.3-py314he7377e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/shapely-2.1.2-py314hbe3edd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.51.0-heff268d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.3.0-h8d10470_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/time-1.9-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py314h5bd0f2a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py314h5bd0f2a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py314h9891dd4_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-17.0.0-py314h5bd0f2a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.8-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.5.2-py314h41551e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.24.0-hd6090a7_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.3-py314h5bd0f2a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h387f397_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.1-h909a3a2_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.2.5-hde8ca8f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.25.0-py314h0f05182_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/astropy-base-7.1.1-py314hedaaa41_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.9.1-h65b627b_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.9.8-h4401a86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.12.5-he30d5cf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.1-hb6bbc7b_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.6-hf48a900_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.10.7-h8b93892_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.23.2-ha25bc20_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.13.3-he441a46_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.8.6-h2ed19f2_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.4-hb6bbc7b_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.7-hb6bbc7b_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.35.0-h064172b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.606-h5fce88b_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.16.1-h20031ec_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.13.2-h5cd3b3c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.15.0-h4b8de25_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.11.0-h01c82c4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.13.0-h48ee4ef_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bottleneck-1.6.0-np2py314hdf4ef4c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.2.0-hec30622_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.2.0-hf3d421d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.2.0-py314hba27ebb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brunsli-0.1-h099923c_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-blosc2-2.22.0-hce0b784_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-2.0.0-py314h0bd77cf_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cftime-1.6.4-py314hc2f71db_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/charls-2.4.2-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cli11-2.6.0-h7ac5ae9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.3.3-py314hd7d8586_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cyrus-sasl-2.1.28-h6c5dea3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.16.2-heda779d_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.17-py314h3642cf7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/editdistance-s-1.0.0-py314hd7d8586_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ducc0-0.39.1-py314h02b5315_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-nompi_h020dacd_110.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.14.1-h8af1aa0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/geos-3.14.1-h57520ee_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/giflib-5.2.2-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmpy2-2.2.1-py314h887ad84_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/graphite2-1.3.14-hfae3067_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.15.1-nompi_py314h2a0c532_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/harfbuzz-12.2.0-he4899c9_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.6-nompi_h587839b_103.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/imagecodecs-2025.11.11-py314hb449bd7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyha191276_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.9-py314h4702e76_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-hfdc4d58_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20250512.1-cxx17_h201e9ed_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-37_haddc8a3_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-37_hd72aa62_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.16.0-h7bfdcfb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-22.0.0-hf4c6730_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-22.0.0-hb326ee9_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-compute-22.0.0-hec39e8e_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-22.0.0-hb326ee9_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-22.0.0-hf75f729_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libavif16-1.3.0-hfe54310_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-38_haddc8a3_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.2.0-hd4db518_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.2.0-hb159aeb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.2.0-ha5a240b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-38_hd72aa62_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp21.1-21.1.5-default_he95a3c9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-21.1.5-default_h94a09a5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h5cdc715_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.17.0-h7bfdcfb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.25-h1af38f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdrm-2.4.125-he30d5cf_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.5.2-hd65408f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfreetype-2.14.1-h8af1aa0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfreetype6-2.14.1-hdae7a39_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-15.2.0-he277a41_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-15.2.0-he9431aa_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-15.2.0-he9431aa_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-15.2.0-he9431aa_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-15.2.0-h87db57e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.86.1-he84ff74_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.3-h5ad3122_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-15.2.0-he277a41_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.39.0-h857b6ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.39.0-h66d5b86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.73.1-h002f8c2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h7949937_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwy-1.3.0-h81d0cf9_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.1.0-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-37_h88aeb00_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.1.2-he30d5cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjxl-0.11.1-h55d7d70_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-38_h88aeb00_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm21-21.1.5-hfd2ba90_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmpdec-4.0.0-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.3-nompi_haeac333_103.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.67.0-ha888d0e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.5-h86ecc28_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopentelemetry-cpp-1.21.0-h3f2e541_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopentelemetry-cpp-headers-1.21.0-h8af1aa0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-22.0.0-h87079af_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpciaccess-0.18-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.50-h1abf092_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-18.0-hb4b1422_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-6.31.1-h2cf3c76_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2025.11.05-h6983b43_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.50.4-h022381a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.51.0-h022381a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-15.2.0-h3f4de04_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-15.2.0-hf1166c9_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.22.0-h046380b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.7.1-hdb009f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.11.0-h999d871_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.41.2-h3e4203c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h7ac5ae9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvulkan-loader-1.4.328.1-h8b8848b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.6.0-ha2e29f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.13.0-h3c6a4c8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-16-2.15.1-h8591a01_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.15.1-h788dabe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.43-h6700d25_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-6.0.2-py314hc429ed8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzopfli-1.0.3-h01db608_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-6.0.2-py314hc429ed8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.10.7-py314h5be3d5a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpc-1.3.1-h783934e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpfr-4.2.1-h2305555_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.1.2-py314hd7d8586_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/netcdf4-1.7.3-nompi_py314h35dd797_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h7ac5ae9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-2.3.4-py314haac167e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.5.4-h8e36d6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.4-h5da879a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openldap-2.6.10-h30c48ee_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.6.0-h8e36d6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.2.1-h59c2525_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.3.3-py314h91eeaa4_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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-aarch64/pcre2-10.46-h15761aa_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-12.0.0-py314h1883709_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.46.4-h7ac5ae9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.7.0-hfc38104_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/prometheus-cpp-1.3.0-h7938499_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-7.1.0-py314h51f160d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-7.1.3-py314h2e8dab5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-22.0.0-py314ha42fa4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-22.0.0-py314h74722e0_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyerfa-2.0.1.5-py310hf07f68b_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyshtools-4.13.1-py314h2f9a9d6_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.14.0-hb06a95a_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pywavelets-1.9.0-py314hc2f71db_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-27.1.0-py312h4552c38_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qt6-main-6.9.3-h224e339_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/quaternion-2024.0.12-py314hc2f71db_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2025.11.05-he0da282_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.28.0-py314h02b7a91_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.16.2-py314hc1e843e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.28.0-py314h02b7a91_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.6.0-hea311c8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-image-0.25.2-py314h91eeaa4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.16.3-py314hc1e843e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/shapely-2.1.2-py314h1eb85aa_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.51.0-he8854b5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-3.1.2-hfae3067_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2022.3.0-h0eac15c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/time-1.9-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.5.2-py314hafb4487_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.5.2-py314hafb4487_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ukkonen-1.0.1-py314hd7d8586_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-17.0.0-py314h51f160d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/utfcpp-4.0.8-h8af1aa0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-base-9.5.2-py314h8174c61_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wayland-1.24.0-h4f8a99f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.3-py314h51f160d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.1-hca56bd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xkeyboard-config-2.46-he30d5cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.12-he30d5cf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-he30d5cf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-6.0.2-he30d5cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-h80f16a2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-hefbcea8_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zfp-1.0.1-h05c1e92_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-ng-2.2.5-h92288e7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.25.0-py314h2e8dab5_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
- linux-ppc64le:
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/attr-2.5.2-hcf8ba42_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/blosc-1.21.6-h873c8c4_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-heb0841c_8.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/c-ares-1.34.5-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cffi-2.0.0-py314h50ff317_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cftime-1.6.4-py314hcbdb684_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/debugpy-1.8.17-py314h3363676_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/editdistance-s-1.0.0-py314h4fd8a46_7.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/h5py-3.15.1-nompi_py314hd1bb5bb_100.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf4-4.2.15-h5e294c4_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf5-1.14.6-nompi_h3365b58_103.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/icu-75.1-h5867af4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/keyutils-1.6.3-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/krb5-1.21.3-h7eda64f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.44-h01e97ec_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libaec-1.1.4-h509caba_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libblas-3.9.0-37_h75dcd6d_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcblas-3.9.0-37_hdcea00e_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcurl-8.16.0-hda50728_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libedit-3.1.20250104-pl5321h9a3a893_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libev-4.33-ha17a0cc_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libexpat-2.7.1-hf512061_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libffi-3.5.2-h4197a55_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-15.2.0-h0d7acf9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-15.2.0-h111d2ef_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-15.2.0-h0d7acf9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.18-h25553c4_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libjpeg-turbo-3.1.0-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblapack-3.9.0-37_h5422efa_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblzma-5.8.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libmpdec-4.0.0-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnetcdf-4.9.3-nompi_h73fc212_103.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnghttp2-1.67.0-he618a7b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libopenblas-0.3.30-pthreads_h8ac31f8_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsodium-1.0.20-h1f2b957_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsqlite-3.50.4-h8cc42db_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libssh2-1.11.1-h50e65aa_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-15.2.0-h262982c_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-15.2.0-hf27a640_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libuuid-2.41.2-h10e6d09_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-16-2.15.1-h83eeafb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-2.15.1-h485e107_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxslt-1.1.43-h823012b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzip-1.11.2-h4282fc3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.3.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lxml-6.0.2-py314h5a27059_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lz4-c-1.10.0-h2621725_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.5-h8645e7e_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/netcdf4-1.7.3-nompi_py314h7e16b28_100.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/numpy-2.3.4-py314h66217d6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.5.4-hb9a03e6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/psutil-7.1.1-py314he970779_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/python-3.14.0-h1a654b9_102_cp314.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/pyzmq-27.1.0-py312h6d289d5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/readline-8.2-hf4ca6f9_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rpds-py-0.28.0-py314h603c1d2_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/scipy-1.16.2-py314h03172c9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/snappy-1.2.2-hc76479f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/time-1.9-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/tk-8.6.13-noxft_he73cbed_102.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/tornado-6.5.2-py314hc52b89b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/yaml-0.2.5-h0558730_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zeromq-4.3.5-h488b2a3_9.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zlib-1.3.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.7-h53ff00b_2.conda
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
osx-64:
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/astropy-base-7.1.1-py314h4ddd080_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.9.1-hd76a34f_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.9.8-h6b06ba2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.12.5-h8616949_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.3.1-h7df70e9_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.5.6-h0ddc0d0_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.10.7-ha9fb31a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.23.2-hccfe1ea_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.13.3-ha2a017f_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.8.6-hedfbfa3_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.2.4-h7df70e9_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.2.7-h7df70e9_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.35.0-h7e7cb56_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.606-hf0dd41a_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.16.1-he2a98a9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-identity-cpp-1.13.2-h0e8e1c8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.15.0-h388f2e7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.11.0-h56a711b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-files-datalake-cpp-12.13.0-h1984e67_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-hd145fbb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/bottleneck-1.6.0-np2py314hfeef9c2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.2.0-hb27157a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.2.0-h5c1846c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314hd4d9bf7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brunsli-0.1-ha00ef93_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/c-blosc2-2.22.0-h415348b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.4-py314ha6d4590_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/charls-2.4.2-he965462_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cli11-2.6.0-h53ec75d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.3-py314h00ed6fe_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.28-h610c526_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_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.17-py314h93774dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/editdistance-s-1.0.0-py314h00ed6fe_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ducc0-0.39.1-py314h21b9a27_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-nompi_h292e606_110.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.2.0-hbf61d64_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.14.1-h694c41f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/geos-3.14.1-he483b9e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hac325c4_1005.conda
+ - 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/glog-0.7.1-h2790a97_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gmpy2-2.2.1-py314hae71602_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.14-h21dd04a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.15.1-nompi_py314hf613b1f_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-12.2.0-hc5d3ef4_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.6-nompi_hc8237f9_103.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/imagecodecs-2025.11.11-py314hf9c3537_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyh5552912_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyh5552912_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.6-h466cfd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.9-py314hf3ac25a_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hcca01a6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20250512.1-cxx17_hfc00f1c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-37_he492b99_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-37_h9b27e0a_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.16.0-h7dd4100_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.4-h3d58e20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-22.0.0-hb95b15f_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-22.0.0-h2db2d7d_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-compute-22.0.0-h7751554_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-22.0.0-h2db2d7d_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-22.0.0-h4653b8a_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.3.0-h1c10324_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-38_he492b99_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.2.0-h105ed1c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.2.0-h660c9da_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.2.0-h2338291_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-38_h9b27e0a_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp19.1-19.1.7-default_hc369343_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-21.1.5-default_h7f9524c_1.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.17.0-h7dd4100_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.5-h3d58e20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda
- 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.7.1-h21dd04a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-h750e83c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.1-h694c41f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.1-h6912278_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h306097a_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-h336fb69_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.86.1-h6ca3a76_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.39.0-hed66dea_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.39.0-h8ac052b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.73.1-h451496d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.12.1-default_h094e1f9_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libhwy-1.3.0-hab838a1_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.0-h6e16a3a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-37_h859234e_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.2-h8616949_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libjxl-0.11.1-h4ee1b5b_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-38_h859234e_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.7-h56e7563_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm21-21.1.5-h56e7563_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.1-hd471939_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-h6e16a3a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.3-nompi_habf9e57_103.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.67.0-h3338091_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_h6006d49_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.5-he3325bb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_h6006d49_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopentelemetry-cpp-1.21.0-h7d3f41d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopentelemetry-cpp-headers-1.21.0-h694c41f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-22.0.0-habb56ca_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.50-h84aeda2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libpq-18.0-h5a4e477_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-6.31.1-h03562ea_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2025.11.05-h554ac88_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.50.4-h39a8b3b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.51.0-h86bffb9_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-h0ad03eb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h23bb396_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.22.0-h687e942_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.11.0-h64b4c5c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-ha059160_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-ha1d9b0f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h7b7ecba_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.43-h486b42e_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.4-h472b3d1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.2-py314h787f955_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libzopfli-1.0.3-h046ec9c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.5-h472b3d1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.2-py314h787f955_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.10.0-h240833e_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.10.7-py314hd47142c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.2-py314h00ed6fe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.7.3-nompi_py314hf60e252_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.12.0-h53ec75d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.3.4-py314hf08249b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.4-h87e8dc5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.10-hd8a590d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.0-h230baf5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.2.1-hd1b02dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.3.3-py314hc4308db_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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.46-ha3e7e28_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-12.0.0-py314h0a84944_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/proj-9.7.0-h3124640_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/prometheus-cpp-1.3.0-h7802330_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.1.1-py314h6482030_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.1.3-py314hd1e8ddb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.15-h46091d4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-22.0.0-py314hee6578b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-core-22.0.0-py314h35e0213_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyerfa-2.0.1.5-py310hcbffc5d_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyshtools-4.13.1-py314h0594fbe_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.0-hf88997e_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.9.0-py314hd1ec8a2_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312hb7d603e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/qt6-main-6.9.3-hac9256e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/quaternion-2024.0.12-py314hd1ec8a2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.7.1-h371c88c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2025.11.05-h7df6414_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.28.0-py314ha7b6dee_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.2-py314h9d854bd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.28.0-py314ha7b6dee_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.25.2-py314hc4308db_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.3-py314h9d854bd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/shapely-2.1.2-py314h4eeafd1_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h25c286d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h01f5ddf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.51.0-hca40e9d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-3.1.2-h21dd04a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2022.3.0-hf0c99ee_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/time-1.9-h6e16a3a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py314h03d016b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py314h6482030_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py314hd4d8fbc_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-17.0.0-py314h6482030_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.8-h694c41f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.5.2-py314hd9cbe44_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.17.3-py314h03d016b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.12-h8616949_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h8616949_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h6c33b1e_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.1-h326e263_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.2.5-h55e386d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.25.0-py314hd1e8ddb_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h8210216_2.conda
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/astropy-base-7.1.1-py314h7d719a5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.9.1-h753d554_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.9.8-hca30140_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.12.5-hc919400_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.1-h61d5560_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.6-hada8b3e_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.10.7-h241dc44_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.23.2-hcea795d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.13.3-hf26a141_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.8.6-h1e3b5a0_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.4-h61d5560_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.7-h61d5560_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.35.0-h44e95eb_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.606-hf3ce6b4_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.16.1-h88fedcc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.13.2-h853621b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.15.0-h10d327b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.11.0-h7e4aa5d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.13.0-hb288d13_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bottleneck-1.6.0-np2py314hfa18b03_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.2.0-hca488c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.2.0-hce9b42c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h95ef04c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brunsli-0.1-he0dfb12_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_8.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-blosc2-2.22.0-hb5916c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.4-py314h943c2e0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/charls-2.4.2-h13dd4ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cli11-2.6.0-h248ca61_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.3-py314h784bc60_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.28-ha1cbb27_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.17-py314hac9ea21_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/editdistance-s-1.0.0-py314h784bc60_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ducc0-0.39.1-py314h93ecee7_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-nompi_h6637ab6_110.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.2.0-h440487c_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.14.1-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.14.1-h5afe852_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.2-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmpy2-2.2.1-py314h07d5e28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.15.1-nompi_py314h1c8d760_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-12.2.0-haf38c7b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-nompi_he65715a_103.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/imagecodecs-2025.11.11-py314hd3d5c6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyh5552912_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyh5552912_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.9-py314h42813c9_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20250512.1-cxx17_hd41c47c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-37_h51639a9_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-37_hb0561ab_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.16.0-hdece5d2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.4-hf598326_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-22.0.0-h4f7d3e6_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-22.0.0-hc317990_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-compute-22.0.0-h75845d1_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-22.0.0-hc317990_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-22.0.0-h144af7f_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libavif16-1.3.0-hb06b76e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-38_h51639a9_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.2.0-h87ba0bc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.2.0-h95a88de_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.2.0-hb1b9735_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-38_hb0561ab_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp19.1-19.1.7-default_h73dfc95_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-21.1.5-default_h6e8f826_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.17.0-hdece5d2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.5-hf598326_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-he5f378a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.1-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.1-h6da58f4_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-hfcf01ff_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-h742603c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.86.1-he69a767_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.39.0-head0a95_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.39.0-hfa3a374_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.73.1-h3063b79_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.12.1-default_h48b22c3_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwy-1.3.0-h48b13b8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.0-h5505292_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-37_hd9741b5_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.2-hc919400_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjxl-0.11.1-h3dcb153_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-38_hd9741b5_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm19-19.1.7-h8e0c9ce_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm21-21.1.5-h8e0c9ce_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.3-nompi_h80c4520_103.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.67.0-hc438710_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_ha158390_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.5-h48c0fde_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_ha158390_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopentelemetry-cpp-1.21.0-he15edb5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopentelemetry-cpp-headers-1.21.0-hce30654_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-22.0.0-h0ac143b_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.50-h280e0eb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-18.0-h31f7a3a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-6.31.1-h658db43_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2025.11.05-h91c62da_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.51.0-h8adb53f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.22.0-h14a376c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.11.0-hc25f550_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h81086ad_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h0ff4647_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-h9329255_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.43-hb2570ba_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.4-h4a912ad_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.2-py314he05ef12_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzopfli-1.0.3-h9f76cd9_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.5-h4a912ad_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.2-py314he05ef12_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.10.7-py314hd63e3f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.2-py314h784bc60_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf4-1.7.3-nompi_py314ha229517_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.12.0-h248ca61_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.3.4-py314h5b5928d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.4-h5503f6c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.4-hbfb3c88_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.0-h5503f6c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.2.1-h4fd0076_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.3.3-py314ha3d490a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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-arm64/pcre2-10.46-h7125dd6_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-12.0.0-py314h73456f9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.7.0-hf83150c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/prometheus-cpp-1.3.0-h0967b3e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.1.1-py314h0612a62_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.1.3-py314h9d33bd4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-22.0.0-py314he55896b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-22.0.0-py314hf20a12a_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyerfa-2.0.1.5-py310hbb12772_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyshtools-4.13.1-py314hff548eb_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.0-h40d2674_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.9.0-py314hdcf55e8_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312hd65ceae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/qt6-main-6.9.3-hb266e41_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/quaternion-2024.0.12-py314hdcf55e8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2025.11.05-h64b956e_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.28.0-py314haad56a0_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.2-py314h624bdf2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.28.0-py314haad56a0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.25.2-py314ha3d490a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.3-py314h624bdf2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/shapely-2.1.2-py314h277790e_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hada39a4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.51.0-h81ab1b7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-3.1.2-h12ba402_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2022.3.0-h66ce52b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/time-1.9-h5505292_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py314hb84d1df_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py314h0612a62_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py314h6b18a25_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-17.0.0-py314h0612a62_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/utfcpp-4.0.8-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-base-9.5.2-py314h3ddaf29_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.3-py314hb84d1df_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.12-hc919400_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hc919400_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h888dc83_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.1-hfd287c0_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.2.5-h3470cca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.25.0-py314h9d33bd4_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
default:
channels:
- url: https://conda.anaconda.org/conda-forge/
- indexes:
- - https://pypi.org/simple
packages:
linux-64:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/astropy-base-7.1.1-py314h28ce15b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.9.1-h194c533_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.9.8-h346e085_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.12.5-hb03c661_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.1-h7e655bb_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.6-h1deb5b9_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.10.7-had4b759_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.23.2-hbff472d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.13.3-h8ba2272_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.8.6-h493c25d_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h7e655bb_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.7-h7e655bb_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.35.0-h719b17a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.606-h522d481_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.16.1-h3a458e0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.13.2-h3a5f585_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.15.0-h2a74896_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.11.0-h3d7a050_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.13.0-hf38f1be_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bottleneck-1.6.0-np2py314h56abb78_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.2.0-h41a2e66_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.2.0-hf2c8021_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py314hdfeb8a1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brunsli-0.1-hd1e3526_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.22.0-h4cfbee9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py314hc02f841_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.6.0-h54a6638_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.3-py314h9891dd4_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_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.16.2-h3c4dab8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.17-py314h8c728da_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/editdistance-s-1.0.0-py314h9891dd4_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ducc0-0.39.1-py314ha160325_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_openmpi_h99e62ba_10.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/geos-3.14.1-h480dda7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
+ - 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-hae5d5c5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmpy2-2.2.1-py314h28848ee_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.15.1-nompi_py314hc32fe06_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-12.2.0-h15599e2_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.6-mpi_openmpi_h4fb29d0_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/imagecodecs-2025.11.11-py314hfc787d7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyha191276_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.9-py314h97ea11e_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20250512.1-cxx17_hba17884_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-37_h4a7cf45_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.76-h0b2e76d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-37_h0358290_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.16.0-h4e3cde8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-22.0.0-h99e40f8_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-22.0.0-h635bf11_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-compute-22.0.0-h8c2c5c3_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-22.0.0-h635bf11_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-22.0.0-h3f74fd7_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.77-h3ff7636_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp21.1-21.1.5-default_h99862b1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-21.1.5-default_h746c552_1.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-hb8b1518_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.125-hb03c661_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
- 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.7.1-hecca717_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric-2.3.1-ha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric1-2.3.1-h3ff6011_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric-2.3.1-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric1-2.3.1-h6c8fc0a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.86.1-h32235b2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.39.0-hdb79228_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.39.0-hdbdcf42_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.73.1-h3288cfb_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.12.1-default_h7f8ec31_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-37_h47877c9_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm21-21.1.5-hf7376ad_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.3-nompi_h11f7409_103.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.11.0-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopentelemetry-cpp-1.21.0-hb9b0907_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopentelemetry-cpp-headers-1.21.0-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-22.0.0-h7376487_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libpmix-5.0.8-h4bd6b51_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-18.0-h3675c94_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-6.31.1-h49aed37_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2025.11.05-h7b12aa8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.9-h996ca69_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.9-h085a93f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.10-hd0affe5_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.22.0-h454ac66_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.10-hd0affe5_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.11.0-hb04c3b8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-hf2a90c1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h031cc0b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvulkan-loader-1.4.328.1-h5279c79_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_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.13.0-hca5e8e5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-ha9997c6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h26afc86_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.43-h711ed8c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.2-py314hae3bed6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.2-py314hae3bed6_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.7-py314h1194b4b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mpc-1.3.1-h24ddda3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.2.1-h90cbb55_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.2-py314h9891dd4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.7.3-nompi_py314hed328fd_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.3.4-py314h2b28147_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-5.0.8-h2fe1745_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.0-h26f9b46_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.2.1-hd747db4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.3-py314ha0b5721_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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.46-h1321c63_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-12.0.0-py314h72745e2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.7.0-hb72c0af_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/prometheus-cpp-1.3.0-ha5d0236_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.1.0-py314h5bd0f2a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.1.3-py314h0f05182_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-22.0.0-py314hdafbbf9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-22.0.0-py314h52d6ec5_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyerfa-2.0.1.5-py310h32771cd_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyshtools-4.13.1-py314h797cafe_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.0-h32b2ec7_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.9.0-py314hc02f841_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hfb55c3c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-59.0-hecca717_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.9.3-h5c1c036_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/quaternion-2024.0.12-py314hc02f841_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-60.0-hecca717_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2025.11.05-h5301d42_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.28.0-py314h2e6c369_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.2-py314he7377e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.28.0-py314h2e6c369_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.6.0-h8399546_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.25.2-py314ha0b5721_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.3-py314he7377e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/shapely-2.1.2-py314hbe3edd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.51.0-heff268d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.3.0-h8d10470_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/time-1.9-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py314h5bd0f2a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py314h5bd0f2a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ucc-1.5.1-hb729f83_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.19.0-hc93acc0_4.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.19.0-h63b5c0b_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py314h9891dd4_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-17.0.0-py314h5bd0f2a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.8-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.5.2-py314h41551e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.24.0-hd6090a7_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.3-py314h5bd0f2a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h387f397_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.1-h909a3a2_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.2.5-hde8ca8f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.25.0-py314h0f05182_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
- conda: .
build: h04f5b5a_0
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/astropy-base-7.1.1-py314hedaaa41_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.9.1-h65b627b_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.9.8-h4401a86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.12.5-he30d5cf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.1-hb6bbc7b_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.6-hf48a900_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.10.7-h8b93892_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.23.2-ha25bc20_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.13.3-he441a46_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.8.6-h2ed19f2_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.4-hb6bbc7b_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.7-hb6bbc7b_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.35.0-h064172b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.606-h5fce88b_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.16.1-h20031ec_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.13.2-h5cd3b3c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.15.0-h4b8de25_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.11.0-h01c82c4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.13.0-h48ee4ef_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bottleneck-1.6.0-np2py314hdf4ef4c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.2.0-hec30622_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.2.0-hf3d421d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.2.0-py314hba27ebb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brunsli-0.1-h099923c_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-blosc2-2.22.0-hce0b784_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-2.0.0-py314h0bd77cf_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cftime-1.6.4-py314hc2f71db_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/charls-2.4.2-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cli11-2.6.0-h7ac5ae9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.3.3-py314hd7d8586_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cyrus-sasl-2.1.28-h6c5dea3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.16.2-heda779d_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.17-py314h3642cf7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/editdistance-s-1.0.0-py314hd7d8586_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ducc0-0.39.1-py314h02b5315_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_openmpi_hc95d1d6_10.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.14.1-h8af1aa0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/geos-3.14.1-h57520ee_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/giflib-5.2.2-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmpy2-2.2.1-py314h887ad84_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/graphite2-1.3.14-hfae3067_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.15.1-nompi_py314h2a0c532_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/harfbuzz-12.2.0-he4899c9_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.6-mpi_openmpi_h90d2627_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/imagecodecs-2025.11.11-py314hb449bd7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyha191276_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.9-py314h4702e76_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-hfdc4d58_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20250512.1-cxx17_h201e9ed_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-37_haddc8a3_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.76-h5706e9e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-37_hd72aa62_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.16.0-h7bfdcfb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-22.0.0-hf4c6730_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-22.0.0-hb326ee9_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-compute-22.0.0-hec39e8e_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-22.0.0-hb326ee9_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-22.0.0-hf75f729_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libavif16-1.3.0-hfe54310_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-38_haddc8a3_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.2.0-hd4db518_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.2.0-hb159aeb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.2.0-ha5a240b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.77-h68e9139_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-38_hd72aa62_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp21.1-21.1.5-default_he95a3c9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-21.1.5-default_h94a09a5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h5cdc715_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.17.0-h7bfdcfb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.25-h1af38f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdrm-2.4.125-he30d5cf_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric-2.3.1-h8af1aa0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric1-2.3.1-hb8d9d8c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric-2.3.1-h8af1aa0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric1-2.3.1-h3775113_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.5.2-hd65408f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfreetype-2.14.1-h8af1aa0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfreetype6-2.14.1-hdae7a39_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-15.2.0-he277a41_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-15.2.0-he9431aa_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-15.2.0-he9431aa_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-15.2.0-he9431aa_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-15.2.0-h87db57e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.86.1-he84ff74_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.3-h5ad3122_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-15.2.0-he277a41_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgpg-error-1.55-h5ad3122_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.39.0-h857b6ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.39.0-h66d5b86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.73.1-h002f8c2_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h7949937_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwy-1.3.0-h81d0cf9_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.1.0-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-37_h88aeb00_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.1.2-he30d5cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjxl-0.11.1-h55d7d70_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-38_h88aeb00_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm21-21.1.5-hfd2ba90_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmpdec-4.0.0-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.3-nompi_haeac333_103.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.67.0-ha888d0e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnl-3.11.0-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.5-h86ecc28_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopentelemetry-cpp-1.21.0-h3f2e541_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopentelemetry-cpp-headers-1.21.0-h8af1aa0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-22.0.0-h87079af_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpciaccess-0.18-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpmix-5.0.8-h8c64fbe_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.50-h1abf092_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-18.0-hb4b1422_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-6.31.1-h2cf3c76_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2025.11.05-h6983b43_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.50.4-h022381a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.51.0-h022381a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-15.2.0-h3f4de04_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-15.2.0-hf1166c9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.9-hd926fa8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-257.9-hf39d17c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.10-hf9559e3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.22.0-h046380b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.7.1-hdb009f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-257.10-hf9559e3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.11.0-h999d871_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.41.2-h3e4203c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h7ac5ae9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvulkan-loader-1.4.328.1-h8b8848b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.6.0-ha2e29f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.13.0-h3c6a4c8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-16-2.15.1-h8591a01_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.15.1-h788dabe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.43-h6700d25_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-6.0.2-py314hc429ed8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzopfli-1.0.3-h01db608_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-6.0.2-py314hc429ed8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.10.7-py314h5be3d5a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpc-1.3.1-h783934e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpfr-4.2.1-h2305555_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.1.2-py314hd7d8586_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/netcdf4-1.7.3-nompi_py314h35dd797_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h7ac5ae9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-2.3.4-py314haac167e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.4-h5da879a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openldap-2.6.10-h30c48ee_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-5.0.8-h188d324_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.5.4-h8e36d6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.6.0-h8e36d6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.2.1-h59c2525_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.3.3-py314h91eeaa4_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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-aarch64/pcre2-10.46-h15761aa_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-12.0.0-py314h1883709_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.46.4-h7ac5ae9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.7.0-hfc38104_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/prometheus-cpp-1.3.0-h7938499_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-7.1.0-py314h51f160d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-7.1.3-py314h2e8dab5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-22.0.0-py314ha42fa4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-22.0.0-py314h74722e0_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyerfa-2.0.1.5-py310hf07f68b_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyshtools-4.13.1-py314h2f9a9d6_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.14.0-hb06a95a_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pywavelets-1.9.0-py314hc2f71db_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-27.1.0-py312h4552c38_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-59.0-he839754_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qt6-main-6.9.3-h224e339_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/quaternion-2024.0.12-py314hc2f71db_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-60.0-he839754_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2025.11.05-he0da282_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.28.0-py314h02b7a91_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.16.2-py314hc1e843e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.28.0-py314h02b7a91_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.6.0-hea311c8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-image-0.25.2-py314h91eeaa4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.16.3-py314hc1e843e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/shapely-2.1.2-py314h1eb85aa_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.51.0-he8854b5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-3.1.2-hfae3067_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2022.3.0-h0eac15c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/time-1.9-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.5.2-py314hafb4487_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.5.2-py314hafb4487_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucc-1.5.1-h42c451e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.19.0-hfbfdc62_4.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.19.0-ha79f86a_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ukkonen-1.0.1-py314hd7d8586_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-17.0.0-py314h51f160d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/utfcpp-4.0.8-h8af1aa0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-base-9.5.2-py314h8174c61_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wayland-1.24.0-h4f8a99f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.3-py314h51f160d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.1-hca56bd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xkeyboard-config-2.46-he30d5cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.12-he30d5cf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-he30d5cf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-6.0.2-he30d5cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-h80f16a2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-hefbcea8_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zfp-1.0.1-h05c1e92_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-ng-2.2.5-h92288e7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.25.0-py314h2e8dab5_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda
- conda: .
subdir: linux-aarch64
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
- linux-ppc64le:
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/attr-2.5.2-hcf8ba42_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/blosc-1.21.6-h873c8c4_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-heb0841c_8.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/c-ares-1.34.5-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cffi-2.0.0-py314h50ff317_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cftime-1.6.4-py314hcbdb684_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/debugpy-1.8.17-py314h3363676_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/editdistance-s-1.0.0-py314h4fd8a46_7.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/fftw-3.3.10-mpi_openmpi_hf12c5a9_10.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/h5py-3.15.1-nompi_py314hd1bb5bb_100.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf4-4.2.15-h5e294c4_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf5-1.14.6-mpi_openmpi_h3f51d32_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/icu-75.1-h5867af4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/keyutils-1.6.3-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/krb5-1.21.3-h7eda64f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.44-h01e97ec_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libaec-1.1.4-h509caba_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libblas-3.9.0-37_h75dcd6d_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcap-2.76-h36ede59_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcblas-3.9.0-37_hdcea00e_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcurl-8.16.0-hda50728_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libedit-3.1.20250104-pl5321h9a3a893_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libev-4.33-ha17a0cc_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libevent-2.1.12-h3507d20_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libexpat-2.7.1-hf512061_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libfabric-2.3.1-ha3edaa6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libfabric1-2.3.1-hb6e87a1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libffi-3.5.2-h4197a55_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-15.2.0-h0d7acf9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcrypt-lib-1.11.1-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-ng-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-15.2.0-h111d2ef_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-15.2.0-h0d7acf9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgpg-error-1.55-h2621725_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libhwloc-2.12.1-default_h9d94601_1002.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.18-h25553c4_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libjpeg-turbo-3.1.0-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblapack-3.9.0-37_h5422efa_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblzma-5.8.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libmpdec-4.0.0-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnetcdf-4.9.3-nompi_h73fc212_103.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnghttp2-1.67.0-he618a7b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnl-3.11.0-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libopenblas-0.3.30-pthreads_h8ac31f8_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libpmix-5.0.8-h8498fbb_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsodium-1.0.20-h1f2b957_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsqlite-3.50.4-h8cc42db_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libssh2-1.11.1-h50e65aa_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-15.2.0-h262982c_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-15.2.0-hf27a640_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsystemd0-257.7-h8c97658_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libudev1-257.7-hd59efbf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libuuid-2.41.2-h10e6d09_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-16-2.15.1-h83eeafb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-2.15.1-h485e107_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxslt-1.1.43-h823012b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzip-1.11.2-h4282fc3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.3.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lxml-6.0.2-py314h5a27059_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lz4-c-1.10.0-h2621725_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.5-h8645e7e_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/netcdf4-1.7.3-nompi_py314h7e16b28_100.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/numpy-2.3.4-py314h66217d6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openmpi-5.0.8-h53e8d90_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.5.4-hb9a03e6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/psutil-7.1.1-py314he970779_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/python-3.14.0-h1a654b9_102_cp314.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/pyzmq-27.1.0-py312h6d289d5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rdma-core-59.0-h6118d1c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/readline-8.2-hf4ca6f9_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rpds-py-0.28.0-py314h603c1d2_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/scipy-1.16.2-py314h03172c9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/snappy-1.2.2-hc76479f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/time-1.9-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/tk-8.6.13-noxft_he73cbed_102.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/tornado-6.5.2-py314hc52b89b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/yaml-0.2.5-h0558730_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zeromq-4.3.5-h488b2a3_9.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zlib-1.3.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.7-h53ff00b_2.conda
- - conda: .
- subdir: linux-ppc64le
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
osx-64:
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/astropy-base-7.1.1-py314h4ddd080_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.9.1-hd76a34f_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.9.8-h6b06ba2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.12.5-h8616949_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.3.1-h7df70e9_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.5.6-h0ddc0d0_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.10.7-ha9fb31a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.23.2-hccfe1ea_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.13.3-ha2a017f_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.8.6-hedfbfa3_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.2.4-h7df70e9_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.2.7-h7df70e9_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.35.0-h7e7cb56_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.606-hf0dd41a_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.16.1-he2a98a9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-identity-cpp-1.13.2-h0e8e1c8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.15.0-h388f2e7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.11.0-h56a711b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-files-datalake-cpp-12.13.0-h1984e67_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-hd145fbb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/bottleneck-1.6.0-np2py314hfeef9c2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.2.0-hb27157a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.2.0-h5c1846c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314hd4d9bf7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brunsli-0.1-ha00ef93_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/c-blosc2-2.22.0-h415348b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.4-py314ha6d4590_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/charls-2.4.2-he965462_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cli11-2.6.0-h53ec75d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.3-py314h00ed6fe_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.28-h610c526_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_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.17-py314h93774dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/editdistance-s-1.0.0-py314h00ed6fe_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ducc0-0.39.1-py314h21b9a27_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_openmpi_h3b45436_10.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.2.0-hbf61d64_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.14.1-h694c41f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/geos-3.14.1-he483b9e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hac325c4_1005.conda
+ - 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/glog-0.7.1-h2790a97_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gmpy2-2.2.1-py314hae71602_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.14-h21dd04a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.15.1-nompi_py314hf613b1f_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-12.2.0-hc5d3ef4_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.6-mpi_openmpi_h8bfb534_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/imagecodecs-2025.11.11-py314hf9c3537_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyh5552912_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyh5552912_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.6-h466cfd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.9-py314hf3ac25a_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hcca01a6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20250512.1-cxx17_hfc00f1c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-37_he492b99_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-37_h9b27e0a_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.16.0-h7dd4100_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.4-h3d58e20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-22.0.0-hb95b15f_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-22.0.0-h2db2d7d_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-compute-22.0.0-h7751554_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-22.0.0-h2db2d7d_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-22.0.0-h4653b8a_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.3.0-h1c10324_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-38_he492b99_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.2.0-h105ed1c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.2.0-h660c9da_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.2.0-h2338291_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-38_h9b27e0a_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp19.1-19.1.7-default_hc369343_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-21.1.5-default_h7f9524c_1.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.17.0-h7dd4100_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.5-h3d58e20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda
- 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.7.1-h21dd04a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric-2.3.1-h694c41f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric1-2.3.1-h8616949_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric-2.3.1-h694c41f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric1-2.3.1-h8616949_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-h750e83c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.1-h694c41f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.1-h6912278_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h306097a_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-h336fb69_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.86.1-h6ca3a76_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.39.0-hed66dea_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.39.0-h8ac052b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.73.1-h451496d_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.12.1-default_h094e1f9_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libhwy-1.3.0-hab838a1_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.0-h6e16a3a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-37_h859234e_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.2-h8616949_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libjxl-0.11.1-h4ee1b5b_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-38_h859234e_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.7-h56e7563_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm21-21.1.5-h56e7563_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.1-hd471939_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-h6e16a3a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.3-nompi_habf9e57_103.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.67.0-h3338091_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_h6006d49_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.5-he3325bb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_h6006d49_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopentelemetry-cpp-1.21.0-h7d3f41d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopentelemetry-cpp-headers-1.21.0-h694c41f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-22.0.0-habb56ca_3_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libpmix-5.0.8-h7a6afba_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.50-h84aeda2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libpq-18.0-h5a4e477_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-6.31.1-h03562ea_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2025.11.05-h554ac88_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.50.4-h39a8b3b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.51.0-h86bffb9_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-h0ad03eb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h23bb396_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.22.0-h687e942_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.11.0-h64b4c5c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-ha059160_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-ha1d9b0f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h7b7ecba_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.43-h486b42e_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.4-h472b3d1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.2-py314h787f955_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libzopfli-1.0.3-h046ec9c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.5-h472b3d1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.2-py314h787f955_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.10.0-h240833e_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.10.7-py314hd47142c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.2-py314h00ed6fe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.7.3-nompi_py314hf60e252_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.12.0-h53ec75d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.3.4-py314hf08249b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.4-h87e8dc5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.10-hd8a590d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-5.0.8-h0c582a8_108.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.0-h230baf5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.2.1-hd1b02dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.3.3-py314hc4308db_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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.46-ha3e7e28_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-12.0.0-py314h0a84944_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/proj-9.7.0-h3124640_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/prometheus-cpp-1.3.0-h7802330_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.1.1-py314h6482030_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.1.3-py314hd1e8ddb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.15-h46091d4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-22.0.0-py314hee6578b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-core-22.0.0-py314h35e0213_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyerfa-2.0.1.5-py310hcbffc5d_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyshtools-4.13.1-py314h0594fbe_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.0-hf88997e_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.9.0-py314hd1ec8a2_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312hb7d603e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/qt6-main-6.9.3-hac9256e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/quaternion-2024.0.12-py314hd1ec8a2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.7.1-h371c88c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2025.11.05-h7df6414_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.28.0-py314ha7b6dee_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.2-py314h9d854bd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.28.0-py314ha7b6dee_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.25.2-py314hc4308db_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.3-py314h9d854bd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/shapely-2.1.2-py314h4eeafd1_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h25c286d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h01f5ddf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.51.0-hca40e9d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-3.1.2-h21dd04a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2022.3.0-hf0c99ee_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/time-1.9-h6e16a3a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py314h03d016b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py314h6482030_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py314hd4d8fbc_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-17.0.0-py314h6482030_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.8-h694c41f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.5.2-py314hd9cbe44_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.17.3-py314h03d016b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.12-h8616949_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h8616949_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h6c33b1e_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.1-h326e263_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.2.5-h55e386d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.25.0-py314hd1e8ddb_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h8210216_2.conda
- conda: .
subdir: osx-64
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/astropy-base-7.1.1-py314h7d719a5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.9.1-h753d554_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.9.8-hca30140_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.12.5-hc919400_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.1-h61d5560_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.6-hada8b3e_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.10.7-h241dc44_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.23.2-hcea795d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.13.3-hf26a141_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.8.6-h1e3b5a0_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.4-h61d5560_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.7-h61d5560_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.35.0-h44e95eb_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.606-hf3ce6b4_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.16.1-h88fedcc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.13.2-h853621b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.15.0-h10d327b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.11.0-h7e4aa5d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.13.0-hb288d13_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bottleneck-1.6.0-np2py314hfa18b03_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.2.0-hca488c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.2.0-hce9b42c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h95ef04c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brunsli-0.1-he0dfb12_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_8.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-blosc2-2.22.0-hb5916c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_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/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.4-py314h943c2e0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/charls-2.4.2-h13dd4ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cli11-2.6.0-h248ca61_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.3-py314h784bc60_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.28-ha1cbb27_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.17-py314hac9ea21_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/editdistance-s-1.0.0-py314h784bc60_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ducc0-0.39.1-py314h93ecee7_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_h260600c_10.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.2.0-h440487c_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_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.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-hc364b38_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.14.1-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.14.1-h5afe852_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.2-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmpy2-2.2.1-py314h07d5e28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.15.1-nompi_py314h1c8d760_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-12.2.0-haf38c7b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-mpi_openmpi_h7c22107_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/imagecodecs-2025.11.11-py314hd3d5c6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyh5552912_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyh5552912_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.9-py314h42813c9_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20250512.1-cxx17_hd41c47c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-37_h51639a9_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-37_hb0561ab_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.16.0-hdece5d2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.4-hf598326_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-22.0.0-h4f7d3e6_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-22.0.0-hc317990_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-compute-22.0.0-h75845d1_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-22.0.0-hc317990_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-22.0.0-h144af7f_3_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libavif16-1.3.0-hb06b76e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-38_h51639a9_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.2.0-h87ba0bc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.2.0-h95a88de_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.2.0-hb1b9735_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-38_hb0561ab_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp19.1-19.1.7-default_h73dfc95_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-21.1.5-default_h6e8f826_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.17.0-hdece5d2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.5-hf598326_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric-2.3.1-hce30654_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric1-2.3.1-hc919400_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric-2.3.1-hce30654_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric1-2.3.1-hc919400_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-he5f378a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.1-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.1-h6da58f4_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-hfcf01ff_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-h742603c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.86.1-he69a767_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.39.0-head0a95_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.39.0-hfa3a374_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.73.1-h3063b79_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.12.1-default_h48b22c3_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwy-1.3.0-h48b13b8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.0-h5505292_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-37_hd9741b5_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.2-hc919400_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjxl-0.11.1-h3dcb153_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-38_hd9741b5_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm19-19.1.7-h8e0c9ce_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm21-21.1.5-h8e0c9ce_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.3-nompi_h80c4520_103.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.67.0-hc438710_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_ha158390_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.5-h48c0fde_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_ha158390_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopentelemetry-cpp-1.21.0-he15edb5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopentelemetry-cpp-headers-1.21.0-hce30654_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-22.0.0-h0ac143b_3_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpmix-5.0.8-h3e7ebac_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.50-h280e0eb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-18.0-h31f7a3a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-6.31.1-h658db43_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2025.11.05-h91c62da_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.51.0-h8adb53f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.22.0-h14a376c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.11.0-hc25f550_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h81086ad_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h0ff4647_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-h9329255_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.43-hb2570ba_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.4-h4a912ad_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.2-py314he05ef12_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzopfli-1.0.3-h9f76cd9_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.5-h4a912ad_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.2-py314he05ef12_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.10.7-py314hd63e3f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.2-py314h784bc60_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf4-1.7.3-nompi_py314ha229517_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.12.0-h248ca61_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.3.4-py314h5b5928d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.4-hbfb3c88_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-5.0.8-h65ea042_108.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.4-h5503f6c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.0-h5503f6c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.2.1-h4fd0076_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.3.3-py314ha3d490a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_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-arm64/pcre2-10.46-h7125dd6_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-12.0.0-py314h73456f9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.7.0-hf83150c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/prometheus-cpp-1.3.0-h0967b3e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.1.1-py314h0612a62_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.1.3-py314h9d33bd4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-22.0.0-py314he55896b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-22.0.0-py314hf20a12a_0_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyerfa-2.0.1.5-py310hbb12772_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyshtools-4.13.1-py314hff548eb_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.0-h40d2674_102_cp314.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.9.0-py314hdcf55e8_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312hd65ceae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/qt6-main-6.9.3-hb266e41_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/quaternion-2024.0.12-py314hdcf55e8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2025.11.05-h64b956e_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.28.0-py314haad56a0_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.2-py314h624bdf2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.28.0-py314haad56a0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.25.2-py314ha3d490a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.3-py314h624bdf2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/shapely-2.1.2-py314h277790e_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hada39a4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.51.0-h81ab1b7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-3.1.2-h12ba402_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2022.3.0-h66ce52b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/time-1.9-h5505292_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py314hb84d1df_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py314h0612a62_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py314h6b18a25_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-17.0.0-py314h0612a62_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/utfcpp-4.0.8-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-base-9.5.2-py314h3ddaf29_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.3-py314hb84d1df_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.12-hc919400_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hc919400_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h888dc83_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.1-hfd287c0_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.2.5-h3470cca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.25.0-py314h9d33bd4_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda
- conda: .
subdir: osx-arm64
- - pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
dev:
channels:
- url: https://conda.anaconda.org/conda-forge/
@@ -1440,11 +2952,11 @@ environments:
- 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/linux-64/attr-2.5.2-h39aace5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.44-h9d8b0ac_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.44-h4852527_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.44-h9d8b0ac_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.44-h4852527_5.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.1.2-hc85cc9f_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h171cf75_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_openmpi_h99e62ba_10.conda
@@ -1456,25 +2968,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.76-h0b2e76d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.16.0-h4e3cde8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.77-h3ff7636_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
- 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.7.1-hecca717_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric-2.3.1-ha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric1-2.3.1-h3ff6011_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric-2.3.1-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric1-2.3.1-h6c8fc0a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-h73f6952_107.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.12.1-default_h7f8ec31_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
@@ -1486,35 +2996,34 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-h73f6952_107.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.9-h996ca69_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.9-h085a93f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.10-hd0affe5_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.10-hd0affe5_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-hf2a90c1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h031cc0b_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-5.0.8-h2fe1745_108.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-mpicxx-5.0.8-h62726db_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-59.0-hecca717_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.0-h26f9b46_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-60.0-hecca717_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/time-1.9-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ucc-1.5.1-hb729f83_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.19.0-hc93acc0_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.19.0-h63b5c0b_5.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.44-ha36da51_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.44-hf1166c9_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.44-ha36da51_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.44-hf1166c9_5.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-4.1.2-hc9d863e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/eigen-3.4.0-hdc560ac_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_openmpi_hc95d1d6_10.conda
@@ -1527,25 +3036,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_5.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.76-h5706e9e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.16.0-h7bfdcfb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.77-h68e9139_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.17.0-h7bfdcfb_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric-2.3.1-h8af1aa0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric1-2.3.1-hb8d9d8c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric-2.3.1-h8af1aa0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric1-2.3.1-h3775113_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-15.2.0-he277a41_7.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h1ed5458_107.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-15.2.0-he9431aa_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-15.2.0-he9431aa_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-15.2.0-he9431aa_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-15.2.0-h87db57e_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-15.2.0-he277a41_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgpg-error-1.55-h5ad3122_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h7949937_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda
@@ -1557,102 +3064,31 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-15.2.0-h3f4de04_7.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-h1ed5458_107.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-15.2.0-hf1166c9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.9-hd926fa8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-257.9-hf39d17c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.10-hf9559e3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-257.10-hf9559e3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.51.0-he30d5cf_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-16-2.15.1-h8591a01_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.15.1-h788dabe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h7ac5ae9_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-5.0.8-h188d324_108.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-mpicxx-5.0.8-hc2320a1_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.5.4-h8e36d6e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-59.0-he839754_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.6.0-h8e36d6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-60.0-he839754_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.6-h86ecc28_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_8.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/time-1.9-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucc-1.5.1-h42c451e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.19.0-hfbfdc62_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.19.0-ha79f86a_5.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda
- linux-ppc64le:
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/attr-2.5.2-hcf8ba42_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_impl_linux-ppc64le-2.44-h40cd370_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_linux-ppc64le-2.44-hf27a640_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-heb0841c_8.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/c-ares-1.34.5-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cmake-4.1.2-hb501cee_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/eigen-3.4.0-h7cb76f5_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/fftw-3.3.10-mpi_openmpi_hf12c5a9_10.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_impl_linux-ppc64le-15.2.0-hb48859e_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_linux-ppc64le-15.2.0-h9bf53f2_12.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_impl_linux-ppc64le-15.2.0-h3b1e3c5_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_linux-ppc64le-15.2.0-h5adc656_12.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf5-1.14.6-mpi_openmpi_h3f51d32_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/icu-75.1-h5867af4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-ppc64le-4.18.0-h3602f99_8.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/keyutils-1.6.3-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/krb5-1.21.3-h7eda64f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.44-h01e97ec_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libaec-1.1.4-h509caba_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcap-2.76-h36ede59_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcurl-8.16.0-hda50728_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libedit-3.1.20250104-pl5321h9a3a893_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libev-4.33-ha17a0cc_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libevent-2.1.12-h3507d20_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libexpat-2.7.1-hf512061_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libfabric-2.3.1-ha3edaa6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libfabric1-2.3.1-hb6e87a1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-15.2.0-h0d7acf9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-ppc64le-15.2.0-ha42e3bc_107.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcrypt-lib-1.11.1-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-ng-15.2.0-hfdc3801_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-15.2.0-h111d2ef_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-15.2.0-h0d7acf9_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgpg-error-1.55-h2621725_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libhwloc-2.12.1-default_h9d94601_1002.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.18-h25553c4_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblzma-5.8.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnghttp2-1.67.0-he618a7b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnl-3.11.0-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libpmix-5.0.8-h8498fbb_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsanitizer-15.2.0-h1dd130c_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libssh2-1.11.1-h50e65aa_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-15.2.0-h262982c_7.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-ppc64le-15.2.0-ha42e3bc_107.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-15.2.0-hf27a640_7.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsystemd0-257.7-h8c97658_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libudev1-257.7-hd59efbf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libuv-1.51.0-hfc7e52b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-16-2.15.1-h83eeafb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-2.15.1-h485e107_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.3.1-h190368a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lz4-c-1.10.0-h2621725_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.5-h8645e7e_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/nlohmann_json-3.12.0-hc0fcfcc_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openmpi-5.0.8-h53e8d90_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openmpi-mpicxx-5.0.8-ha335248_108.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.5.4-hb9a03e6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rdma-core-59.0-h6118d1c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rhash-1.4.6-h190368a_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-ppc64le-2.28-heb8a786_8.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/time-1.9-h190368a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.7-h53ff00b_2.conda
osx-64:
- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1024.3-llvm21_1_h81d60ea_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1024.3-llvm21_1_h81d60ea_9.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21-21.1.4-default_h9f74b92_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21.1.4-default_h1323312_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-21.1.4-h1e5c9a4_25.conda
@@ -1668,19 +3104,20 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_openmpi_h3b45436_10.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.6-mpi_openmpi_h8bfb534_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-955.13-h2eed689_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-955.13-llvm21_1_h2cc85ee_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-955.13-h2eed689_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-955.13-llvm21_1_h2cc85ee_9.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp21.1-21.1.4-default_hc369343_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.16.0-h7dd4100_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.4-h3d58e20_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-21.1.4-h7c275be_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.17.0-h7dd4100_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.5-h3d58e20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-21.1.5-h7c275be_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-21.1.5-h707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda
- 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.7.1-h21dd04a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric-2.3.1-h694c41f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric1-2.3.1-h8616949_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric-2.3.1-h694c41f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric1-2.3.1-h8616949_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h306097a_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-h336fb69_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.12.1-default_h094e1f9_1002.conda
@@ -1694,7 +3131,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-h0ad03eb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h23bb396_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.4-h472b3d1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.5-h472b3d1_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21-21.1.4-h879f4bc_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21.1.4-hb0207f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
@@ -1702,7 +3139,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.12.0-h53ec75d_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-5.0.8-h0c582a8_108.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-mpicxx-5.0.8-heb29b40_108.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.0-h230baf5_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.6-h6e16a3a_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
@@ -1711,41 +3148,42 @@ environments:
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_8.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1024.3-llvm21_1_haddd2d4_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21-21.1.4-default_h489deba_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21.1.4-default_hf9bcbb7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-21.1.4-h721c3f7_25.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-21.1.4-h07b0088_25.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-21.1.4-default_h36137df_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-21.1.4-hde34478_25.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-21.1.4-h07b0088_25.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1024.3-llvm21_1_haddd2d4_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21-21.1.5-default_h489deba_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21.1.5-default_hf9bcbb7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-21.1.5-h088ae74_25.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-21.1.5-h07b0088_25.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-21.1.5-default_h36137df_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-21.1.5-h25e7f35_25.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-21.1.5-h07b0088_25.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-4.1.2-h54ad630_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-21.1.4-hce30654_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt21-21.1.4-h855ad52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-arm64-21.1.4-h2514db7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-21.1.5-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt21-21.1.5-h855ad52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-arm64-21.1.5-h2514db7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h49c215f_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_h260600c_10.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-mpi_openmpi_h7c22107_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-955.13-h5d6df6c_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-955.13-llvm21_1_hde6573c_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-955.13-h5d6df6c_9.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-955.13-llvm21_1_hde6573c_9.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp21.1-21.1.4-default_h73dfc95_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.16.0-hdece5d2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.4-hf598326_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-21.1.4-h6dc3340_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp21.1-21.1.5-default_h73dfc95_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.17.0-hdece5d2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.5-hf598326_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-21.1.5-h6dc3340_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-21.1.5-h707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric-2.3.1-hce30654_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric1-2.3.1-hc919400_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric-2.3.1-hce30654_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric1-2.3.1-hc919400_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-hfcf01ff_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-h742603c_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.12.1-default_h48b22c3_1002.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm21-21.1.4-h8e0c9ce_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm21-21.1.5-h8e0c9ce_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.67.0-hc438710_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpmix-5.0.8-h3e7ebac_2.conda
@@ -1754,15 +3192,15 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h8eac4d7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-hba2cd1d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.4-h4a912ad_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21-21.1.4-h91fd4e7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21.1.4-h855ad52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.5-h4a912ad_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21-21.1.5-h91fd4e7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21.1.5-h855ad52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.12.0-h248ca61_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-5.0.8-h65ea042_108.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-mpicxx-5.0.8-h8e08746_108.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.4-h5503f6c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.0-h5503f6c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.6-h5505292_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
@@ -1773,16 +3211,8 @@ packages:
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
md5: d7c89558ba9fa0495403155b64376d81
license: None
- purls: []
size: 2562
timestamp: 1578324546067
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2
- sha256: 5dd34b412e6274c0614d01a2f616844376ae873dfb8782c2c67d055779de6df6
- md5: e96f48755dc7c9f86c4aecf4cac40477
- license: None
- purls: []
- size: 2550
- timestamp: 1578324511581
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
build_number: 16
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
@@ -1794,7 +3224,6 @@ packages:
- openmp_impl 9999
license: BSD-3-Clause
license_family: BSD
- purls: []
size: 23621
timestamp: 1650670423406
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
@@ -1807,23 +3236,8 @@ packages:
- openmp_impl 9999
license: BSD-3-Clause
license_family: BSD
- purls: []
size: 23712
timestamp: 1650670790230
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2
- build_number: 16
- sha256: 4c89c2067cf5e7b0fbbdc3200c3f7affa5896e14812acf10f51575be87ae0c05
- md5: 3e41cbaba7e4988d15a24c4e85e6171b
- depends:
- - _libgcc_mutex 0.1 conda_forge
- - libgomp >=7.5.0
- constrains:
- - openmp_impl 9999
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 23710
- timestamp: 1650671119831
- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661
md5: aaa2a381ccc56eac91d63b6c1240312f
@@ -1832,9 +3246,132 @@ packages:
- python-gil
license: MIT
license_family: MIT
- purls: []
size: 8191
timestamp: 1744137672556
+- conda: https://conda.anaconda.org/conda-forge/noarch/aiobotocore-2.25.2-pyhcf101f3_0.conda
+ sha256: 922fb146148449c6bc374a37fa9edb89b3af1c385392391339206d3ab3d571a3
+ md5: 6e90a60dbb939d24a6295e19377cf0e6
+ depends:
+ - python >=3.10
+ - aiohttp >=3.9.2,<4.0.0
+ - aioitertools >=0.5.1,<1.0.0
+ - botocore >=1.40.46,<1.40.71
+ - python-dateutil >=2.1,<3.0.0
+ - jmespath >=0.7.1,<2.0.0
+ - multidict >=6.0.0,<7.0.0
+ - wrapt >=1.10.10,<2.0.0
+ - python
+ license: Apache-2.0
+ size: 80900
+ timestamp: 1762893423043
+- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27
+ md5: 18fd895e0e775622906cdabfc3cf0fb4
+ depends:
+ - python >=3.9
+ license: PSF-2.0
+ license_family: PSF
+ size: 19750
+ timestamp: 1741775303303
+- conda: https://conda.anaconda.org/conda-forge/noarch/aiohttp-3.13.2-pyh4ca1811_0.conda
+ sha256: 8af88a6daa5e30f347da7faee1ee17d920a1090c0e921431bf43adff02429b50
+ md5: 9b7efc1b9351892fc1b0af3fb7e44280
+ depends:
+ - aiohappyeyeballs >=2.5.0
+ - aiosignal >=1.4.0
+ - async-timeout >=4.0,<6.0
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.10
+ - yarl >=1.17.0,<2.0
+ track_features:
+ - aiohttp_no_compile
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ size: 474272
+ timestamp: 1761726660058
+- conda: https://conda.anaconda.org/conda-forge/noarch/aioitertools-0.12.0-pyhd8ed1ab_1.conda
+ sha256: 7d56e547a819a03c058dd8793ca9df6ff9825812da52c214192edb61a7de1c95
+ md5: 3eb47adbffac44483f59e580f8600a1e
+ depends:
+ - python >=3.9
+ - typing_extensions >=4.0
+ license: MIT
+ license_family: MIT
+ size: 25063
+ timestamp: 1735329177103
+- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2
+ md5: 421a865222cd0c9d83ff08bc78bf3a61
+ depends:
+ - frozenlist >=1.1.0
+ - python >=3.9
+ - typing_extensions >=4.2
+ license: Apache-2.0
+ license_family: APACHE
+ size: 13688
+ timestamp: 1751626573984
+- conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
+ sha256: b9214bc17e89bf2b691fad50d952b7f029f6148f4ac4fe7c60c08f093efdf745
+ md5: 76df83c2a9035c54df5d04ff81bcc02d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ license_family: GPL
+ size: 566531
+ timestamp: 1744668655747
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda
+ sha256: 0aa836f6dd9132f243436898ed8024f408910f65220bafbfc95f71ab829bb395
+ md5: a696b24c1b473ecc4774bcb5a6ac6337
+ depends:
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ license_family: GPL
+ size: 595290
+ timestamp: 1744668754404
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855
+ md5: 346722a0be40f6edc53f12640d301338
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2706396
+ timestamp: 1718551242397
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda
+ sha256: ac438ce5d3d3673a9188b535fc7cda413b479f0d52536aeeac1bd82faa656ea0
+ md5: cc744ac4efe5bcaa8cca51ff5b850df0
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 3250813
+ timestamp: 1718551360260
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda
+ sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5
+ md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2749186
+ timestamp: 1718551450314
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda
+ sha256: ec238f18ce8140485645252351a0eca9ef4f7a1c568a420f240a585229bc12ef
+ md5: 7adba36492a1bb22d98ffffe4f6fc6de
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2235747
+ timestamp: 1718551382432
- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda
sha256: 8f032b140ea4159806e4969a68b4a3c0a7cab1ad936eb958a2b5ffe5335e19bf
md5: 54898d0f524c9dee622d44bbb081a8ab
@@ -1842,10 +3379,128 @@ packages:
- python >=3.9
license: BSD-2-Clause
license_family: BSD
- purls:
- - pkg:pypi/appnope?source=hash-mapping
size: 10076
timestamp: 1733332433806
+- conda: https://conda.anaconda.org/conda-forge/noarch/astropy-7.1.1-pyhd8ed1ab_0.conda
+ sha256: aa322c36526afd88b8bacc7e6733163b874feb4e55c9b8260c0d799fa3ee0c43
+ md5: 669a9f03afd79f3e41f862732d7660b0
+ depends:
+ - aiohttp
+ - astropy-base >=7.1.1,<7.1.2.0a0
+ - beautifulsoup4 >=4.9.3
+ - bleach >=3.2.1
+ - bottleneck >=1.3.3
+ - certifi >=2022.6.15.1
+ - dask-core >=2022.5.1
+ - fsspec >=2023.4.0
+ - h5py >=3.8.0
+ - html5lib >=1.1
+ - ipydatagrid >=1.1.13
+ - ipykernel >=6.16.0
+ - ipython >=8.0.0
+ - ipywidgets >=7.7.3
+ - jplephem >=2.6
+ - matplotlib-base >=3.6.0
+ - mpmath >=1.2.1
+ - pandas >=2.0
+ - pyarrow >=10.0.1
+ - python >=3.11
+ - pytz >=2016.10
+ - s3fs >=2023.4.0
+ - scipy >=1.9.2
+ - sortedcontainers >=1.5.7
+ - uncompresspy >=0.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9010
+ timestamp: 1760139223808
+- conda: https://conda.anaconda.org/conda-forge/linux-64/astropy-base-7.1.1-py314h28ce15b_0.conda
+ sha256: 024e5dbe737c948dc3f043caf100f4205cb4b1af1eed89ad5aa90305d46855b0
+ md5: 0add11f2f395ae1c78ea24b03be82d99
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - astropy-iers-data >=0.2025.9.29.0.35.48
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - numpy >=1.23.2
+ - packaging >=22.0.0
+ - pyerfa >=2.0.1.1
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - pyyaml >=6.0.0
+ constrains:
+ - astropy >=7.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9507174
+ timestamp: 1760139316622
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/astropy-base-7.1.1-py314hedaaa41_0.conda
+ sha256: c91db0ec4a44a4b15e3140c45759a63f43fecb1417365c5316536da9abfbbc62
+ md5: 76c458b415dd6d85c3863ae68a7661d5
+ depends:
+ - astropy-iers-data >=0.2025.9.29.0.35.48
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - numpy >=1.23.2
+ - packaging >=22.0.0
+ - pyerfa >=2.0.1.1
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - pyyaml >=6.0.0
+ constrains:
+ - astropy >=7.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9692497
+ timestamp: 1760139272459
+- conda: https://conda.anaconda.org/conda-forge/osx-64/astropy-base-7.1.1-py314h4ddd080_0.conda
+ sha256: 380010cd19a1166d0402499ebb8d6623a35634e7d20fcc9f24ed2bb7e87faca8
+ md5: 5ba33be6d35242e11feb7d77073fc7bf
+ depends:
+ - __osx >=10.13
+ - astropy-iers-data >=0.2025.9.29.0.35.48
+ - numpy >=1.23,<3
+ - numpy >=1.23.2
+ - packaging >=22.0.0
+ - pyerfa >=2.0.1.1
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - pyyaml >=6.0.0
+ constrains:
+ - astropy >=7.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9604776
+ timestamp: 1760139410729
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/astropy-base-7.1.1-py314h7d719a5_0.conda
+ sha256: f3b9538870c2c5ce9f3344c2e3fb1503ef4aecedeaff2ffecacfcbed7651766a
+ md5: d36ee19a1169072f23464f4b307ee81e
+ depends:
+ - __osx >=11.0
+ - astropy-iers-data >=0.2025.9.29.0.35.48
+ - numpy >=1.23,<3
+ - numpy >=1.23.2
+ - packaging >=22.0.0
+ - pyerfa >=2.0.1.1
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - pyyaml >=6.0.0
+ constrains:
+ - astropy >=7.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9597364
+ timestamp: 1760139449673
+- conda: https://conda.anaconda.org/conda-forge/noarch/astropy-iers-data-0.2025.11.10.0.38.31-pyhd8ed1ab_0.conda
+ sha256: 670237dad97f76fffacbae8c15d36266d53fa83bde0405ecddee07bf20f2ebc9
+ md5: 14527b5f50dc7e404ad29715cee37ea8
+ depends:
+ - python >=3.10
+ license: BSD-3-Clause
+ size: 1237816
+ timestamp: 1762737040266
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593
md5: 8f587de4bcf981e26228f268df374a9b
@@ -1855,10 +3510,17 @@ packages:
- astroid >=2,<4
license: Apache-2.0
license_family: Apache
- purls:
- - pkg:pypi/asttokens?source=hash-mapping
size: 28206
timestamp: 1733250564754
+- conda: https://conda.anaconda.org/conda-forge/noarch/async-timeout-5.0.1-pyhd8ed1ab_1.conda
+ sha256: 33d12250c870e06c9a313c6663cfbf1c50380b73dfbbb6006688c3134b29b45a
+ md5: 5d842988b11a8c3ab57fb70840c83d24
+ depends:
+ - python >=3.9
+ license: Apache-2.0
+ license_family: Apache
+ size: 11763
+ timestamp: 1733235428203
- conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
sha256: a9c114cbfeda42a226e2db1809a538929d2f118ef855372293bd188f71711c48
md5: 791365c5f65975051e4e017b5da3abf5
@@ -1867,7 +3529,6 @@ packages:
- libgcc >=13
license: GPL-2.0-or-later
license_family: GPL
- purls: []
size: 68072
timestamp: 1756738968573
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2
@@ -1877,19 +3538,8 @@ packages:
- libgcc-ng >=12
license: GPL-2.0-or-later
license_family: GPL
- purls: []
size: 74992
timestamp: 1660065534958
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/attr-2.5.2-hcf8ba42_0.conda
- sha256: 9c29906414b922600398758252a7bc25dcaf27cf412737313d719b0d2c6f7361
- md5: 94de77d8f37e473311d95811414f857b
- depends:
- - libgcc >=13
- license: GPL-2.0-or-later
- license_family: GPL
- purls: []
- size: 73226
- timestamp: 1756739637225
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.4.0-pyh71513ae_0.conda
sha256: f6c3c19fa599a1a856a88db166c318b148cac3ee4851a9905ed8a04eeec79f45
md5: c7944d55af26b6d2d7629e27e9a972c1
@@ -1897,7093 +3547,14038 @@ packages:
- python >=3.10
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/attrs?source=compressed-mapping
size: 60101
timestamp: 1759762331492
-- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.44-h9d8b0ac_4.conda
- sha256: 4c2378ecbb93c57fedc192e1f8e667f9048df24618fe4153e309a59c4faf53ee
- md5: abceb07d9c2f724834ecc92cd1d39a65
- depends:
- - ld_impl_linux-64 2.44 h1aa0949_4
- - sysroot_linux-64
- - zstd >=1.5.7,<1.6.0a0
- license: GPL-3.0-only
- license_family: GPL
- size: 3715763
- timestamp: 1761335193784
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.44-ha36da51_4.conda
- sha256: 9dc56c490e3172f9ef8a3dad10cd4b1a8ceb51bdc3d8c239196fc0c2382a56da
- md5: 63014d53237bb8846b2e50db65e0e99e
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.9.1-h194c533_5.conda
+ sha256: 7dcbb1eb07158274d7f71377c574bb5f3d2868574f6dcdfcaab4d617deb9f52f
+ md5: bf0d77362aad67108ea0ace5985807e3
depends:
- - ld_impl_linux-aarch64 2.44 hd32f0e1_4
- - sysroot_linux-aarch64
- - zstd >=1.5.7,<1.6.0a0
- license: GPL-3.0-only
- license_family: GPL
- size: 4103387
- timestamp: 1761335327889
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_impl_linux-ppc64le-2.44-h40cd370_4.conda
- sha256: a3f2d901040ce869bf40f81aaec6f3359f8ac5b15c31a573abf7fbcf7db33c8a
- md5: d9546465b57b2fafd347134108490d24
- depends:
- - ld_impl_linux-ppc64le 2.44 h01e97ec_4
- - sysroot_linux-ppc64le
- - zstd >=1.5.7,<1.6.0a0
- license: GPL-3.0-only
- license_family: GPL
- size: 4277651
- timestamp: 1761335015467
-- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.44-h4852527_4.conda
- sha256: f43b0e94e7803c62abcf40136fc8e6da6ab4650197aebb03c51b31ff63300595
- md5: e2781a887f65d4601be8dfb6eaf55bc3
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 122969
+ timestamp: 1762200199500
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.9.1-h65b627b_5.conda
+ sha256: 2614e2d57a2935de8336283a317f8281b74107b481df568166b7a0ae987730cc
+ md5: 1ef98f1341f9691db7ab6318144e1d12
depends:
- - binutils_impl_linux-64 2.44 h9d8b0ac_4
- license: GPL-3.0-only
- license_family: GPL
- size: 36084
- timestamp: 1761335225100
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.44-hf1166c9_4.conda
- sha256: 6e5f44456dc2577af3a0fc0a95260536a07ca7cc3451c7858fe55fce06a001e3
- md5: 0aefd5017aa0bc8dbcce51a26627ad61
+ - libgcc >=14
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 130105
+ timestamp: 1762200251759
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.9.1-hd76a34f_5.conda
+ sha256: aed8d62ed0aa84bbf8b964f41be54dbc1202b67a70aa4fd9ec7e37bda913bc29
+ md5: 7164f84c1e6ccf7923e8749a26795dba
depends:
- - binutils_impl_linux-aarch64 2.44 ha36da51_4
- license: GPL-3.0-only
- license_family: GPL
- size: 36241
- timestamp: 1761335356045
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_linux-ppc64le-2.44-hf27a640_4.conda
- sha256: 6f401bbe3dcdbcb8a03fed8a8bee7d6e7726d774de456b787c94ecac0f3fc34c
- md5: e652fde2d5c0e79ed508965e6016b5e1
+ - __osx >=10.13
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 110737
+ timestamp: 1762200211142
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.9.1-h753d554_5.conda
+ sha256: 42090a345f70ded10039bb1fc7817c8b45dbdeb2bfb0f0529b4c581096e9a014
+ md5: 4d72b29e183b119a6cd1e38a27ce6686
depends:
- - binutils_impl_linux-ppc64le 2.44 h40cd370_4
- license: GPL-3.0-only
- license_family: GPL
- size: 36036
- timestamp: 1761335044610
-- conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
- sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d
- md5: 2c2fae981fd2afd00812c92ac47d023d
+ - __osx >=11.0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 106611
+ timestamp: 1762200250699
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.9.8-h346e085_0.conda
+ sha256: a2f13bb3da7534a18fb05e5d5de13d3d02fd468aeba0be28147797ef0a1ffce8
+ md5: 170690366791b506d48f69f6f0e01bad
depends:
- __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
- - libzlib >=1.3.1,<2.0a0
- - lz4-c >=1.10.0,<1.11.0a0
- - snappy >=1.2.1,<1.3.0a0
- - zstd >=1.5.6,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 48427
- timestamp: 1733513201413
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda
- sha256: f1e408fc32e1fda8dee9c3fceee5650fd622526e4dc6fa1f1926f497b5508d13
- md5: 2cbbd6264ad58887c40aab37f2abdaba
- depends:
- - libgcc >=13
- - libstdcxx >=13
- - libzlib >=1.3.1,<2.0a0
- - lz4-c >=1.10.0,<1.11.0a0
- - snappy >=1.2.1,<1.3.0a0
- - zstd >=1.5.6,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 36414
- timestamp: 1733513501944
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/blosc-1.21.6-h873c8c4_1.conda
- sha256: 610aafc52a0c28c353172cb3aaa63adb78513b85ff32c31fb143ffa55c5a3e79
- md5: e7e541492b94582902121f90fda838df
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - libgcc >=14
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 55819
+ timestamp: 1761947323959
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.9.8-h4401a86_0.conda
+ sha256: 61b5666340a96b9190345939d69200f37e4ddde9f32dfcc3dacf64993ad406a3
+ md5: 7ef9e1d46065ce9772595d1d80780c1d
depends:
- - libgcc >=13
- - libstdcxx >=13
- - libzlib >=1.3.1,<2.0a0
- - lz4-c >=1.10.0,<1.11.0a0
- - snappy >=1.2.1,<1.3.0a0
- - zstd >=1.5.6,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 44506
- timestamp: 1733513517482
-- conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-hd145fbb_1.conda
- sha256: 876bdb1947644b4408f498ac91c61f1f4987d2c57eb47c0aba0d5ee822cd7da9
- md5: 717852102c68a082992ce13a53403f9d
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - libgcc >=14
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 59168
+ timestamp: 1761947425221
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.9.8-h6b06ba2_0.conda
+ sha256: e2e42469b0152ec3c56f3772fb7fddd162057ae36bc703cdca49ce52d131abfa
+ md5: 1310b5104c32f0952a1bcd524d398dd4
depends:
- __osx >=10.13
- - libcxx >=18
- - libzlib >=1.3.1,<2.0a0
- - lz4-c >=1.10.0,<1.11.0a0
- - snappy >=1.2.1,<1.3.0a0
- - zstd >=1.5.6,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 46990
- timestamp: 1733513422834
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda
- sha256: c3fe902114b9a3ac837e1a32408cc2142c147ec054c1038d37aec6814343f48a
- md5: 925acfb50a750aa178f7a0aced77f351
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 44873
+ timestamp: 1761947452628
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.9.8-hca30140_0.conda
+ sha256: 0a9917eec3902399236659945c0a4bd23650db5e980534675e81a3ff3f40ff45
+ md5: 9915036c8270a5dfc1ffb40585987eab
depends:
- __osx >=11.0
- - libcxx >=18
- - libzlib >=1.3.1,<2.0a0
- - lz4-c >=1.10.0,<1.11.0a0
- - snappy >=1.2.1,<1.3.0a0
- - zstd >=1.5.6,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 33602
- timestamp: 1733513285902
-- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
- sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5
- md5: 51a19bba1b8ebfb60df25cde030b7ebc
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 44807
+ timestamp: 1761947474954
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.12.5-hb03c661_1.conda
+ sha256: f5876cc9792346ecdb0326f16f38b2f2fd7b5501228c56419330338fcf37e676
+ md5: f1d45413e1c41a7eff162bf702c02cea
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
- license: bzip2-1.0.6
- license_family: BSD
- purls: []
- size: 260341
- timestamp: 1757437258798
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_8.conda
- sha256: d2a296aa0b5f38ed9c264def6cf775c0ccb0f110ae156fcde322f3eccebf2e01
- md5: 2921ac0b541bf37c69e66bd6d9a43bca
- depends:
- - libgcc >=14
- license: bzip2-1.0.6
- license_family: BSD
- purls: []
- size: 192536
- timestamp: 1757437302703
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-heb0841c_8.conda
- sha256: 08583219e04e9831624fe8b382d91c59e196b156c7680ba4b1c370568f4a0d9a
- md5: 594e634d07a75c72b09085d61a2ddcf1
+ license: Apache-2.0
+ license_family: Apache
+ size: 238560
+ timestamp: 1762858460824
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.12.5-he30d5cf_1.conda
+ sha256: c90cd27ee87f80cffa82465bb27262068675b32995678f734b84fb362920e43e
+ md5: bfbe396840063fee951e7784d2a60826
depends:
- libgcc >=14
- license: bzip2-1.0.6
- license_family: BSD
- purls: []
- size: 204568
- timestamp: 1757437305722
-- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda
- sha256: 8f50b58efb29c710f3cecf2027a8d7325ba769ab10c746eff75cea3ac050b10c
- md5: 97c4b3bd8a90722104798175a1bdddbf
+ license: Apache-2.0
+ license_family: Apache
+ size: 262549
+ timestamp: 1762858469612
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.12.5-h8616949_1.conda
+ sha256: 0f653e690735c3689ba320812da6981e01e74d26330769726d30c75033efdda1
+ md5: 305811c179c589d43cd2cfc9c79e5614
depends:
- __osx >=10.13
- license: bzip2-1.0.6
- license_family: BSD
- purls: []
- size: 132607
- timestamp: 1757437730085
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_8.conda
- sha256: b456200636bd5fecb2bec63f7e0985ad2097cf1b83d60ce0b6968dffa6d02aa1
- md5: 58fd217444c2a5701a44244faf518206
+ license: Apache-2.0
+ license_family: Apache
+ size: 229530
+ timestamp: 1762858762807
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.12.5-hc919400_1.conda
+ sha256: 48577d647f5e9e7fec531b152e3e31f7845ba81ae2e59529a97eac57adb427ae
+ md5: 7338b3d3f6308f375c94370728df10fc
depends:
- __osx >=11.0
- license: bzip2-1.0.6
- license_family: BSD
- purls: []
- size: 125061
- timestamp: 1757437486465
-- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
- sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb
- md5: f7f0d6cc2dc986d42ac2689ec88192be
+ license: Apache-2.0
+ license_family: Apache
+ size: 223540
+ timestamp: 1762858953852
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.1-h7e655bb_8.conda
+ sha256: e91d2fc0fddf069b8d39c0ce03eca834673702f7e17eda8e7ffc4558b948053d
+ md5: 1baf55dfcc138d98d437309e9aba2635
depends:
+ - libgcc >=14
- __glibc >=2.17,<3.0.a0
- - libgcc >=13
- license: MIT
- license_family: MIT
- purls: []
- size: 206884
- timestamp: 1744127994291
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda
- sha256: ccae98c665d86723993d4cb0b456bd23804af5b0645052c09a31c9634eebc8df
- md5: 5deaa903d46d62a1f8077ad359c3062e
- depends:
- - libgcc >=13
- license: MIT
- license_family: MIT
- purls: []
- size: 215950
- timestamp: 1744127972012
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/c-ares-1.34.5-h190368a_0.conda
- sha256: a286ca4bd5bc230d52e2be582fd63c8fd78026a096ab82e0c55acabddc44cd5a
- md5: 8a42bb07e4f211137f240e67da7c940c
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 22138
+ timestamp: 1762957433991
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.1-hb6bbc7b_8.conda
+ sha256: cf52a449bf13328c209a7cfb8e9fe35ab74f797192d338e082e835c063d49615
+ md5: efbdd275350a8520713d0db97a98471f
depends:
- - libgcc >=13
- license: MIT
- license_family: MIT
- purls: []
- size: 226622
- timestamp: 1744127965562
-- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda
- sha256: b37f5dacfe1c59e0a207c1d65489b760dff9ddb97b8df7126ceda01692ba6e97
- md5: eafe5d9f1a8c514afe41e6e833f66dfd
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 23276
+ timestamp: 1762957458134
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.3.1-h7df70e9_8.conda
+ sha256: b1039b7f3b7a30622c8ce10545ab568653a656ffb56776292a56d8e2b560af06
+ md5: e80fc40b09b24a964df1a27d76162a4f
depends:
- __osx >=10.13
- license: MIT
- license_family: MIT
- purls: []
- size: 184824
- timestamp: 1744128064511
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda
- sha256: b4bb55d0806e41ffef94d0e3f3c97531f322b3cb0ca1f7cdf8e47f62538b7a2b
- md5: f8cd1beb98240c7edb1a95883360ccfa
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 21163
+ timestamp: 1762957488953
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.1-h61d5560_8.conda
+ sha256: c42c905ea099ddc93f1d517755fb740cc26514ca4e500f697241d04980fda03d
+ md5: ea7a505949c1bf4a51b2cccc89f8120d
depends:
- __osx >=11.0
- license: MIT
- license_family: MIT
- purls: []
- size: 179696
- timestamp: 1744128058734
-- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
- sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6
- md5: f9e5fbc24009179e8b0409624691758a
- depends:
- - __unix
- license: ISC
- purls: []
- size: 155907
- timestamp: 1759649036195
-- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- noarch: python
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- md5: 9b347a7ec10940d3f7941ff6c460b551
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 21066
+ timestamp: 1762957452685
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.6-h1deb5b9_4.conda
+ sha256: ed5131ac1f3f380b2a9f2035a4947e6d96e110bc3d4e24ca12f620e2e861fb07
+ md5: 61939d0173b83ed26953e30b5cb37322
depends:
- - cached_property >=1.5.2,<1.5.3.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 4134
- timestamp: 1615209571450
-- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- md5: 576d629e47797577ab0f1b351297ef4a
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 58937
+ timestamp: 1761592570359
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.6-hf48a900_4.conda
+ sha256: bb9f45bd5bb49e62fdbc501d357aa73c00a1ac755c46c3e8c4dfa4ee09593070
+ md5: 033f167a6fdae9c21451be8d24100638
depends:
- - python >=3.6
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/cached-property?source=hash-mapping
- size: 11065
- timestamp: 1615209567874
-- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1024.3-llvm21_1_h81d60ea_5.conda
- sha256: f89653231443a2d9bf17c0ec99d3a1db94b6346d7b8a2940fe25d21f3b4c8fb3
- md5: f8398526e8b8222479f41121fee94876
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 61590
+ timestamp: 1761592586892
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.5.6-h0ddc0d0_4.conda
+ sha256: e6d90f34a16656a638aae92a234c6367136fa71c2bca8dfe78efe56340a0a2a7
+ md5: 48b4859b210ec8afbfb3becbae5779fe
depends:
+ - libcxx >=19
- __osx >=10.13
- - ld64_osx-64 >=955.13,<955.14.0a0
- - libcxx
- - libllvm21 >=21.1.2,<21.2.0a0
- - libzlib >=1.3.1,<2.0a0
- - llvm-tools 21.1.*
- - sigtool
- constrains:
- - clang 21.1.*
- - ld64 955.13.*
- - cctools 1024.3.*
- license: APSL-2.0
- license_family: Other
- size: 740257
- timestamp: 1759697792720
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1024.3-llvm21_1_haddd2d4_5.conda
- sha256: 8930c4a81d40d39784c79f00e31c407230d8b18148a93a1387b96637535bfd58
- md5: fd7a33de15fa4a509c20dd00375f2c34
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 52520
+ timestamp: 1761592603978
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.6-hada8b3e_4.conda
+ sha256: 0bb2185a639ff34d96a70ba687e2c39c9b81e842b85d8817aca63e14e00f70ef
+ md5: b856c74bc570d617b6550f10bfe03533
depends:
- __osx >=11.0
- - ld64_osx-arm64 >=955.13,<955.14.0a0
- - libcxx
- - libllvm21 >=21.1.2,<21.2.0a0
- - libzlib >=1.3.1,<2.0a0
- - llvm-tools 21.1.*
- - sigtool
- constrains:
- - ld64 955.13.*
- - clang 21.1.*
- - cctools 1024.3.*
- license: APSL-2.0
- license_family: Other
- size: 742396
- timestamp: 1759697712110
-- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda
- sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306
- md5: 257ae203f1d204107ba389607d375ded
- depends:
- - python >=3.10
- license: ISC
- purls:
- - pkg:pypi/certifi?source=hash-mapping
- size: 160248
- timestamp: 1759648987029
-- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda
- sha256: c6339858a0aaf5d939e00d345c98b99e4558f285942b27232ac098ad17ac7f8e
- md5: cf45f4278afd6f4e6d03eda0f435d527
+ - libcxx >=19
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 51935
+ timestamp: 1761592632928
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.10.7-had4b759_1.conda
+ sha256: 6bb3cb03fddb0010a7e35b2616c34c08cbc601cbe9eebdeaabf47a84b3c2087b
+ md5: 11b26a1eb8183c11140ca369120bd0c0
depends:
- - __glibc >=2.17,<3.0.a0
- - libffi >=3.5.2,<3.6.0a0
- libgcc >=14
- - pycparser
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/cffi?source=hash-mapping
- size: 300271
- timestamp: 1761203085220
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-2.0.0-py314h0bd77cf_1.conda
- sha256: 728e55b32bf538e792010308fbe55d26d02903ddc295fbe101167903a123dd6f
- md5: f333c475896dbc8b15efd8f7c61154c7
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-compression >=0.3.1,<0.3.2.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 224431
+ timestamp: 1762195010218
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.10.7-h8b93892_1.conda
+ sha256: 85fcc5e8be1bb969a76c04ae8035684a94d69f3bfc994578d9330f7888052c16
+ md5: 509b1bd21f3b52c683c9941bcb199a34
depends:
- - libffi >=3.5.2,<3.6.0a0
- libgcc >=14
- - pycparser
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-compression >=0.3.1,<0.3.2.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 212392
+ timestamp: 1762195024896
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.10.7-ha9fb31a_1.conda
+ sha256: 152f7c12d13ff2d739099eec96abf27971217c6073d9408c00966b0bac49a074
+ md5: 5974a726155a01bfe49c4fc6660c0070
+ depends:
+ - __osx >=10.13
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-compression >=0.3.1,<0.3.2.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 192124
+ timestamp: 1762195060905
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.10.7-h241dc44_1.conda
+ sha256: bf8cc02c600d60d4d8d170eba11350211b2faaae9459c0d1c623e4a18ea79169
+ md5: 1ba37dd519ce567ce4862f7040d024d5
+ depends:
+ - __osx >=11.0
+ - aws-c-compression >=0.3.1,<0.3.2.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 170787
+ timestamp: 1762195030972
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.23.2-hbff472d_2.conda
+ sha256: b2df226d99bd4a48228f0cc8acebef6e3912c85709053dacb05136e56cdf8b63
+ md5: 4db56ebbdc330e40dbb38e0bd9fb4cad
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - s2n >=1.6.0,<1.6.1.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 181061
+ timestamp: 1762187768170
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.23.2-ha25bc20_2.conda
+ sha256: 24162dbf187830d12db780b45a30ba0c90f217ff05666b5d1c7f8a79d2c0b34d
+ md5: 47f8e0c0b8a7bec55a1ba39b37241cd6
+ depends:
+ - libgcc >=14
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - s2n >=1.6.0,<1.6.1.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 185976
+ timestamp: 1762187820045
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.23.2-hccfe1ea_2.conda
+ sha256: 59ff8d1b2ccc542cca62ca4b84f493a9e8b29254a7f73ff0b2238d36e8ebf76a
+ md5: 84feb49ec906f8dd01b31509252a01c5
+ depends:
+ - __osx >=10.15
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 182272
+ timestamp: 1762187845153
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.23.2-hcea795d_2.conda
+ sha256: e27c4e1b9a741e5fb41395c3116e2b4543b46db0af69e7de721de1d709152eb0
+ md5: b33513f122da8f6f4606bbef8b8b084c
+ depends:
+ - __osx >=11.0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 176080
+ timestamp: 1762187854052
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.13.3-h8ba2272_8.conda
+ sha256: 4c745a09b136f6cb3a012cfafd09a98386536dc80f8121d555d990e88481489f
+ md5: bc8b3533526bf68ed5e6114f63f781ba
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 216101
+ timestamp: 1762200731083
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.13.3-he441a46_8.conda
+ sha256: 785fdf298a5512c898b2fa9b13a93803f80aa463bede005b37a528e2f61fe9f2
+ md5: adc380cbcb81a539ea98d383daad2270
+ depends:
+ - libgcc >=14
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 189854
+ timestamp: 1762200760585
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.13.3-ha2a017f_8.conda
+ sha256: 8f3ed52f53b95fd295e10d3353d3c1ecfd406817fc736ee3e1014703172d59f4
+ md5: 63b8a00389c1b40be93805d8882fe28f
+ depends:
+ - __osx >=10.13
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 188001
+ timestamp: 1762200790401
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.13.3-hf26a141_8.conda
+ sha256: 61ed17e68e143de4eddceecac0f244439268a3762538730ff24a5d6d18854294
+ md5: 86e356901766b717e02985de6f8c71e6
+ depends:
+ - __osx >=11.0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 150212
+ timestamp: 1762200774307
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.8.6-h493c25d_7.conda
+ sha256: eb123f66ad3697be4852c7abdb394a33997aba3d896eb1c6d557e1e42b252c8d
+ md5: 04f44f1cbc96b225f41852c188f5e8d9
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - openssl >=3.5.4,<4.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 137511
+ timestamp: 1762249980464
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.8.6-h2ed19f2_7.conda
+ sha256: a53cfc3b164de44b0dd3daf4f076014a2d6c381d5684e4d979d128e146cbddbe
+ md5: ea3124a506e9b014b22557ad0c1768ea
+ depends:
+ - libgcc >=14
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - openssl >=3.5.4,<4.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 143025
+ timestamp: 1762249995708
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.8.6-hedfbfa3_7.conda
+ sha256: be1ffeae554718aa6d508508ba29163ddd01894e4904aebddf0725d6d6e3db77
+ md5: cee918c69784859ccf41b30f31871535
+ depends:
+ - __osx >=10.13
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 121374
+ timestamp: 1762250044623
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.8.6-h1e3b5a0_7.conda
+ sha256: 55f3e5d7ecfd50d4d9d6e0de641b571c7938e048ed7412a353befef861893e35
+ md5: ae4d69d38b4806646b1998ca6923a68f
+ depends:
+ - __osx >=11.0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-checksums >=0.2.7,<0.2.8.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 117757
+ timestamp: 1762250031879
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h7e655bb_3.conda
+ sha256: 8d84039ea1d33021623916edfc23f063a5bcef90e8f63ae7389e1435deb83e53
+ md5: 70e83d2429b7edb595355316927dfbea
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 59204
+ timestamp: 1762957305800
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.4-hb6bbc7b_3.conda
+ sha256: f21f0817e7a1f18a930942000bfc6b517335b2db8a811291d583f9a0f25aa560
+ md5: e71a8ed92c5f233cda3980627c0f32b3
+ depends:
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 63048
+ timestamp: 1762957324223
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.2.4-h7df70e9_3.conda
+ sha256: 65b2a085fc7cbb42a8b2ffc4b7b1e62b942a22cf82bfced2b042b42b8b7b1fc5
+ md5: 542b06622aa7982c2109b175bd97c20a
+ depends:
+ - __osx >=10.13
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 55413
+ timestamp: 1762957350211
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.4-h61d5560_3.conda
+ sha256: 5f93a440eae67085fc36c45d9169635569e71a487a8b359799281c1635befa68
+ md5: 2781d442c010c31abcad68703ebbc205
+ depends:
+ - __osx >=11.0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 53172
+ timestamp: 1762957351489
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.7-h7e655bb_4.conda
+ sha256: a95b3cc8e3c0ddb664bbd26333b35986fd406f02c2c60d380833751d2d9393bd
+ md5: 83a6e0fc73a7f18a8024fc89455da81c
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 76774
+ timestamp: 1762957236884
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.7-hb6bbc7b_4.conda
+ sha256: b663b3978a8fb7725028712c0f0283e4932a87f9a12d46b3cec861460720ba24
+ md5: f95f006ed498479b5ac1305f9cc7bf42
+ depends:
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 76802
+ timestamp: 1762957252748
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.2.7-h7df70e9_4.conda
+ sha256: 3361ffbe6cc8f65d6e9ad59a6df97810f37a062276a3742ac3159f54c9e50b0c
+ md5: def63445d08ca87ffd5640123b1251a9
+ depends:
+ - __osx >=10.13
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 75344
+ timestamp: 1762957255006
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.7-h61d5560_4.conda
+ sha256: 90b1705b8f5e42981d6dd9470218dc8994f08aa7d8ed3787dcbf5a168837d179
+ md5: 4fca5f39d47042f0cb0542e0c1420875
+ depends:
+ - __osx >=11.0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ size: 74065
+ timestamp: 1762957260262
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.35.0-h719b17a_2.conda
+ sha256: d34850625fdcbaeda37fd3b83446b71e925463ec79d15ba430636c19526116ed
+ md5: 2e313660820653ba7557ccbe235b402a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-mqtt >=0.13.3,<0.13.4.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ - aws-c-s3 >=0.8.6,<0.8.7.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 408300
+ timestamp: 1762256210769
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.35.0-h064172b_2.conda
+ sha256: e3791ba1c8548d770687d2e5b1362a4a2619da6506d2e7f1ca8651ae7e12d351
+ md5: 563c0d478c867074e12a767a94330b4c
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ - aws-c-mqtt >=0.13.3,<0.13.4.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-c-s3 >=0.8.6,<0.8.7.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 325380
+ timestamp: 1762256234484
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.35.0-h7e7cb56_2.conda
+ sha256: 12d1fe539258f6e28200d2515f08e7906204c7b2e255a764e7d309ead4a7926c
+ md5: 9450060dcb26ea7092b57e1625363b63
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - aws-c-mqtt >=0.13.3,<0.13.4.0a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-s3 >=0.8.6,<0.8.7.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 343153
+ timestamp: 1762256249379
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.35.0-h44e95eb_2.conda
+ sha256: bc224e776a82e4abaded096d97df672b37911c4d7e783080051b043ef402c84e
+ md5: e9b0347882768ccef4aa4c103e3daa67
+ depends:
+ - libcxx >=19
+ - __osx >=11.0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ - aws-c-cal >=0.9.8,<0.9.9.0a0
+ - aws-c-http >=0.10.7,<0.10.8.0a0
+ - aws-c-auth >=0.9.1,<0.9.2.0a0
+ - aws-c-s3 >=0.8.6,<0.8.7.0a0
+ - aws-c-io >=0.23.2,<0.23.3.0a0
+ - aws-c-sdkutils >=0.2.4,<0.2.5.0a0
+ - aws-c-mqtt >=0.13.3,<0.13.4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 265495
+ timestamp: 1762256230196
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.606-h522d481_6.conda
+ sha256: 36492a2aa10ec63a1f550aa4089b6c9876deced6b3ff4d63689b54f57c545340
+ md5: 87a2b0b9822db0ec8bec1c280a8a4443
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - libcurl >=8.17.0,<9.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 3473279
+ timestamp: 1762368204170
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.606-h5fce88b_6.conda
+ sha256: bb1b7fef8272040ec896ea74b29b980b20e0bbe46b462c2d6ddb8d3a85a10987
+ md5: 71784f45b3f04cae60b6ad62759dbf6f
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - libcurl >=8.17.0,<9.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 3320220
+ timestamp: 1762368221575
+- conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.606-hf0dd41a_6.conda
+ sha256: 8ba6588b51e39ce7f2be3d4d7a3900202c37943a2573185a94ea7d482760d73c
+ md5: 26442ded3538411891db6cad232e6034
+ depends:
+ - libcxx >=19
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - libcurl >=8.17.0,<9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 3312654
+ timestamp: 1762368238720
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.606-hf3ce6b4_6.conda
+ sha256: df48e0254af0efd927e3af5d0ef3c0b9dc6e9dedbf3bcb2f69a2bc61508de472
+ md5: 530f0411c283dc014ead36af4542d182
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - aws-c-common >=0.12.5,<0.12.6.0a0
+ - libcurl >=8.17.0,<9.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - aws-c-event-stream >=0.5.6,<0.5.7.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 3121535
+ timestamp: 1762368276514
+- conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.16.1-h3a458e0_0.conda
+ sha256: cba633571e7368953520a4f66dc74c3942cc12f735e0afa8d3d5fc3edf35c866
+ md5: 1d4e0d37da5f3c22ecd44033f673feba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cffi?source=hash-mapping
- size: 318357
- timestamp: 1761203973223
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cffi-2.0.0-py314h50ff317_1.conda
- sha256: 474e8d1e81bdaeaad0049bd513918a5e38da040c2d4ec53f7c01b9e60db8ed9e
- md5: abe90e1c0221636d4fd6e45f749b9a33
+ size: 348231
+ timestamp: 1760926677260
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.16.1-h20031ec_0.conda
+ sha256: 92a82ecf67117800b143573951f4655b1627f80bb4f40975607d3b0ae08dcda2
+ md5: 2385a8b113ecd44ec55c6d14b2e605fe
depends:
- - libffi >=3.5.2,<3.6.0a0
+ - libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - pycparser
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ - libstdcxx >=14
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cffi?source=hash-mapping
- size: 312698
- timestamp: 1761203757478
-- conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda
- sha256: e2c58cc2451cc96db2a3c8ec34e18889878db1e95cc3e32c85e737e02a7916fb
- md5: 71c2caaa13f50fe0ebad0f961aee8073
+ size: 339395
+ timestamp: 1760928308159
+- conda: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.16.1-he2a98a9_0.conda
+ sha256: 923a0f9fab0c922e17f8bb27c8210d8978111390ff4e0cf6c1adff3c1a4d13bc
+ md5: 9f39c22aad61e76bfb73bb7d4114efac
depends:
- __osx >=10.13
- - libffi >=3.5.2,<3.6.0a0
- - pycparser
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cffi?source=hash-mapping
- size: 293633
- timestamp: 1761203106369
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda
- sha256: 5b5ee5de01eb4e4fd2576add5ec9edfc654fbaf9293e7b7ad2f893a67780aa98
- md5: 10dd19e4c797b8f8bdb1ec1fbb6821d7
+ size: 297681
+ timestamp: 1760927174036
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.16.1-h88fedcc_0.conda
+ sha256: d995413e4daf19ee3120f3ab9f0c9e330771787f33cbd4a33d8e5445f52022e3
+ md5: fbe485a39b05090c0b5f8bb4febcd343
depends:
- __osx >=11.0
- - libffi >=3.5.2,<3.6.0a0
- - pycparser
- - python >=3.14,<3.15.0a0
- - python >=3.14,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cffi?source=hash-mapping
- size: 292983
- timestamp: 1761203354051
-- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
- sha256: d5696636733b3c301054b948cdd793f118efacce361d9bd4afb57d5980a9064f
- md5: 57df494053e17dce2ac3a0b33e1b2a2e
+ size: 289984
+ timestamp: 1760927117177
+- conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.13.2-h3a5f585_1.conda
+ sha256: fc1df5ea2595f4f16d0da9f7713ce5fed20cb1bfc7fb098eda7925c7d23f0c45
+ md5: 4e921d9c85e6559c60215497978b3cdb
depends:
- - python >=3.9
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cfgv?source=hash-mapping
- size: 12973
- timestamp: 1734267180483
-- conda: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py314hc02f841_2.conda
- sha256: d7dcf54f34061cb55616db20388a79785147197c48dc06d31d63a5c96a6ce287
- md5: 0e5b8775024cf05612e5aecf28ca74b9
+ size: 249684
+ timestamp: 1761066654684
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.13.2-h5cd3b3c_1.conda
+ sha256: 600a782588fa8ea1158f724fabc767879759fd593876d9ad4283a8b75883011e
+ md5: 4f0e9a69b9acc105d47cc02076342e77
depends:
- - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
- libgcc >=14
- - numpy >=1.23,<3
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ - libstdcxx >=14
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cftime?source=hash-mapping
- size: 237643
- timestamp: 1756511913214
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cftime-1.6.4-py314hc2f71db_2.conda
- sha256: 7990bd7258a922ffd1060c89b9d2c70372cbc787cf39374208f5171da92475c2
- md5: 85b6a9e029b42722a03946d93192a424
+ size: 228025
+ timestamp: 1761068091934
+- conda: https://conda.anaconda.org/conda-forge/osx-64/azure-identity-cpp-1.13.2-h0e8e1c8_1.conda
+ sha256: 555e9c9262b996f8c688598760b4cddf4d16ae1cb2f0fd0a31cb76c2fdc7d628
+ md5: 32eb613f88ae1530ca78481bdce41cdd
depends:
- - libgcc >=14
- - numpy >=1.23,<3
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
+ - __osx >=10.13
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libcxx >=19
+ - openssl >=3.5.4,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cftime?source=hash-mapping
- size: 220731
- timestamp: 1756511980155
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cftime-1.6.4-py314hcbdb684_2.conda
- sha256: 925792c195668501401a8fd3f1f3e8ce4862e9f21d4bae1de525fe71968894b3
- md5: 99b9bdfa021bffb5984617361433bc8c
+ size: 174582
+ timestamp: 1761067038720
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.13.2-h853621b_1.conda
+ sha256: a4ed52062025035d9c1b3d8c70af39496fc5153cc741420139a770bc1312cfd6
+ md5: fac63edc393d7035ab23fbccdeda34f4
+ depends:
+ - __osx >=11.0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libcxx >=19
+ - openssl >=3.5.4,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 167268
+ timestamp: 1761066827371
+- conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.15.0-h2a74896_1.conda
+ sha256: 58879f33cd62c30a4d6a19fd5ebc59bd0c4560f575bd02645d93d342b6f881d2
+ md5: ffd553ff98ce5d74d3d89ac269153149
depends:
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
- libgcc >=14
- - numpy >=1.23,<3
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
+ - libstdcxx >=14
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cftime?source=hash-mapping
- size: 230977
- timestamp: 1756512150307
-- conda: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.4-py314ha6d4590_2.conda
- sha256: 33c638f0c96fb82ffdeb58bac03a64d7c7cf7e3ca5892e90dabf4b4835429571
- md5: 5447e7d9027faa4ba117fac7cd269be0
+ size: 576406
+ timestamp: 1761080005291
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.15.0-h4b8de25_1.conda
+ sha256: e1e571b1ecaf647d68c25da67160dea402943bb882b0800a83935c04a5b65755
+ md5: 05baa313f28f2890c496ed07c06f391a
+ depends:
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ size: 517285
+ timestamp: 1761081463141
+- conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.15.0-h388f2e7_1.conda
+ sha256: 0a736f04c9778b87884422ebb6b549495430652204d964ff161efb719362baee
+ md5: 6b5f36e610295f4f859dd9cf680bbf7d
depends:
- __osx >=10.13
- - numpy >=1.23,<3
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libcxx >=19
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cftime?source=hash-mapping
- size: 198385
- timestamp: 1756512181174
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.4-py314h943c2e0_2.conda
- sha256: b77d66d44b49c876aa513b00e89988e244257eea7baa2fde46d6053f09997f90
- md5: 960fcb15ed404fbb18aaaa90b7c124f1
+ size: 432811
+ timestamp: 1761080273088
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.15.0-h10d327b_1.conda
+ sha256: 274267b458ed51f4b71113fe615121fabd6f1d7b62ebfefdad946f8436a5db8e
+ md5: 443b74cf38c6b0f4b675c0517879ce69
depends:
- __osx >=11.0
- - numpy >=1.23,<3
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libcxx >=19
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/cftime?source=hash-mapping
- size: 193180
- timestamp: 1756512172179
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21.1.4-default_h1323312_0.conda
- sha256: de1305fe6e720c1b147853c1b2b8bc980ce06ba1612ddf8f284dfc6b45695e47
- md5: 11482581de60b75711dc5e4a64dbe43c
+ size: 425175
+ timestamp: 1761080947110
+- conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.11.0-h3d7a050_1.conda
+ sha256: eb590e5c47ee8e6f8cc77e9c759da860ae243eed56aceb67ce51db75f45c9a50
+ md5: 89985ba2a3742f34be6aafd6a8f3af8c
depends:
- - clang-21 21.1.4 default_h9f74b92_0
- - ld64
- - ld64_osx-64 * llvm21_1_*
- - llvm-openmp >=21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 25029
- timestamp: 1761214403624
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21.1.4-default_hf9bcbb7_0.conda
- sha256: cbb8b1299137729fa702f3bd8b3ed3d8f40c9acb56abd42ad8711497677298a9
- md5: 1c36a013d5cb9b18ef18bae54c23909d
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - openssl >=3.5.4,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 149620
+ timestamp: 1761066643066
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.11.0-h01c82c4_1.conda
+ sha256: 06da52b22569efc1cbef394ce0fe0a367d0e77c01bc8068ab982b0396108a094
+ md5: c8c23b5286017b2f02bd5f0d5fd55e31
depends:
- - clang-21 21.1.4 default_h489deba_0
- - ld64
- - ld64_osx-arm64 * llvm21_1_*
- - llvm-openmp >=21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 25012
- timestamp: 1761210308015
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21-21.1.4-default_h9f74b92_0.conda
- sha256: d39242c6dbd5d6a19efae69f0c58ee620a34561c702346bc44a54d91fb0c6648
- md5: fc5234c7d1cbcfe0397bce50655db3cd
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - openssl >=3.5.4,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 141077
+ timestamp: 1761068760441
+- conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.11.0-h56a711b_1.conda
+ sha256: 322919e9842ddf5c9d0286667420a76774e1e42ae0520445d65726f8a2565823
+ md5: 278ccb9a3616d4342731130287c3ba79
depends:
- __osx >=10.13
- - compiler-rt21 21.1.4.*
- - libclang-cpp21.1 21.1.4 default_hc369343_0
- - libcxx >=21.1.4
- - libllvm21 >=21.1.4,<21.2.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 11410136
- timestamp: 1761214192230
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21-21.1.4-default_h489deba_0.conda
- sha256: f7491a78dbf6951b2888b8efd2601edc981f5d30f041c4fc818aebd589f7850f
- md5: 3a68030689bc4af2c8df08828ede712f
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - openssl >=3.5.4,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 126230
+ timestamp: 1761066840950
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.11.0-h7e4aa5d_1.conda
+ sha256: 74803bd26983b599ea54ff1267a0c857ff37ccf6f849604a72eb63d8d30e4425
+ md5: ac9113ea0b7ed5ecf452503f82bf2956
depends:
- __osx >=11.0
- - compiler-rt21 21.1.4.*
- - libclang-cpp21.1 21.1.4 default_h73dfc95_0
- - libcxx >=21.1.4
- - libllvm21 >=21.1.4,<21.2.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 11684092
- timestamp: 1761210107319
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-21.1.4-h1e5c9a4_25.conda
- sha256: a8a352015a916b243603131b6fe747cf71aef565fa0be59d6c1ca483c3eacdd2
- md5: 04ec680d098fde1ca3bd628d91af8b7b
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - openssl >=3.5.4,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 121744
+ timestamp: 1761066874537
+- conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.13.0-hf38f1be_1.conda
+ sha256: 9f3d0f484e97cef5f019b7faef0c07fb7ee6c584e3a6e2954980f440978a365e
+ md5: f10b9303c7239fbce3580a60a92bcf97
depends:
- - cctools_osx-64
- - clang 21.1.4.*
- - compiler-rt 21.1.4.*
- - ld64_osx-64
- - llvm-tools 21.1.4.*
- license: BSD-3-Clause
- license_family: BSD
- size: 18235
- timestamp: 1761229573896
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-21.1.4-h721c3f7_25.conda
- sha256: 72cfd7f95473a836f32d7dd4a5cddf20ffb0bbe7493aa4a93c8e61581b32de98
- md5: c819973e1ed727152cf1e95a9e545d57
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ size: 299198
+ timestamp: 1761094654852
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.13.0-h48ee4ef_1.conda
+ sha256: 70a05b1b551b493fccb1706c45e56e2d5b7ee166224523773400924a1ed04256
+ md5: ace4a9f0a2778279408dafb61f490492
+ depends:
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ size: 266668
+ timestamp: 1761096243704
+- conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-files-datalake-cpp-12.13.0-h1984e67_1.conda
+ sha256: 268175ab07f1917eff35e4c38a17a2b71c5f9b86e38e5c0b313da477600a82df
+ md5: ef5701f2da108d432e7872d58e8ac64e
depends:
- - cctools_osx-arm64
- - clang 21.1.4.*
- - compiler-rt 21.1.4.*
- - ld64_osx-arm64
- - llvm-tools 21.1.4.*
- license: BSD-3-Clause
- license_family: BSD
- size: 18399
- timestamp: 1761229573944
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-21.1.4-h7e5c614_25.conda
- sha256: 78bab5a59d6d76911234dfec18de32f76747df1638d6d756b6d986260a009280
- md5: a3316b4c45e8e551536f5a7be1ffbe78
+ - __osx >=10.13
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libcxx >=19
+ license: MIT
+ license_family: MIT
+ size: 203298
+ timestamp: 1761095036240
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.13.0-hb288d13_1.conda
+ sha256: 2205e24d587453a04b075f86c59e3e72ad524c447fc5be61d7d1beb3cf2d7661
+ md5: 595091ae43974e5059d6eabf0a6a7aa5
depends:
- - clang_impl_osx-64 21.1.4 h1e5c9a4_25
- license: BSD-3-Clause
- license_family: BSD
- size: 21542
- timestamp: 1761229579892
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-21.1.4-h07b0088_25.conda
- sha256: 19992af188cb08646bc90406959ba2584e1ac97ff603b7f4fdfbd037cdc154ac
- md5: ace972d108f0b1187b69bbd397a0b477
+ - __osx >=11.0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-common-cpp >=12.11.0,<12.11.1.0a0
+ - libcxx >=19
+ license: MIT
+ license_family: MIT
+ size: 197152
+ timestamp: 1761094913245
+- conda: https://conda.anaconda.org/conda-forge/noarch/beartype-0.22.5-pyhd8ed1ab_0.conda
+ sha256: c818d622ba42c8435c310ce346264dfec37d736bf007605b7912421d4162b2f6
+ md5: a28a083771b7b7cbaddf758e7fda1497
depends:
- - clang_impl_osx-arm64 21.1.4 h721c3f7_25
- license: BSD-3-Clause
- license_family: BSD
- size: 21568
- timestamp: 1761229577836
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-21.1.4-default_h1c12a56_0.conda
- sha256: 3f74ae04783aa96d6e42f19deb9388b320f1be1db6ab157cac906d22ac72afb0
- md5: 4e534054ddff35f5f0a1e7090dd78c2f
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 1050808
+ timestamp: 1761982640038
+- conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.2-pyha770c72_0.conda
+ sha256: b949bd0121bb1eabc282c4de0551cc162b621582ee12b415e6f8297398e3b3b4
+ md5: 749ebebabc2cae99b2e5b3edd04c6ca2
depends:
- - clang 21.1.4 default_h1323312_0
- - libcxx-devel 21.1.*
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 25109
- timestamp: 1761214434050
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-21.1.4-default_h36137df_0.conda
- sha256: 3039912e7d989b1437086ac873a2ab249f50fa564286440f7f9fcd26e7f9cb6e
- md5: 96f1aa3829f0e2ec55a052397216e6db
+ - python >=3.10
+ - soupsieve >=1.2
+ - typing-extensions
+ license: MIT
+ license_family: MIT
+ size: 89146
+ timestamp: 1759146127397
+- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.44-h9d8b0ac_5.conda
+ sha256: 62cd59d8e63a7d564e0c1be6864d1a57360c76ed5c813d8d178c88d79a989fc3
+ md5: 071454f683b847f604f85b5284555dbf
depends:
- - clang 21.1.4 default_hf9bcbb7_0
- - libcxx-devel 21.1.*
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 25090
- timestamp: 1761210323179
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-21.1.4-h3bacc78_25.conda
- sha256: a82965605fe5045e5b44a7f80797da06794ab021204cb3144b6dc8ab4220b52b
- md5: df942bf0890ed1c69a3b039981605f7c
+ - ld_impl_linux-64 2.44 h1aa0949_5
+ - sysroot_linux-64
+ - zstd >=1.5.7,<1.6.0a0
+ license: GPL-3.0-only
+ size: 3663196
+ timestamp: 1762674679053
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.44-ha36da51_5.conda
+ sha256: 668e4c4301369043d6210d42b13aace5ae2721b1331822932d91bef558c299ea
+ md5: 8df9a64974506d9587330f87a6764029
depends:
- - clang_osx-64 21.1.4 h7e5c614_25
- - clangxx 21.1.4.*
- - libcxx >=21
- - libllvm21 >=21.1.4,<21.2.0a0
- license: BSD-3-Clause
- license_family: BSD
- size: 18340
- timestamp: 1761229615
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-21.1.4-hde34478_25.conda
- sha256: ae5baf70206901aaaa14c6498b4a0f8ef45ee0887aa57ab9104679fc8042d7ba
- md5: 063ae7398405115009605418c96a58f6
+ - ld_impl_linux-aarch64 2.44 hd32f0e1_5
+ - sysroot_linux-aarch64
+ - zstd >=1.5.7,<1.6.0a0
+ license: GPL-3.0-only
+ size: 4108300
+ timestamp: 1762674891487
+- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.44-h4852527_5.conda
+ sha256: 3423a6a3b14daf86bb3590a44c94c2f0415dffa4f0c3855acaa2ac52fb57515b
+ md5: 49bfee16b8ccbbe72aee2c806d49d34b
depends:
- - clang_osx-arm64 21.1.4 h07b0088_25
- - clangxx 21.1.4.*
- - libcxx >=21
- - libllvm21 >=21.1.4,<21.2.0a0
- license: BSD-3-Clause
- license_family: BSD
- size: 18537
- timestamp: 1761229642743
-- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-21.1.4-h7e5c614_25.conda
- sha256: f55c0e08fc556c3545fe70503910ff03a8636fb3b6debc525807dafa298f77b8
- md5: da04599e9ff11d63f0b20684c0c373e0
+ - binutils_impl_linux-64 2.44 h9d8b0ac_5
+ license: GPL-3.0-only
+ size: 36189
+ timestamp: 1762674702264
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.44-hf1166c9_5.conda
+ sha256: 596090a4cd9dba5264cf7c7e4fd39f459ee5a7a9cd29c8404bd1baed2e138a2f
+ md5: f9325f2fc57e74df0f7027cf0828f333
depends:
- - clang_osx-64 21.1.4 h7e5c614_25
- - clangxx_impl_osx-64 21.1.4 h3bacc78_25
- license: BSD-3-Clause
- license_family: BSD
- size: 19970
- timestamp: 1761229619346
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-21.1.4-h07b0088_25.conda
- sha256: 5fbb835586be7a9e5cd90248839cd156d3a6b7459129ea4a29b38cf5228136a4
- md5: b35fdf9e8d3e928164cd6604555e5491
+ - binutils_impl_linux-aarch64 2.44 ha36da51_5
+ license: GPL-3.0-only
+ size: 36081
+ timestamp: 1762674920790
+- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
+ sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd
+ md5: f0b4c8e370446ef89797608d60a564b3
depends:
- - clang_osx-arm64 21.1.4 h07b0088_25
- - clangxx_impl_osx-arm64 21.1.4 hde34478_25
- license: BSD-3-Clause
- license_family: BSD
- size: 19968
- timestamp: 1761229647957
-- conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.1.2-hc85cc9f_0.conda
- sha256: 2176c4bce9f602cee0efbae86283a1a75733921ecc0916c8d2f49df2aee1a0f0
- md5: 3d5d0a07f07ba1fc43f52b5e33e3cd7c
+ - python >=3.9
+ - webencodings
+ - python
+ constrains:
+ - tinycss >=1.1.0,<1.5
+ license: Apache-2.0 AND MIT
+ size: 141405
+ timestamp: 1737382993425
+- conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d
+ md5: 2c2fae981fd2afd00812c92ac47d023d
depends:
- __glibc >=2.17,<3.0.a0
- - bzip2 >=1.0.8,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libexpat >=2.7.1,<3.0a0
- - libgcc >=14
- - liblzma >=5.8.1,<6.0a0
- - libstdcxx >=14
- - libuv >=1.51.0,<2.0a0
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - ncurses >=6.5,<7.0a0
- - rhash >=1.4.6,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: BSD-3-Clause
license_family: BSD
- size: 21290609
- timestamp: 1759261133874
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-4.1.2-hc9d863e_0.conda
- sha256: 7b55dfccde7fa4a16572648302330f073b124312228cabade745ff455ebcfe64
- md5: 92b5d21ff60ab639abdb13e195a99ba7
+ size: 48427
+ timestamp: 1733513201413
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda
+ sha256: f1e408fc32e1fda8dee9c3fceee5650fd622526e4dc6fa1f1926f497b5508d13
+ md5: 2cbbd6264ad58887c40aab37f2abdaba
depends:
- - bzip2 >=1.0.8,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libexpat >=2.7.1,<3.0a0
- - libgcc >=14
- - liblzma >=5.8.1,<6.0a0
- - libstdcxx >=14
- - libuv >=1.51.0,<2.0a0
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - ncurses >=6.5,<7.0a0
- - rhash >=1.4.6,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: BSD-3-Clause
license_family: BSD
- size: 20534912
- timestamp: 1759261475840
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/cmake-4.1.2-hb501cee_0.conda
- sha256: f456e763993f087b8a89d4d46f5300fdeb256d72e35154153eecf0a3737b1473
- md5: 8dd26b0ddb2888b40e994f36c44a248d
+ size: 36414
+ timestamp: 1733513501944
+- conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-hd145fbb_1.conda
+ sha256: 876bdb1947644b4408f498ac91c61f1f4987d2c57eb47c0aba0d5ee822cd7da9
+ md5: 717852102c68a082992ce13a53403f9d
depends:
- - bzip2 >=1.0.8,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libexpat >=2.7.1,<3.0a0
- - libgcc >=14
- - liblzma >=5.8.1,<6.0a0
- - libstdcxx >=14
- - libuv >=1.51.0,<2.0a0
+ - __osx >=10.13
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
- - ncurses >=6.5,<7.0a0
- - rhash >=1.4.6,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: BSD-3-Clause
license_family: BSD
- size: 20787460
- timestamp: 1759261448431
-- conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-4.1.2-h29fc008_0.conda
- sha256: 29a0c428f0fc2c9146304bb390776d0cfb04093faeda2f6f2fe85099caf102f7
- md5: c8be0586640806d35e10ce7b95b74c9a
+ size: 46990
+ timestamp: 1733513422834
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda
+ sha256: c3fe902114b9a3ac837e1a32408cc2142c147ec054c1038d37aec6814343f48a
+ md5: 925acfb50a750aa178f7a0aced77f351
depends:
- - __osx >=10.13
- - bzip2 >=1.0.8,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libcxx >=19
- - libexpat >=2.7.1,<3.0a0
- - liblzma >=5.8.1,<6.0a0
- - libuv >=1.51.0,<2.0a0
+ - __osx >=11.0
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
- - ncurses >=6.5,<7.0a0
- - rhash >=1.4.6,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: BSD-3-Clause
license_family: BSD
- size: 18050238
- timestamp: 1759262614942
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-4.1.2-h54ad630_0.conda
- sha256: 717322060752f6c0eefe475ea4fb0b52597db5a87a20dcd573121df414f8fbef
- md5: 1c3ef82a4e1549022f2f3db6880d7712
+ size: 33602
+ timestamp: 1733513285902
+- conda: https://conda.anaconda.org/conda-forge/noarch/botocore-1.40.70-pyhd8ed1ab_0.conda
+ sha256: 92e3b65d162600eec4c858a870e2b7593886d837c965ca51bf8bd1ed0e6f1e27
+ md5: 280a8a31bface0a6b1cf49ea85004128
depends:
- - __osx >=11.0
- - bzip2 >=1.0.8,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libcxx >=19
- - libexpat >=2.7.1,<3.0a0
- - liblzma >=5.8.1,<6.0a0
- - libuv >=1.51.0,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - ncurses >=6.5,<7.0a0
- - rhash >=1.4.6,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- size: 16935599
- timestamp: 1759263309414
-- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
- sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
- md5: 962b9857ee8e7018c22f2776ffa0b2d7
- depends:
- - python >=3.9
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/colorama?source=hash-mapping
- size: 27011
- timestamp: 1733218222191
-- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
- sha256: 576a44729314ad9e4e5ebe055fbf48beb8116b60e58f9070278985b2b634f212
- md5: 2da13f2b299d8e1995bafbbe9689a2f7
+ - jmespath >=0.7.1,<2.0.0
+ - python >=3.10
+ - python-dateutil >=2.1,<3.0.0
+ - urllib3 >=1.25.4,!=2.2.0,<3
+ license: Apache-2.0
+ license_family: Apache
+ size: 8150945
+ timestamp: 1762813779810
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bottleneck-1.6.0-np2py314h56abb78_3.conda
+ sha256: 58cc4ecb796ec8093863d13264aca2746fa833461b30fd24b620d1acee0efd08
+ md5: 48b137fb9317635b90c335348518d0a6
depends:
- - python >=3.9
+ - numpy
- python
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/comm?source=hash-mapping
- size: 14690
- timestamp: 1753453984907
-- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-21.1.4-h694c41f_0.conda
- sha256: cb04fb467a85959f44e435dfe1a2c26dca8235a667f9cb16e0a6078b6c1bae69
- md5: 5036bdfeea83efa00c2a38a0cef6b210
- depends:
- - compiler-rt21 21.1.4 he914875_0
- constrains:
- - clang 21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- size: 15965
- timestamp: 1761127428727
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-21.1.4-hce30654_0.conda
- sha256: 262794a0a86c81cb149dffe4ee32c64585f209a9bc332a7952abf7601c0c8e59
- md5: 6a4da8aa379e1cd5aa33ef59840be689
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.14.* *_cp314
+ license: BSD-2-Clause
+ size: 158983
+ timestamp: 1762775788892
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bottleneck-1.6.0-np2py314hdf4ef4c_3.conda
+ sha256: 6a3724da41bc50f7cdceac5cc35746cea693b512adad7f09db62630e9b731419
+ md5: 20ddbf931c612f7852296f5f58ae1636
depends:
- - compiler-rt21 21.1.4 h855ad52_0
- constrains:
- - clang 21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- size: 15943
- timestamp: 1761128244582
-- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt21-21.1.4-he914875_0.conda
- sha256: c67ff47ceac3d6845952d892300e6023250f9f1deb0f5e6127a5e8ede176a2b2
- md5: 8aa7b4a3f1b2208d258989bc321eddf5
+ - numpy
+ - python
+ - python 3.14.* *_cp314
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ - numpy >=1.23,<3
+ license: BSD-2-Clause
+ size: 155085
+ timestamp: 1762775758836
+- conda: https://conda.anaconda.org/conda-forge/osx-64/bottleneck-1.6.0-np2py314hfeef9c2_3.conda
+ sha256: b75b8e766102cac6fa01ae63f94f81841a041f8f2dba554be8095bd2e3f02d19
+ md5: 5088e82d7776efb203ff2ef560d0dc52
depends:
+ - numpy
+ - python
- __osx >=10.13
- - compiler-rt21_osx-64 21.1.4.*
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- size: 98455
- timestamp: 1761127423840
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt21-21.1.4-h855ad52_0.conda
- sha256: b6d8d91485e2a81e60a40cccc4d261fad7ef8130b57b0c8ba93c71945f2deced
- md5: a48175c3903c80353cbaf2ddca89391b
+ - python_abi 3.14.* *_cp314
+ - numpy >=1.23,<3
+ license: BSD-2-Clause
+ size: 158336
+ timestamp: 1762775903695
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bottleneck-1.6.0-np2py314hfa18b03_3.conda
+ sha256: 377dd23a6ebc813a6f3e9f54ef6152bd0dc447527aad6b37638822916b4fd484
+ md5: f48af87bb77ab96c244e5105c4a9434b
depends:
+ - numpy
+ - python
+ - python 3.14.* *_cp314
- __osx >=11.0
- - compiler-rt21_osx-arm64 21.1.4.*
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- size: 98289
- timestamp: 1761128239508
-- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-64-21.1.4-he0f92a2_0.conda
- sha256: dfaaaf6ac8f8d8da15f79946da841ae76c25992bef2cd701fef004066aed5119
- md5: 70e7cbe903f0b56a106a63835f68d24c
- constrains:
- - compiler-rt >=9.0.1
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- size: 10834007
- timestamp: 1761127367729
-- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-arm64-21.1.4-h2514db7_0.conda
- sha256: 37e4cd5c31bd4219aaaf93dfea899374bd9df1ac91dc1fc8bc6bc135b2418ad2
- md5: d60ea471048fe54e86506707da5cec10
- constrains:
- - compiler-rt >=9.0.1
- license: Apache-2.0 WITH LLVM-exception
+ - numpy >=1.23,<3
+ - python_abi 3.14.* *_cp314
+ license: BSD-2-Clause
+ size: 140095
+ timestamp: 1762775905428
+- conda: https://conda.anaconda.org/conda-forge/noarch/bqplot-0.12.45-pyhe01879c_0.conda
+ sha256: 2248c46491d6cc11692d7fbc5bb61c1b6177fd50654a296c13e31434e30b8994
+ md5: 3cedf673ae6d0e272807bcb9929df40e
+ depends:
+ - ipywidgets >=7.6.0,<9
+ - numpy >=1.10.4
+ - pandas >=1.0.0,<3.0.0
+ - python >=3.9
+ - traitlets >=4.3.0,<6.0
+ - traittypes >=0.0.6
+ - python
+ license: Apache-2.0
license_family: APACHE
- size: 10708500
- timestamp: 1761128145163
-- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
- noarch: generic
- sha256: 8e2a33b36d36820698840bf0c1ed50e5dd4bdeaa434c7b4f5e13d421225b0414
- md5: ff3061d315c4a988fa1c29c543800780
- depends:
- - python >=3.14,<3.15.0a0
- - python_abi * *_cp314
- license: Python-2.0
- purls: []
- size: 49003
- timestamp: 1761175499490
-- conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.17-py314h8c728da_0.conda
- sha256: 982838c857d600ca57ec6e46a6b71540575d8a054a3ebc627dd03b3d3c4f578b
- md5: c9367a2d02bab08fa4eb887349f0ca4a
+ size: 966021
+ timestamp: 1756830785696
+- conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.2.0-h41a2e66_0.conda
+ sha256: 33239a07f7685917cac25646dd33798ee93e61f83504a0c938d86c507e05d7c9
+ md5: 4ddfd44e473c676cb8e80548ba4aa704
depends:
- - python
- __glibc >=2.17,<3.0.a0
+ - brotli-bin 1.2.0 hf2c8021_0
+ - libbrotlidec 1.2.0 hd53d788_0
+ - libbrotlienc 1.2.0 h02bd7ab_0
- libgcc >=14
- - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ size: 19964
+ timestamp: 1761592234411
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.2.0-hec30622_0.conda
+ sha256: ad200c2c7a59e65a1534ec5a6954163b5d185b1abf935f46aca189d80d7578af
+ md5: 5005bf1c06def246408b73d65f0d3de9
+ depends:
+ - brotli-bin 1.2.0 hf3d421d_0
+ - libbrotlidec 1.2.0 hb159aeb_0
+ - libbrotlienc 1.2.0 ha5a240b_0
- libgcc >=14
- - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/debugpy?source=hash-mapping
- size: 2888250
- timestamp: 1758162035320
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.17-py314h3642cf7_0.conda
- sha256: fb43e3a3cea02a60842bece78d672019d375ad7945efeb1a4a74c9e21d5af7bc
- md5: c515777bac2a8d4f6d9c55dc52aef24d
+ size: 20090
+ timestamp: 1761592547321
+- conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.2.0-hb27157a_0.conda
+ sha256: 26dca4303344a642ae570e13464044e2bfc764a6f57de2c986adf8db3bd2ca0e
+ md5: 01fd35c4b0b4641d3174d5ebb6065d96
depends:
- - python
- - libstdcxx >=14
- - libgcc >=14
- - python 3.14.* *_cp314
- - libgcc >=14
- - python_abi 3.14.* *_cp314
+ - __osx >=10.13
+ - brotli-bin 1.2.0 h5c1846c_0
+ - libbrotlidec 1.2.0 h660c9da_0
+ - libbrotlienc 1.2.0 h2338291_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/debugpy?source=hash-mapping
- size: 2853963
- timestamp: 1758162063991
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/debugpy-1.8.17-py314h3363676_0.conda
- sha256: 4824446d20d2e2b3121d71ffe5f5d3b5a9648a899efcd0cd4720b64c7ee4e795
- md5: e07ebc66338e7e68060ff8106775a0fe
+ size: 20150
+ timestamp: 1761593000561
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.2.0-hca488c2_0.conda
+ sha256: 4110b621340f459ee87619803e6e1c410753c65f3f9884c023c537d804fa9e5d
+ md5: 3673e631cdf1fa81c9f5cc3da763a07e
depends:
- - python
- - libstdcxx >=14
+ - __osx >=11.0
+ - brotli-bin 1.2.0 hce9b42c_0
+ - libbrotlidec 1.2.0 h95a88de_0
+ - libbrotlienc 1.2.0 hb1b9735_0
+ license: MIT
+ license_family: MIT
+ size: 20163
+ timestamp: 1761592530579
+- conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.2.0-hf2c8021_0.conda
+ sha256: b4aa87fa7658c79e9334c607ad399a964ff75ec8241b9b744b8dc8fc84b55dd0
+ md5: 5304333319a6124a2737d9f128cbc4ed
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlidec 1.2.0 hd53d788_0
+ - libbrotlienc 1.2.0 h02bd7ab_0
- libgcc >=14
- - python 3.14.* *_cp314
- - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/debugpy?source=hash-mapping
- size: 2878641
- timestamp: 1758162084056
-- conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.17-py314h93774dc_0.conda
- sha256: 82a9862d6da6e6af38ecdee6f0ed7a66a17c16e6227471509ec5e18a84d5a7d4
- md5: e4570bb5cd55142c4cf5be8d60a02a6a
+ size: 20993
+ timestamp: 1761592224816
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.2.0-hf3d421d_0.conda
+ sha256: 17bfcbe7a211eee87abf373aefcea84c2ab3f41d03f1957c232bc0e093751e8d
+ md5: c43264ebd8b93281d09d3a9ad145f753
+ depends:
+ - libbrotlidec 1.2.0 hb159aeb_0
+ - libbrotlienc 1.2.0 ha5a240b_0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 20707
+ timestamp: 1761592532875
+- conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.2.0-h5c1846c_0.conda
+ sha256: 446098332cd470b88c79cbe8f7df13e5e1d28aa2f7043d2bf255ee66e61887b9
+ md5: e3b4a50ddfcda3835379b10c5b0c951b
depends:
- - python
- __osx >=10.13
- - libcxx >=19
- - python_abi 3.14.* *_cp314
+ - libbrotlidec 1.2.0 h660c9da_0
+ - libbrotlienc 1.2.0 h2338291_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/debugpy?source=hash-mapping
- size: 2787167
- timestamp: 1758162082638
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.17-py314hac9ea21_0.conda
- sha256: 6040b82e0467911c32f572129816788d4f227a29778f7d3b788d8ef17d438860
- md5: 321942ce21d3c63cf061a9b83fc03b76
+ size: 18541
+ timestamp: 1761592972914
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.2.0-hce9b42c_0.conda
+ sha256: d07336bc9ce8171af8f15ab428bcb4193c6252ad519337fece62185a3367bb65
+ md5: 2695046c2e5875fee19438aa752924a5
depends:
- - python
- - python 3.14.* *_cp314
- __osx >=11.0
- - libcxx >=19
- - python_abi 3.14.* *_cp314
+ - libbrotlidec 1.2.0 h95a88de_0
+ - libbrotlienc 1.2.0 hb1b9735_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/debugpy?source=hash-mapping
- size: 2778389
- timestamp: 1758162078942
-- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
- sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017
- md5: 9ce473d1d1be1cc3810856a48b3fab32
- depends:
- - python >=3.9
- license: BSD-2-Clause
- license_family: BSD
- purls:
- - pkg:pypi/decorator?source=hash-mapping
- size: 14129
- timestamp: 1740385067843
-- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
- sha256: 6d977f0b2fc24fee21a9554389ab83070db341af6d6f09285360b2e09ef8b26e
- md5: 003b8ba0a94e2f1e117d0bd46aebc901
- depends:
- - python >=3.9
- license: Apache-2.0
- license_family: APACHE
- purls:
- - pkg:pypi/distlib?source=hash-mapping
- size: 275642
- timestamp: 1752823081585
-- conda: https://conda.anaconda.org/conda-forge/linux-64/editdistance-s-1.0.0-py314h9891dd4_7.conda
- sha256: 8ec13a26f553445041138bc7d0cfd3909f9059533adcecd3a1f5f29f42f46831
- md5: 2111df2165d475f89934dbceeb61110c
+ size: 18543
+ timestamp: 1761592514862
+- conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py314hdfeb8a1_0.conda
+ sha256: 9f6d339fb78b647be35e3564dac453d8d2f1b865ba72fb961eaac41061368699
+ md5: 3ef9d2a701760467b9db2338b6cd926f
depends:
- __glibc >=2.17,<3.0.a0
- - cffi >=1
- - libgcc >=14
- - libstdcxx >=14
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/editdistance-s?source=hash-mapping
- size: 22702
- timestamp: 1756847363595
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/editdistance-s-1.0.0-py314hd7d8586_7.conda
- sha256: 010f397d49313c4d4dafd46db6121d286b064e56b89ae5478073499da05302bc
- md5: 5228bc0fc42545600412bf192879321d
- depends:
- - cffi >=1
- libgcc >=14
- libstdcxx >=14
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
+ constrains:
+ - libbrotlicommon 1.2.0 h09219d5_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/editdistance-s?source=hash-mapping
- size: 23157
- timestamp: 1756847299136
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/editdistance-s-1.0.0-py314h4fd8a46_7.conda
- sha256: 9887e5a1a197d1653bc29e726897c7f015055c54277f1c9484ae7f969842996e
- md5: bcf2fc64285294429c93a803dda492cc
+ size: 368319
+ timestamp: 1761592337171
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.2.0-py314hba27ebb_0.conda
+ sha256: 0917b13ad84d1e1d14d62db7a53fe33bee904c80992ff4e6a70ccd19f63ad539
+ md5: 1a19e9807b73055704afb9c70ea208ac
depends:
- - cffi >=1
- libgcc >=14
- libstdcxx >=14
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
+ constrains:
+ - libbrotlicommon 1.2.0 hd4db518_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/editdistance-s?source=hash-mapping
- size: 24280
- timestamp: 1756847329746
-- conda: https://conda.anaconda.org/conda-forge/osx-64/editdistance-s-1.0.0-py314h00ed6fe_7.conda
- sha256: 15c1f9d6f4151dba5c17899715c9ab4e3a9ee06730b613f21606a83b99d3f9ea
- md5: 675214d5137a0339d81b0194005ef8cb
+ size: 373231
+ timestamp: 1761592948484
+- conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314hd4d9bf7_0.conda
+ sha256: cb5a9558123eade3beda7770a5a373a941928b65ac39dcab2b1c7c92c2556a85
+ md5: 37525e28a91deef6c47690878d7338b6
depends:
- __osx >=10.13
- - cffi >=1
- libcxx >=19
- - python >=3.14.0rc2,<3.15.0a0
+ - python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
+ constrains:
+ - libbrotlicommon 1.2.0 h105ed1c_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/editdistance-s?source=hash-mapping
- size: 19354
- timestamp: 1756847494476
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/editdistance-s-1.0.0-py314h784bc60_7.conda
- sha256: 1923c1edda78abfef6b6f91de326c2d945ba475e15e9889d70bdcab93e75b04c
- md5: 77a8cceedc15a96be95723ff5b16fa17
+ size: 389830
+ timestamp: 1761593069187
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h95ef04c_0.conda
+ sha256: 231c3e2d0a2635f51e4e0fd56ba0def25b21a7c484d31e863f261823af5351e3
+ md5: 5f71e1aa8d7982bda0a87b6bfd5c71fd
depends:
- __osx >=11.0
- - cffi >=1
- libcxx >=19
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
+ constrains:
+ - libbrotlicommon 1.2.0 h87ba0bc_0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/editdistance-s?source=hash-mapping
- size: 19552
- timestamp: 1756847662177
-- conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h171cf75_1.conda
- sha256: fee3738c2431c13f4930778e9d7daca9328e7e2f2a38928cf6ca5a0daa86474a
- md5: ea2db216eae84bc83b0b2961f38f5c0d
+ size: 359535
+ timestamp: 1761592749203
+- conda: https://conda.anaconda.org/conda-forge/linux-64/brunsli-0.1-hd1e3526_2.conda
+ sha256: b4831ac06bb65561342cedf3d219cf9b096f20b8d62cda74f0177dffed79d4d5
+ md5: 5948f4fead433c6e5c46444dbfb01162
depends:
- - libstdcxx >=14
- - libgcc >=14
- __glibc >=2.17,<3.0.a0
- license: MPL-2.0
- license_family: MOZILLA
- size: 1169164
- timestamp: 1759819831835
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/eigen-3.4.0-hdc560ac_1.conda
- sha256: d8d26d905b3f3d2103966620b40cac3bed0899a0d349bfb0bcb1a9b9d19cf7bf
- md5: 2e0c5b1d2aefb0a7ac54b087649913a5
- depends:
- - libstdcxx >=14
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
- libgcc >=14
- license: MPL-2.0
- license_family: MOZILLA
- size: 1169015
- timestamp: 1759820070166
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/eigen-3.4.0-h7cb76f5_1.conda
- sha256: c1ee1f0d3f617a546dc36248b04295dad4cf26fe953856ba4094371f960402de
- md5: 40f434f0cdbcbd1c7ea9afb3bf8c49e7
- depends:
- libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ size: 168501
+ timestamp: 1761758949420
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brunsli-0.1-h099923c_2.conda
+ sha256: 2adb8fea6c367ff4e741aa74d92f310146530cbca491f31fe0fac331c8f93c47
+ md5: 32d695fc8f785112a635b6de767a3e15
+ depends:
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
- libgcc >=14
- license: MPL-2.0
- license_family: MOZILLA
- size: 1169153
- timestamp: 1759819955789
-- conda: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-hfc0b2d5_1.conda
- sha256: 929bf0e15495bff2a08dfc372860c10efd829b9d66a7441bbfd565b6b8c8cf5a
- md5: 7e58d0dcc1f43ed4baf6d3156630cc68
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ size: 166228
+ timestamp: 1761758903191
+- conda: https://conda.anaconda.org/conda-forge/osx-64/brunsli-0.1-ha00ef93_2.conda
+ sha256: 8267fa351967ffb2587ea58f93226abe57d68a020758cab56591dc7fa4eb455d
+ md5: 44c70b2db8d9b7be20a86bd40a2aa9e9
depends:
- __osx >=10.13
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
- libcxx >=19
- license: MPL-2.0
- license_family: MOZILLA
- size: 1169455
- timestamp: 1759819901548
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h49c215f_1.conda
- sha256: 045b7e0994cc5740984551a79a56f7ff905a8deebcbdc02d6a28ad3ccae0abce
- md5: cceeb206b14c099ff52dc5a67b096904
+ license: MIT
+ license_family: MIT
+ size: 147378
+ timestamp: 1761759461091
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brunsli-0.1-he0dfb12_2.conda
+ sha256: f32d7c6285601ac3f6baf0715b225fd017702cf24260c6f7f14f7b6e721d92bc
+ md5: 4cfe5258439d88ce2ef0b159007ee067
depends:
- __osx >=11.0
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
- libcxx >=19
- license: MPL-2.0
- license_family: MOZILLA
- size: 1169935
- timestamp: 1759819925766
-- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
- sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca
- md5: 72e42d28960d875c7654614f8b50939a
- depends:
- - python >=3.9
- - typing_extensions >=4.6.0
- license: MIT and PSF-2.0
- purls:
- - pkg:pypi/exceptiongroup?source=hash-mapping
- size: 21284
- timestamp: 1746947398083
-- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
- sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad
- md5: ff9efb7f7469aed3c4a8106ffa29593c
- depends:
- - python >=3.10
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/executing?source=hash-mapping
- size: 30753
- timestamp: 1756729456476
-- conda: .
+ size: 141089
+ timestamp: 1761759272675
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5
+ md5: 51a19bba1b8ebfb60df25cde030b7ebc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 260341
+ timestamp: 1757437258798
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_8.conda
+ sha256: d2a296aa0b5f38ed9c264def6cf775c0ccb0f110ae156fcde322f3eccebf2e01
+ md5: 2921ac0b541bf37c69e66bd6d9a43bca
+ depends:
+ - libgcc >=14
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 192536
+ timestamp: 1757437302703
+- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda
+ sha256: 8f50b58efb29c710f3cecf2027a8d7325ba769ab10c746eff75cea3ac050b10c
+ md5: 97c4b3bd8a90722104798175a1bdddbf
+ depends:
+ - __osx >=10.13
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 132607
+ timestamp: 1757437730085
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_8.conda
+ sha256: b456200636bd5fecb2bec63f7e0985ad2097cf1b83d60ce0b6968dffa6d02aa1
+ md5: 58fd217444c2a5701a44244faf518206
+ depends:
+ - __osx >=11.0
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 125061
+ timestamp: 1757437486465
+- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb
+ md5: f7f0d6cc2dc986d42ac2689ec88192be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 206884
+ timestamp: 1744127994291
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda
+ sha256: ccae98c665d86723993d4cb0b456bd23804af5b0645052c09a31c9634eebc8df
+ md5: 5deaa903d46d62a1f8077ad359c3062e
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 215950
+ timestamp: 1744127972012
+- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda
+ sha256: b37f5dacfe1c59e0a207c1d65489b760dff9ddb97b8df7126ceda01692ba6e97
+ md5: eafe5d9f1a8c514afe41e6e833f66dfd
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 184824
+ timestamp: 1744128064511
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda
+ sha256: b4bb55d0806e41ffef94d0e3f3c97531f322b3cb0ca1f7cdf8e47f62538b7a2b
+ md5: f8cd1beb98240c7edb1a95883360ccfa
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 179696
+ timestamp: 1744128058734
+- conda: https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.22.0-h4cfbee9_0.conda
+ sha256: c558bce3c6d1707528a9b54b1af321e3d6968e4db3e5addc9dcb906422026490
+ md5: bede98a38485d588b3ec7e4ba2e46532
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - lz4-c >=1.10.0,<1.11.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 349963
+ timestamp: 1761677903850
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-blosc2-2.22.0-hce0b784_0.conda
+ sha256: 108cf603261eaa0a8e27d02f062938ac8b1ce42ef4be7ccb4efd836925a26713
+ md5: 0c09779263dc006e1fc475877fc1dcdf
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - lz4-c >=1.10.0,<1.11.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 316504
+ timestamp: 1761677609892
+- conda: https://conda.anaconda.org/conda-forge/osx-64/c-blosc2-2.22.0-h415348b_0.conda
+ sha256: 6f046f72e34b5d4bc1bf32139e1b4d969e4ed30a6503fbb1a03df3618c60d5aa
+ md5: d32d24d747033adfbf5d80a6a05b25d9
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - lz4-c >=1.10.0,<1.11.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 286926
+ timestamp: 1761678755386
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-blosc2-2.22.0-hb5916c8_0.conda
+ sha256: f21adb460fca9b99bb55072a1e2ba114debbaf74d6e0411433ac8e3759fe7fbc
+ md5: b608ba4ed02f5b56623de713fd70c151
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - lz4-c >=1.10.0,<1.11.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 253964
+ timestamp: 1761677915407
+- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.11.12-hbd8a1cb_0.conda
+ sha256: b986ba796d42c9d3265602bc038f6f5264095702dd546c14bc684e60c385e773
+ md5: f0991f0f84902f6b6009b4d2350a83aa
+ depends:
+ - __unix
+ license: ISC
+ size: 152432
+ timestamp: 1762967197890
+- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ noarch: python
+ 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
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ sha256: 3bd6a391ad60e471de76c0e9db34986c4b5058587fbf2efa5a7f54645e28c2c7
+ md5: 09262e66b19567aff4f592fb53b28760
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.44.2,<1.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.5,<2.0a0
+ - xorg-libx11 >=1.8.11,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ license: LGPL-2.1-only or MPL-1.1
+ size: 978114
+ timestamp: 1741554591855
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda
+ sha256: 37cfff940d2d02259afdab75eb2dbac42cf830adadee78d3733d160a1de2cc66
+ md5: cd55953a67ec727db5dc32b167201aa6
+ depends:
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.44.2,<1.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.5,<2.0a0
+ - xorg-libx11 >=1.8.11,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ license: LGPL-2.1-only or MPL-1.1
+ size: 966667
+ timestamp: 1741554768968
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda
+ sha256: d4297c3a9bcff9add3c5a46c6e793b88567354828bcfdb6fc9f6b1ab34aa4913
+ md5: 32403b4ef529a2018e4d8c4f2a719f16
+ depends:
+ - __osx >=10.13
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=18
+ - libexpat >=2.6.4,<3.0a0
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.44.2,<1.0a0
+ license: LGPL-2.1-only or MPL-1.1
+ size: 893252
+ timestamp: 1741554808521
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda
+ sha256: 00439d69bdd94eaf51656fdf479e0c853278439d22ae151cabf40eb17399d95f
+ md5: 38f6df8bc8c668417b904369a01ba2e2
+ depends:
+ - __osx >=11.0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=18
+ - libexpat >=2.6.4,<3.0a0
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.44.2,<1.0a0
+ license: LGPL-2.1-only or MPL-1.1
+ size: 896173
+ timestamp: 1741554795915
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1024.3-llvm21_1_h81d60ea_9.conda
+ sha256: 1ac7b50b9319668b7d36673eda917a233dd2a64dd1cd020460312a9b7bf3d704
+ md5: 813a8ed4a0bcd35f710926f3c9bfe406
+ depends:
+ - __osx >=10.13
+ - ld64_osx-64 >=955.13,<955.14.0a0
+ - libcxx
+ - libllvm21 >=21.1.4,<21.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - llvm-tools 21.1.*
+ - sigtool
+ constrains:
+ - clang 21.1.*
+ - cctools 1024.3.*
+ - ld64 955.13.*
+ license: APSL-2.0
+ license_family: Other
+ size: 742245
+ timestamp: 1762108803528
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1024.3-llvm21_1_haddd2d4_9.conda
+ sha256: 838fa70bacbb83edf267257423cd88840c88a41b193bf508ed026d13262b1083
+ md5: 06aad15564ba3f9e7f1b08a6f539b714
+ depends:
+ - __osx >=11.0
+ - ld64_osx-arm64 >=955.13,<955.14.0a0
+ - libcxx
+ - libllvm21 >=21.1.4,<21.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - llvm-tools 21.1.*
+ - sigtool
+ constrains:
+ - clang 21.1.*
+ - ld64 955.13.*
+ - cctools 1024.3.*
+ license: APSL-2.0
+ license_family: Other
+ size: 744412
+ timestamp: 1762108264680
+- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.11.12-pyhd8ed1ab_0.conda
+ sha256: 083a2bdad892ccf02b352ecab38ee86c3e610ba9a4b11b073ea769d55a115d32
+ md5: 96a02a5c1a65470a7e4eedb644c872fd
+ depends:
+ - python >=3.10
+ license: ISC
+ size: 157131
+ timestamp: 1762976260320
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda
+ sha256: c6339858a0aaf5d939e00d345c98b99e4558f285942b27232ac098ad17ac7f8e
+ md5: cf45f4278afd6f4e6d03eda0f435d527
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - pycparser
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 300271
+ timestamp: 1761203085220
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-2.0.0-py314h0bd77cf_1.conda
+ sha256: 728e55b32bf538e792010308fbe55d26d02903ddc295fbe101167903a123dd6f
+ md5: f333c475896dbc8b15efd8f7c61154c7
+ depends:
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - pycparser
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 318357
+ timestamp: 1761203973223
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda
+ sha256: e2c58cc2451cc96db2a3c8ec34e18889878db1e95cc3e32c85e737e02a7916fb
+ md5: 71c2caaa13f50fe0ebad0f961aee8073
+ depends:
+ - __osx >=10.13
+ - libffi >=3.5.2,<3.6.0a0
+ - pycparser
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 293633
+ timestamp: 1761203106369
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda
+ sha256: 5b5ee5de01eb4e4fd2576add5ec9edfc654fbaf9293e7b7ad2f893a67780aa98
+ md5: 10dd19e4c797b8f8bdb1ec1fbb6821d7
+ depends:
+ - __osx >=11.0
+ - libffi >=3.5.2,<3.6.0a0
+ - pycparser
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 292983
+ timestamp: 1761203354051
+- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda
+ sha256: d5696636733b3c301054b948cdd793f118efacce361d9bd4afb57d5980a9064f
+ md5: 57df494053e17dce2ac3a0b33e1b2a2e
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 12973
+ timestamp: 1734267180483
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py314hc02f841_2.conda
+ sha256: d7dcf54f34061cb55616db20388a79785147197c48dc06d31d63a5c96a6ce287
+ md5: 0e5b8775024cf05612e5aecf28ca74b9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 237643
+ timestamp: 1756511913214
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cftime-1.6.4-py314hc2f71db_2.conda
+ sha256: 7990bd7258a922ffd1060c89b9d2c70372cbc787cf39374208f5171da92475c2
+ md5: 85b6a9e029b42722a03946d93192a424
+ depends:
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 220731
+ timestamp: 1756511980155
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.4-py314ha6d4590_2.conda
+ sha256: 33c638f0c96fb82ffdeb58bac03a64d7c7cf7e3ca5892e90dabf4b4835429571
+ md5: 5447e7d9027faa4ba117fac7cd269be0
+ depends:
+ - __osx >=10.13
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 198385
+ timestamp: 1756512181174
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.4-py314h943c2e0_2.conda
+ sha256: b77d66d44b49c876aa513b00e89988e244257eea7baa2fde46d6053f09997f90
+ md5: 960fcb15ed404fbb18aaaa90b7c124f1
+ depends:
+ - __osx >=11.0
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 193180
+ timestamp: 1756512172179
+- conda: https://conda.anaconda.org/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda
+ sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd
+ md5: 4336bd67920dd504cd8c6761d6a99645
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 150272
+ timestamp: 1684262827894
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/charls-2.4.2-h2f0025b_0.conda
+ sha256: dbfb4770b87f866fda0a3f681c5e56a90401254ac4695e642d5627dc1e5f2107
+ md5: a7adb8f6b07aafaa651e450472331012
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 147189
+ timestamp: 1684262838457
+- conda: https://conda.anaconda.org/conda-forge/osx-64/charls-2.4.2-he965462_0.conda
+ sha256: 5167aafc0bcc3849373dd8afb448cc387078210236e597f2ef8d2b1fe3d0b1a2
+ md5: c267b3955138953f8ca4cb4d1f4f2d84
+ depends:
+ - libcxx >=15.0.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 138062
+ timestamp: 1684263362836
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/charls-2.4.2-h13dd4ca_0.conda
+ sha256: b9f79954e6d37ad59016b434abfdd096a75ff08c6de14e5198bcea497a10fae5
+ md5: 6faf3cf8df25572c7f70138a45f37363
+ depends:
+ - libcxx >=15.0.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 116255
+ timestamp: 1684263271583
+- conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda
+ sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59
+ md5: a22d1fd9bf98827e280a02875d9a007a
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 50965
+ timestamp: 1760437331772
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21.1.4-default_h1323312_0.conda
+ sha256: de1305fe6e720c1b147853c1b2b8bc980ce06ba1612ddf8f284dfc6b45695e47
+ md5: 11482581de60b75711dc5e4a64dbe43c
+ depends:
+ - clang-21 21.1.4 default_h9f74b92_0
+ - ld64
+ - ld64_osx-64 * llvm21_1_*
+ - llvm-openmp >=21.1.4
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 25029
+ timestamp: 1761214403624
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21.1.5-default_hf9bcbb7_1.conda
+ sha256: 45a182e084ee0c46ea9bb7a37627c0e805f9ef1bd2b459c6cc1b0dff78f698f4
+ md5: 4359500aab0784255d3783f0b28632ea
+ depends:
+ - clang-21 21.1.5 default_h489deba_1
+ - ld64
+ - ld64_osx-arm64 * llvm21_1_*
+ - llvm-openmp >=21.1.5
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 25005
+ timestamp: 1762469913716
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21-21.1.4-default_h9f74b92_0.conda
+ sha256: d39242c6dbd5d6a19efae69f0c58ee620a34561c702346bc44a54d91fb0c6648
+ md5: fc5234c7d1cbcfe0397bce50655db3cd
+ depends:
+ - __osx >=10.13
+ - compiler-rt21 21.1.4.*
+ - libclang-cpp21.1 21.1.4 default_hc369343_0
+ - libcxx >=21.1.4
+ - libllvm21 >=21.1.4,<21.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 11410136
+ timestamp: 1761214192230
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-21-21.1.5-default_h489deba_1.conda
+ sha256: 85bdcaec99561585b0d9e992f0867179b9fda7da57e904cad7f90b82fc164154
+ md5: 8ddf6c9d2cbdf00bfdadbc46c17e6fc9
+ depends:
+ - __osx >=11.0
+ - compiler-rt21 21.1.5.*
+ - libclang-cpp21.1 21.1.5 default_h73dfc95_1
+ - libcxx >=21.1.5
+ - libllvm21 >=21.1.5,<21.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 816321
+ timestamp: 1762469720169
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-21.1.4-h1e5c9a4_25.conda
+ sha256: a8a352015a916b243603131b6fe747cf71aef565fa0be59d6c1ca483c3eacdd2
+ md5: 04ec680d098fde1ca3bd628d91af8b7b
+ depends:
+ - cctools_osx-64
+ - clang 21.1.4.*
+ - compiler-rt 21.1.4.*
+ - ld64_osx-64
+ - llvm-tools 21.1.4.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18235
+ timestamp: 1761229573896
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-21.1.5-h088ae74_25.conda
+ sha256: 6ddca2bba9c59ab13fba02ffb4d06ec49f3ce7bb209efd675e9630a847963559
+ md5: abf68fc4433926e5a7f92ec57401dc48
+ depends:
+ - cctools_osx-arm64
+ - clang 21.1.5.*
+ - compiler-rt 21.1.5.*
+ - ld64_osx-arm64
+ - llvm-tools 21.1.5.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18435
+ timestamp: 1762349818934
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-21.1.4-h7e5c614_25.conda
+ sha256: 78bab5a59d6d76911234dfec18de32f76747df1638d6d756b6d986260a009280
+ md5: a3316b4c45e8e551536f5a7be1ffbe78
+ depends:
+ - clang_impl_osx-64 21.1.4 h1e5c9a4_25
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21542
+ timestamp: 1761229579892
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-21.1.5-h07b0088_25.conda
+ sha256: 615fa898c7e8e235fecbf03f74a8f4ab5a0fe36068aa2a1e284f7c925b7f6a20
+ md5: 6596406d2c529e9cbaa129340270ba2d
+ depends:
+ - clang_impl_osx-arm64 21.1.5 h088ae74_25
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21490
+ timestamp: 1762349823188
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-21.1.4-default_h1c12a56_0.conda
+ sha256: 3f74ae04783aa96d6e42f19deb9388b320f1be1db6ab157cac906d22ac72afb0
+ md5: 4e534054ddff35f5f0a1e7090dd78c2f
+ depends:
+ - clang 21.1.4 default_h1323312_0
+ - libcxx-devel 21.1.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 25109
+ timestamp: 1761214434050
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-21.1.5-default_h36137df_1.conda
+ sha256: f0216b34675e9978846aaaa53f571eacc5545705b43db2668797de46df875005
+ md5: 35dc3a75d7cfff858a1135e27c316fbf
+ depends:
+ - clang 21.1.5 default_hf9bcbb7_1
+ - libcxx-devel 21.1.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 25072
+ timestamp: 1762469930882
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-21.1.4-h3bacc78_25.conda
+ sha256: a82965605fe5045e5b44a7f80797da06794ab021204cb3144b6dc8ab4220b52b
+ md5: df942bf0890ed1c69a3b039981605f7c
+ depends:
+ - clang_osx-64 21.1.4 h7e5c614_25
+ - clangxx 21.1.4.*
+ - libcxx >=21
+ - libllvm21 >=21.1.4,<21.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18340
+ timestamp: 1761229615
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-21.1.5-h25e7f35_25.conda
+ sha256: 689221af3337d125c610aa7bb6e25d7e687bd7f17dde548ccbc0e6b3db2ad517
+ md5: 35415aba71ac31e9ced08bb88601a52b
+ depends:
+ - clang_osx-arm64 21.1.5 h07b0088_25
+ - clangxx 21.1.5.*
+ - libcxx >=21
+ - libllvm21 >=21.1.5,<21.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18483
+ timestamp: 1762349860858
+- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-21.1.4-h7e5c614_25.conda
+ sha256: f55c0e08fc556c3545fe70503910ff03a8636fb3b6debc525807dafa298f77b8
+ md5: da04599e9ff11d63f0b20684c0c373e0
+ depends:
+ - clang_osx-64 21.1.4 h7e5c614_25
+ - clangxx_impl_osx-64 21.1.4 h3bacc78_25
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 19970
+ timestamp: 1761229619346
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-21.1.5-h07b0088_25.conda
+ sha256: a3874e41bc582e906b3d15fb0baf69f91574b2dfea4deb37ceda3a82b0fcc188
+ md5: 1cf9e1fcfc4b10838fa103cd9b079a03
+ depends:
+ - clang_osx-arm64 21.1.5 h07b0088_25
+ - clangxx_impl_osx-arm64 21.1.5 h25e7f35_25
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 19860
+ timestamp: 1762349865384
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.6.0-h54a6638_0.conda
+ sha256: 324097cd9dde3a4623b0275655ea34641481daa5c1274f9ab994e8a2e6aa26e6
+ md5: ddf9fed4661bace13f33f08fe38a5f45
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 98102
+ timestamp: 1760975548381
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cli11-2.6.0-h7ac5ae9_0.conda
+ sha256: 534f236e95bb1d5db2c314ce1bac982ef8f4e14abab2ea2c7ee2a0043dbc929d
+ md5: a19699b00ac5ffa580ff33e5d80232f2
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 97923
+ timestamp: 1760975711699
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cli11-2.6.0-h53ec75d_0.conda
+ sha256: 767db325cee8b8efa6313a81c7aae4d3d2c47a97a628c9764f69f5aa880f98ca
+ md5: a3bd5a7b0eefa0715df267e3b3c74382
+ depends:
+ - libcxx >=19
+ - __osx >=10.13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 98408
+ timestamp: 1760975585907
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cli11-2.6.0-h248ca61_0.conda
+ sha256: 54a21eed5632823c5784e34ece39fc0c2ccf1bcb9a8b9c9094d7cdba97a03ead
+ md5: fcaa853d7d7024fe3feb8083f473dddf
+ depends:
+ - libcxx >=19
+ - __osx >=11.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 98734
+ timestamp: 1760975649914
+- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.3.0-pyh707e725_0.conda
+ sha256: c6567ebc27c4c071a353acaf93eb82bb6d9a6961e40692a359045a89a61d02c0
+ md5: e76c4ba9e1837847679421b8d549b784
+ depends:
+ - __unix
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 91622
+ timestamp: 1758270534287
+- conda: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhd8ed1ab_0.conda
+ sha256: 57050bd1bbac9e4be3728da4d33dee2168884d61d0ec51cd2ac72a1b34e11fc3
+ md5: fcac5929097ba1f2a0e5b6ecaa13b253
+ depends:
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 26621
+ timestamp: 1762167702602
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.1.2-hc85cc9f_0.conda
+ sha256: 2176c4bce9f602cee0efbae86283a1a75733921ecc0916c8d2f49df2aee1a0f0
+ md5: 3d5d0a07f07ba1fc43f52b5e33e3cd7c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libgcc >=14
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=14
+ - libuv >=1.51.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - rhash >=1.4.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21290609
+ timestamp: 1759261133874
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-4.1.2-hc9d863e_0.conda
+ sha256: 7b55dfccde7fa4a16572648302330f073b124312228cabade745ff455ebcfe64
+ md5: 92b5d21ff60ab639abdb13e195a99ba7
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libgcc >=14
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=14
+ - libuv >=1.51.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - rhash >=1.4.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 20534912
+ timestamp: 1759261475840
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-4.1.2-h29fc008_0.conda
+ sha256: 29a0c428f0fc2c9146304bb390776d0cfb04093faeda2f6f2fe85099caf102f7
+ md5: c8be0586640806d35e10ce7b95b74c9a
+ depends:
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libexpat >=2.7.1,<3.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libuv >=1.51.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - rhash >=1.4.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18050238
+ timestamp: 1759262614942
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-4.1.2-h54ad630_0.conda
+ sha256: 717322060752f6c0eefe475ea4fb0b52597db5a87a20dcd573121df414f8fbef
+ md5: 1c3ef82a4e1549022f2f3db6880d7712
+ depends:
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libexpat >=2.7.1,<3.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libuv >=1.51.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - rhash >=1.4.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16935599
+ timestamp: 1759263309414
+- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
+ md5: 962b9857ee8e7018c22f2776ffa0b2d7
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27011
+ timestamp: 1733218222191
+- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda
+ sha256: 576a44729314ad9e4e5ebe055fbf48beb8116b60e58f9070278985b2b634f212
+ md5: 2da13f2b299d8e1995bafbbe9689a2f7
+ depends:
+ - python >=3.9
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 14690
+ timestamp: 1753453984907
+- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-21.1.4-h694c41f_0.conda
+ sha256: cb04fb467a85959f44e435dfe1a2c26dca8235a667f9cb16e0a6078b6c1bae69
+ md5: 5036bdfeea83efa00c2a38a0cef6b210
+ depends:
+ - compiler-rt21 21.1.4 he914875_0
+ constrains:
+ - clang 21.1.4
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 15965
+ timestamp: 1761127428727
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-21.1.5-hce30654_0.conda
+ sha256: 45356041170c66d1ba236f3e937a5fd46cd33eea9af4177619b7e50e2bb68643
+ md5: 97df79453be31e34c989a3d3b14642b0
+ depends:
+ - compiler-rt21 21.1.5 h855ad52_0
+ constrains:
+ - clang 21.1.5
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 15991
+ timestamp: 1762317713077
+- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt21-21.1.4-he914875_0.conda
+ sha256: c67ff47ceac3d6845952d892300e6023250f9f1deb0f5e6127a5e8ede176a2b2
+ md5: 8aa7b4a3f1b2208d258989bc321eddf5
+ depends:
+ - __osx >=10.13
+ - compiler-rt21_osx-64 21.1.4.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 98455
+ timestamp: 1761127423840
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt21-21.1.5-h855ad52_0.conda
+ sha256: ce034e28aa5f5daf5ddb0e022d8d8e1b411c5879e0c1d73df7ddd36aacaa11b7
+ md5: 962c7632a4152732fb081155d9cf4fda
+ depends:
+ - __osx >=11.0
+ - compiler-rt21_osx-arm64 21.1.5.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 98495
+ timestamp: 1762317706912
+- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-64-21.1.4-he0f92a2_0.conda
+ sha256: dfaaaf6ac8f8d8da15f79946da841ae76c25992bef2cd701fef004066aed5119
+ md5: 70e7cbe903f0b56a106a63835f68d24c
+ constrains:
+ - compiler-rt >=9.0.1
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 10834007
+ timestamp: 1761127367729
+- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-arm64-21.1.5-h2514db7_0.conda
+ sha256: e61c50c1694c7dfc4ea8ae0675be95acf096e5dd4054f819f1133e43e5ab7c60
+ md5: e0fdd206ce5798436e10851e8caf30a3
+ constrains:
+ - compiler-rt >=9.0.1
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 10598290
+ timestamp: 1762317641684
+- conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.3-py314h9891dd4_3.conda
+ sha256: 54c79736927c787e535db184bb7f3bce13217cb7d755c50666cfc0da7c6c86f3
+ md5: 72d57382d0f63c20a16b1d514fcde6ff
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - numpy >=1.25
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 299226
+ timestamp: 1762525516589
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.3.3-py314hd7d8586_3.conda
+ sha256: 81ac321ca8ad04ddc4e9dffbc1c7482a53aa6a1cedd56ab55ddba79cbc623282
+ md5: 3c353525bd4dfd46717777c0568ca251
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - numpy >=1.25
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 311017
+ timestamp: 1762525613641
+- conda: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.3-py314h00ed6fe_3.conda
+ sha256: 1ffeead3cedb5990d17c077b0943d6ded6b5d8c148becb01caaaa7920be122a4
+ md5: 761aa19f97a0dd5dedb9a0a6003707c1
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - numpy >=1.25
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 272746
+ timestamp: 1762525900749
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.3-py314h784bc60_3.conda
+ sha256: e5ca7f079f9bd49a9fce837dfe9014d96603600a29e5575cce19895d3639182c
+ md5: d75fae59fe0c8863de391e95959b2c65
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - numpy >=1.25
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 262199
+ timestamp: 1762525837746
+- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.0-py314hd8ed1ab_102.conda
+ noarch: generic
+ sha256: 8e2a33b36d36820698840bf0c1ed50e5dd4bdeaa434c7b4f5e13d421225b0414
+ md5: ff3061d315c4a988fa1c29c543800780
+ depends:
+ - python >=3.14,<3.15.0a0
+ - python_abi * *_cp314
+ license: Python-2.0
+ size: 49003
+ timestamp: 1761175499490
+- conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c
+ md5: 44600c4667a319d67dbe0681fc0bc833
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 13399
+ timestamp: 1733332563512
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda
+ sha256: ee09ad7610c12c7008262d713416d0b58bf365bc38584dce48950025850bdf3f
+ md5: cae723309a49399d2949362f4ab5c9e4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libntlm >=1.8,<2.0a0
+ - libstdcxx >=13
+ - libxcrypt >=4.4.36
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 209774
+ timestamp: 1750239039316
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cyrus-sasl-2.1.28-h6c5dea3_0.conda
+ sha256: 87b603b76b05e9be749a2616582bfb907e06e7851285bdd78f9ddaaa732d7bc7
+ md5: b6d06b46e791add99cc39fbbc34530d5
+ depends:
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libntlm
+ - libstdcxx >=13
+ - libxcrypt >=4.4.36
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 227295
+ timestamp: 1750239141751
+- conda: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.28-h610c526_0.conda
+ sha256: beee5d279d48d67ba39f1b8f64bc050238d3d465fb9a53098eba2a85e9286949
+ md5: 314cd5e4aefc50fec5ffd80621cfb4f8
+ depends:
+ - __osx >=10.13
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=18
+ - libntlm >=1.8,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 197689
+ timestamp: 1750239254864
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.28-ha1cbb27_0.conda
+ sha256: 7de03254fa5421e7ec2347c830a59530fb5356022ee0dc26ec1cef0be1de0911
+ md5: 2867ea6551e97e53a81787fd967162b1
+ depends:
+ - __osx >=11.0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=18
+ - libntlm >=1.8,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 193732
+ timestamp: 1750239236574
+- conda: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.11.0-pyhcf101f3_0.conda
+ sha256: a1fa1457cf759d90deb87c258da393809285b807ecef47a317d210fa4fa9f7fb
+ md5: 91549f296c15ef7b49ee6600e7c934c1
+ depends:
+ - python >=3.10
+ - click >=8.1
+ - cloudpickle >=3.0.0
+ - fsspec >=2021.9.0
+ - packaging >=20.0
+ - partd >=1.4.0
+ - pyyaml >=5.3.1
+ - toolz >=0.10.0
+ - importlib-metadata >=4.13.0
+ - python
+ license: BSD-3-Clause
+ size: 1060758
+ timestamp: 1762449427391
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda
+ sha256: 33fe66d025cf5bac7745196d1a3dd7a437abcf2dbce66043e9745218169f7e17
+ md5: 6e5a87182d66b2d1328a96b61ca43a62
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 347363
+ timestamp: 1685696690003
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
+ sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8
+ md5: 5a74cdee497e6b65173e10d94582fae6
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 316394
+ timestamp: 1685695959391
+- conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda
+ sha256: 3b988146a50e165f0fa4e839545c679af88e4782ec284cc7b6d07dd226d6a068
+ md5: 679616eb5ad4e521c83da4650860aba7
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libexpat >=2.7.0,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - libglib >=2.84.2,<3.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 437860
+ timestamp: 1747855126005
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.16.2-heda779d_0.conda
+ sha256: 5c9166bbbe1ea7d0685a1549aad4ea887b1eb3a07e752389f86b185ef8eac99a
+ md5: 9203b74bb1f3fa0d6f308094b3b44c1e
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - libexpat >=2.7.0,<3.0a0
+ - libglib >=2.84.2,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 469781
+ timestamp: 1747855172617
+- conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.17-py314h8c728da_0.conda
+ sha256: 982838c857d600ca57ec6e46a6b71540575d8a054a3ebc627dd03b3d3c4f578b
+ md5: c9367a2d02bab08fa4eb887349f0ca4a
+ depends:
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 2888250
+ timestamp: 1758162035320
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.17-py314h3642cf7_0.conda
+ sha256: fb43e3a3cea02a60842bece78d672019d375ad7945efeb1a4a74c9e21d5af7bc
+ md5: c515777bac2a8d4f6d9c55dc52aef24d
+ depends:
+ - python
+ - libstdcxx >=14
+ - libgcc >=14
+ - python 3.14.* *_cp314
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 2853963
+ timestamp: 1758162063991
+- conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.17-py314h93774dc_0.conda
+ sha256: 82a9862d6da6e6af38ecdee6f0ed7a66a17c16e6227471509ec5e18a84d5a7d4
+ md5: e4570bb5cd55142c4cf5be8d60a02a6a
+ depends:
+ - python
+ - __osx >=10.13
+ - libcxx >=19
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 2787167
+ timestamp: 1758162082638
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.17-py314hac9ea21_0.conda
+ sha256: 6040b82e0467911c32f572129816788d4f227a29778f7d3b788d8ef17d438860
+ md5: 321942ce21d3c63cf061a9b83fc03b76
+ depends:
+ - python
+ - python 3.14.* *_cp314
+ - __osx >=11.0
+ - libcxx >=19
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 2778389
+ timestamp: 1758162078942
+- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
+ sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017
+ md5: 9ce473d1d1be1cc3810856a48b3fab32
+ depends:
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 14129
+ timestamp: 1740385067843
+- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
+ sha256: 6d977f0b2fc24fee21a9554389ab83070db341af6d6f09285360b2e09ef8b26e
+ md5: 003b8ba0a94e2f1e117d0bd46aebc901
+ depends:
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ size: 275642
+ timestamp: 1752823081585
+- conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ sha256: 1bcc132fbcc13f9ad69da7aa87f60ea41de7ed4d09f3a00ff6e0e70e1c690bc2
+ md5: bfd56492d8346d669010eccafe0ba058
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 69544
+ timestamp: 1739569648873
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda
+ sha256: 9a2282445e8ee2da6253490c896bc3be80f07550564a6db5f4920aa3ae390021
+ md5: 399959d889e1a73fc99f12ce480e77e1
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 67140
+ timestamp: 1739571636249
+- conda: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda
+ sha256: e402598ce9da5dde964671c96c5471851b723171dedc86e3a501cc43b7fcb2ab
+ md5: 3cb499563390702fe854a743e376d711
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 66627
+ timestamp: 1739569935278
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda
+ sha256: 819867a009793fe719b74b2b5881a7e85dc13ce504c7260a9801f3b1970fd97b
+ md5: 4dce99b1430bf11b64432e2edcc428fa
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 63265
+ timestamp: 1739569780916
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ducc0-0.39.1-py314ha160325_1.conda
+ sha256: b2a30bdfef2d4b1ba92d370d81aabc06897450b0032a1606196cc71c5daa9feb
+ md5: 6087bc670aa1b910aaa38bae6e679ec1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - numpy >=1.17.0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: GPL-2.0-or-later
+ size: 2804768
+ timestamp: 1762766188828
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ducc0-0.39.1-py314h02b5315_1.conda
+ sha256: 03a5accf6a078432c4351241b351155ab500bcedccca39a9ac22edbdbe621508
+ md5: fe8937e3b8b744893d0ba24995903585
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - numpy >=1.17.0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: GPL-2.0-or-later
+ size: 2833082
+ timestamp: 1762766140704
+- conda: https://conda.anaconda.org/conda-forge/osx-64/ducc0-0.39.1-py314h21b9a27_1.conda
+ sha256: d7cba4ebd0894599198c2f5cc9a4024d5052fba0b2a8f72fde811ebf6b15d5c1
+ md5: d0e8e011038846f35c47744f103689d9
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - numpy >=1.17.0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: GPL-2.0-or-later
+ size: 2103739
+ timestamp: 1762767103291
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ducc0-0.39.1-py314h93ecee7_1.conda
+ sha256: 65a5e446ee5b287d444ee0e1dbd1116826a967d968b7e02687f83cf0d59860a6
+ md5: 68d0bfab1eafb2f2398663d72e763401
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - numpy >=1.17.0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: GPL-2.0-or-later
+ size: 1814997
+ timestamp: 1762767004501
+- conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h171cf75_1.conda
+ sha256: fee3738c2431c13f4930778e9d7daca9328e7e2f2a38928cf6ca5a0daa86474a
+ md5: ea2db216eae84bc83b0b2961f38f5c0d
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1169164
+ timestamp: 1759819831835
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/eigen-3.4.0-hdc560ac_1.conda
+ sha256: d8d26d905b3f3d2103966620b40cac3bed0899a0d349bfb0bcb1a9b9d19cf7bf
+ md5: 2e0c5b1d2aefb0a7ac54b087649913a5
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1169015
+ timestamp: 1759820070166
+- conda: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-hfc0b2d5_1.conda
+ sha256: 929bf0e15495bff2a08dfc372860c10efd829b9d66a7441bbfd565b6b8c8cf5a
+ md5: 7e58d0dcc1f43ed4baf6d3156630cc68
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1169455
+ timestamp: 1759819901548
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h49c215f_1.conda
+ sha256: 045b7e0994cc5740984551a79a56f7ff905a8deebcbdc02d6a28ad3ccae0abce
+ md5: cceeb206b14c099ff52dc5a67b096904
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1169935
+ timestamp: 1759819925766
+- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca
+ md5: 72e42d28960d875c7654614f8b50939a
+ depends:
+ - python >=3.9
+ - typing_extensions >=4.6.0
+ license: MIT and PSF-2.0
+ size: 21284
+ timestamp: 1746947398083
+- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad
+ md5: ff9efb7f7469aed3c4a8106ffa29593c
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 30753
+ timestamp: 1756729456476
+- conda: .
name: fans
- version: 0.5.2
+ version: 0.6.0
build: h04f5b5a_0
subdir: linux-64
depends:
- - libstdcxx >=15
- - libgcc >=15
- - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
- - fftw >=3.3.10,<4.0a0
- - fftw * mpi_openmpi_*
- input:
- hash: 13d11b1d925bc1f93dc8a2bf943ad51e99d9f24f4f1c401d7740c506b16a4f91
- globs: []
-- conda: .
- name: fans
- version: 0.5.2
- build: hbf21a9e_0
- subdir: linux-aarch64
+ - libstdcxx >=15
+ - libgcc >=15
+ - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
+ - fftw >=3.3.10,<4.0a0
+ - fftw * mpi_openmpi_*
+ input:
+ hash: f3e543bdf79d4b2ea9d76aab17fb5b2a7d4d18fdae0590bb845fe4b6fc7beb94
+ globs: []
+- conda: .
+ name: fans
+ version: 0.6.0
+ build: hbf21a9e_0
+ subdir: linux-aarch64
+ depends:
+ - libstdcxx >=15
+ - libgcc >=15
+ - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
+ - fftw >=3.3.10,<4.0a0
+ - fftw * mpi_openmpi_*
+ input:
+ hash: a04ddbf72cc8bb8185b38d6e003e7b0645bb4cb5d620f596cbb4db467887d2eb
+ globs: []
+- conda: .
+ name: fans
+ version: 0.6.0
+ build: hbf21a9e_0
+ subdir: osx-64
+ depends:
+ - libcxx >=21
+ - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
+ - fftw >=3.3.10,<4.0a0
+ - fftw * mpi_openmpi_*
+ input:
+ hash: a04ddbf72cc8bb8185b38d6e003e7b0645bb4cb5d620f596cbb4db467887d2eb
+ globs: []
+- conda: .
+ name: fans
+ version: 0.6.0
+ build: hbf21a9e_0
+ subdir: osx-arm64
+ depends:
+ - libcxx >=21
+ - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
+ - fftw >=3.3.10,<4.0a0
+ - fftw * mpi_openmpi_*
+ input:
+ hash: a04ddbf72cc8bb8185b38d6e003e7b0645bb4cb5d620f596cbb4db467887d2eb
+ globs: []
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_openmpi_h99e62ba_10.conda
+ sha256: 59a1fd0daa71bd5529e19b4da8aae2ded4d4ef05e5e31d80c39cbe2fc7664b6a
+ md5: 3fcbf2ef5f3a8f0ed5683f60fe08293b
+ depends:
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.3.0
+ - libstdcxx-ng >=12
+ - openmpi >=5.0.3,<6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 2090852
+ timestamp: 1717758725106
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf1063bd_110.conda
+ sha256: 3cc58c9d9a8cc0089e3839ae5ff7ba4ddfc6df99d5f6a147fe90ea963bc6fe45
+ md5: ee3e687b78b778db7b304e5b00a4dca6
+ depends:
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.3.0
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 2075171
+ timestamp: 1717757963922
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_openmpi_hc95d1d6_10.conda
+ sha256: 6182e15d97deb010efc714b31d29c7d85c41e9c43436656854a32e410790702a
+ md5: cc7e04f4dc380344235fa098b72636e6
+ depends:
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.3.0
+ - libstdcxx-ng >=12
+ - openmpi >=5.0.3,<6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1456347
+ timestamp: 1717761767842
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-nompi_h020dacd_110.conda
+ sha256: b2de8adb9d4a0f18865c17d16ba3af160b5222c790a7caed3744938b0e6fca4c
+ md5: 92fd83877f1a14a524a2889c52efdde6
+ depends:
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.3.0
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1400685
+ timestamp: 1717758943413
+- conda: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_openmpi_h3b45436_10.conda
+ sha256: e5243098906110d72ac20009a5222c2a48ebc5d2b91f17285cba039424ca4692
+ md5: a60f32d3fb63772264658b0d8bc04801
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libgfortran >=5
+ - libgfortran5 >=12.3.0
+ - libgfortran5 >=13.2.0
+ - llvm-openmp >=16.0.6
+ - openmpi >=5.0.3,<6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1846493
+ timestamp: 1717758687886
+- conda: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-nompi_h292e606_110.conda
+ sha256: 6f5c64debf2d51f10522d4080b043ec4dc9825a770a4d38c96fa7bf6432b4769
+ md5: e05219cbabb20b406ff0803a3e552419
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libgfortran >=5
+ - libgfortran5 >=12.3.0
+ - libgfortran5 >=13.2.0
+ - llvm-openmp >=16.0.6
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1801806
+ timestamp: 1717758400349
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_h260600c_10.conda
+ sha256: 258968d1c176b4091619c5b26461cfc02771f1f859f172066b7ceff7fb7b31ad
+ md5: 63e5867d6a7278503142b2bb9f0caf5d
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libgfortran >=5
+ - libgfortran5 >=12.3.0
+ - libgfortran5 >=13.2.0
+ - llvm-openmp >=16.0.6
+ - openmpi >=5.0.3,<6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 799578
+ timestamp: 1717757931382
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-nompi_h6637ab6_110.conda
+ sha256: ba72f1d9384584c774d4e58ff3174818a20687f817e5edde3e0d23edff88fd72
+ md5: 622f99e8f4820c2ca1b208a3bb6ed5e6
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libgfortran >=5
+ - libgfortran5 >=12.3.0
+ - libgfortran5 >=13.2.0
+ - llvm-openmp >=16.0.6
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 763281
+ timestamp: 1717758160882
+- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
+ sha256: 19025a4078ff3940d97eb0da29983d5e0deac9c3e09b0eabf897daeaf9d1114e
+ md5: 66b8b26023b8efdf8fcb23bac4b6325d
+ depends:
+ - python >=3.10
+ license: Unlicense
+ size: 17976
+ timestamp: 1759948208140
+- conda: https://conda.anaconda.org/conda-forge/noarch/filterpy-1.4.5-pyhd8ed1ab_2.conda
+ sha256: dc81e6283bd2cdc5e8a3e5c88527870b2992a8f71f25ddec9dd995223c08aed8
+ md5: 261bd75b03d09c5eeea5aedf7365e811
+ depends:
+ - matplotlib-base
+ - numpy
+ - python >=3.9
+ - scipy
+ license: MIT
+ license_family: MIT
+ size: 72868
+ timestamp: 1739826907157
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda
+ sha256: e0f53b7801d0bcb5d61a1ddcb873479bfe8365e56fd3722a232fbcc372a9ac52
+ md5: 0c2f855a88fab6afa92a7aa41217dc8e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: MIT
+ license_family: MIT
+ size: 192721
+ timestamp: 1751277120358
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_0.conda
+ sha256: c5b9a5caeb37216aa97aa1ef6f742a5ad17264838ca3b485db5a37e16c6f1373
+ md5: 3fc63892ea4acd46f652f8cf489007f9
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: MIT
+ license_family: MIT
+ size: 189924
+ timestamp: 1751277118345
+- conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.2.0-hbf61d64_0.conda
+ sha256: ba1b1187d6e6ed32a6da0ff4c46658168c16b7dfa1805768d3f347e0c306b804
+ md5: 1883d88d80cb91497b7c2e4f69f2e5e3
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ license: MIT
+ license_family: MIT
+ size: 184106
+ timestamp: 1751277237783
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.2.0-h440487c_0.conda
+ sha256: 1449ec46468860f6fb77edba87797ce22d4f6bfe8d5587c46fd5374c4f7383ee
+ md5: 24109723ac700cce5ff96ea3e63a83a3
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ license: MIT
+ license_family: MIT
+ size: 177090
+ timestamp: 1751277262419
+- conda: 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
+- conda: 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
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
+ md5: 49023d73832ef61042f6a237cb2687e7
+ license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
+ license_family: Other
+ size: 1620504
+ timestamp: 1727511233259
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
+ sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113
+ md5: 8f5b0b297b59e1ac160ad4beec99dbee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 265599
+ timestamp: 1730283881107
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda
+ sha256: fe023bb8917c8a3138af86ef537b70c8c5d60c44f93946a87d1e8bb1a6634b55
+ md5: 112b71b6af28b47c624bcbeefeea685b
+ depends:
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 277832
+ timestamp: 1730284967179
+- conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda
+ sha256: 61a9aa1d2dd115ffc1ab372966dc8b1ac7b69870e6b1744641da276b31ea5c0b
+ md5: 84ccec5ee37eb03dd352db0a3f89ada3
+ depends:
+ - __osx >=10.13
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 232313
+ timestamp: 1730283983397
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda
+ sha256: f79d3d816fafbd6a2b0f75ebc3251a30d3294b08af9bb747194121f5efa364bc
+ md5: 7b29f48742cea5d1ccb5edd839cb5621
+ depends:
+ - __osx >=11.0
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 234227
+ timestamp: 1730284037572
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda
+ sha256: 54eea8469786bc2291cc40bca5f46438d3e062a399e8f53f013b6a9f50e98333
+ md5: a7970cd949a077b7cb9696379d338681
+ depends:
+ - font-ttf-ubuntu
+ - font-ttf-inconsolata
+ - font-ttf-dejavu-sans-mono
+ - font-ttf-source-code-pro
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4059
+ timestamp: 1762351264405
+- conda: https://conda.anaconda.org/conda-forge/noarch/fonttools-4.60.1-pyh7db6752_0.conda
+ sha256: 0784c48b72fc19d9b844fc3408930f4afa5ba6d28ef83c55e3da882ea511e4b0
+ md5: 85c6b2f3ae5044dd279dc0970f882cd9
+ depends:
+ - brotli
+ - munkres
+ - python >=3.10
+ - unicodedata2 >=15.1.0
+ track_features:
+ - fonttools_no_compile
+ license: MIT
+ license_family: MIT
+ size: 828176
+ timestamp: 1759187245788
+- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
+ md5: 4afc585cd97ba8a23809406cd8a9eda8
+ depends:
+ - libfreetype 2.14.1 ha770c72_0
+ - libfreetype6 2.14.1 h73754d4_0
+ license: GPL-2.0-only OR FTL
+ size: 173114
+ timestamp: 1757945422243
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.14.1-h8af1aa0_0.conda
+ sha256: 9f8de35e95ce301cecfe01bc9d539c7cc045146ffba55efe9733ff77ad1cfb21
+ md5: 0c8f36ebd3678eed1685f0fc93fc2175
+ depends:
+ - libfreetype 2.14.1 h8af1aa0_0
+ - libfreetype6 2.14.1 hdae7a39_0
+ license: GPL-2.0-only OR FTL
+ size: 173174
+ timestamp: 1757945489158
+- conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.14.1-h694c41f_0.conda
+ sha256: 9f8282510db291496e89618fc66a58a1124fe7a6276fbd57ed18c602ce2576e9
+ md5: ca641fdf8b7803f4b7212b6d66375930
+ depends:
+ - libfreetype 2.14.1 h694c41f_0
+ - libfreetype6 2.14.1 h6912278_0
+ license: GPL-2.0-only OR FTL
+ size: 173969
+ timestamp: 1757945973505
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.14.1-hce30654_0.conda
+ sha256: 14427aecd72e973a73d5f9dfd0e40b6bc3791d253de09b7bf233f6a9a190fd17
+ md5: 1ec9a1ee7a2c9339774ad9bb6fe6caec
+ depends:
+ - libfreetype 2.14.1 hce30654_0
+ - libfreetype6 2.14.1 h6da58f4_0
+ license: GPL-2.0-only OR FTL
+ size: 173399
+ timestamp: 1757947175403
+- conda: https://conda.anaconda.org/conda-forge/noarch/frozenlist-1.7.0-pyhf298e5d_0.conda
+ sha256: d065c6c76ba07c148b07102f89fd14e39e4f0b2c022ad671bbef8fda9431ba1b
+ md5: 3998c9592e3db2f6809e4585280415f4
+ depends:
+ - python >=3.9
+ track_features:
+ - frozenlist_no_compile
+ license: Apache-2.0
+ license_family: APACHE
+ size: 18952
+ timestamp: 1752167260183
+- conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.10.0-pyhd8ed1ab_0.conda
+ sha256: df5cb57bb668cd5b2072d8bd66380ff7acb12e8c337f47dd4b9a75a6a6496a6d
+ md5: d18004c37182f83b9818b714825a7627
+ depends:
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 146592
+ timestamp: 1761840236679
+- conda: https://conda.anaconda.org/conda-forge/noarch/gast-0.4.0-pyh9f0ad1d_0.tar.bz2
+ sha256: 0f7eff1aab91ec3ac2eb3bbace1297fd71c16d235503222c3da89428ac562a63
+ md5: 42323c77b73462199fca93bc8ac9279d
+ depends:
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 12325
+ timestamp: 1596839771978
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-hcacfade_7.conda
+ sha256: 6a19411e3fe4e4f55509f4b0c374663b3f8903ed5ae1cc94be1b88846c50c269
+ md5: 3d75679d5e2bd547cb52b913d73f69ef
+ depends:
+ - binutils_impl_linux-64 >=2.40
+ - libgcc >=15.2.0
+ - libgcc-devel_linux-64 15.2.0 h73f6952_107
+ - libgomp >=15.2.0
+ - libsanitizer 15.2.0 hb13aed2_7
+ - libstdcxx >=15.2.0
+ - sysroot_linux-64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 77766660
+ timestamp: 1759968214246
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h679d96a_7.conda
+ sha256: 5ac675b608fc091966253eeacdfc305f233700c08799afe92407ee2e787e2a0f
+ md5: da10bdcb8b289c1d014fdd908647317c
+ depends:
+ - binutils_impl_linux-aarch64 >=2.40
+ - libgcc >=15.2.0
+ - libgcc-devel_linux-aarch64 15.2.0 h1ed5458_107
+ - libgomp >=15.2.0
+ - libsanitizer 15.2.0 h8b511b7_7
+ - libstdcxx >=15.2.0
+ - sysroot_linux-aarch64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 74019908
+ timestamp: 1759967541608
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-15.2.0-h862fb80_12.conda
+ sha256: 3aa39868fef7512ccb854716c220ca676741ca4291bc461e81c2ceb6b58dbd95
+ md5: 5e4fff12f2efde0b941e126e4553e323
+ depends:
+ - gcc_impl_linux-64 15.2.0.*
+ - binutils_linux-64
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27952
+ timestamp: 1759866717850
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-15.2.0-h0139441_12.conda
+ sha256: f84bf823ad91b9bb382e33662d34b4ad6a619f7e7fc59bbc563448f10e0461f7
+ md5: c0111ff3663f29aee1b30dc0f89b5aa6
+ depends:
+ - gcc_impl_linux-aarch64 15.2.0.*
+ - binutils_linux-aarch64
+ - sysroot_linux-aarch64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27723
+ timestamp: 1759866766454
+- conda: https://conda.anaconda.org/conda-forge/linux-64/geos-3.14.1-h480dda7_0.conda
+ sha256: 08896dcd94e14a83f247e91748444e610f344ab42d80cbf2b6082b481c3f8f4b
+ md5: 4d4efd0645cd556fab54617c4ad477ef
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.1-only
+ size: 1974942
+ timestamp: 1761593471198
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/geos-3.14.1-h57520ee_0.conda
+ sha256: 02b1f971fb9b560479e046915f90d20df71836f079a789eccd83bd03262c7bcb
+ md5: 311434946d3846e12661fedd4bfad25d
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.1-only
+ size: 1938302
+ timestamp: 1761593520145
+- conda: https://conda.anaconda.org/conda-forge/osx-64/geos-3.14.1-he483b9e_0.conda
+ sha256: 4d95fd55a9e649620b4e50ddafff064c4ec52d87e1ed64aa4cad13e643b32baf
+ md5: d83030a79ce1276edc2332c1730efa17
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ license: LGPL-2.1-only
+ size: 1631280
+ timestamp: 1761593838143
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.14.1-h5afe852_0.conda
+ sha256: 1ac5f5a3a35f2e4778025043c87993208d336e30539406e380e0952bb7ffd188
+ md5: 4238412c29eff0bb2bb5c60a720c035a
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ license: LGPL-2.1-only
+ size: 1530844
+ timestamp: 1761594597236
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
+ sha256: 6c33bf0c4d8f418546ba9c250db4e4221040936aef8956353bc764d4877bc39a
+ md5: d411fc29e338efb48c5fd4576d71d881
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 119654
+ timestamp: 1726600001928
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
+ sha256: 28fe6b40b20454106d5e4ef6947cf298c13cc72a46347bbc49b563cd3a463bfa
+ md5: 4ff634d515abbf664774b5e1168a9744
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 106638
+ timestamp: 1726599967617
+- conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hac325c4_1005.conda
+ sha256: c0bea66f71a6f4baa8d4f0248e17f65033d558d9e882c0af571b38bcca3e4b46
+ md5: a26de8814083a6971f14f9c8c3cb36c2
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 84946
+ timestamp: 1726600054963
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
+ sha256: fd56ed8a1dab72ab90d8a8929b6f916a6d9220ca297ff077f8f04c5ed3408e20
+ md5: 57a511a5905caa37540eb914dfcbf1fb
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 82090
+ timestamp: 1726600145480
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/giflib-5.2.2-h31becfc_0.conda
+ sha256: a79dc3bd54c4fb1f249942ee2d5b601a76ecf9614774a4cff9af49adfa458db2
+ md5: 2f809afaf0ba1ea4135dce158169efac
+ depends:
+ - libgcc-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 82124
+ timestamp: 1712692444545
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.2-h93a5062_0.conda
+ sha256: 843b3f364ff844137e37d5c0a181f11f6d51adcedd216f019d074e5aa5d7e09c
+ md5: 95fa1486c77505330c20f7202492b913
+ license: MIT
+ license_family: MIT
+ size: 71613
+ timestamp: 1712692611426
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ sha256: 68f071ea25e79ee427c0d6c35ccc137d66f093a37660a4e41bafe0c49d64f2d6
+ md5: 00e642ec191a19bf806a3915800e9524
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 74102
+ timestamp: 1718542981099
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda
+ sha256: e6500b15fd2dbd776df204556702bb2c90d037523c18cd0a111c7c0f0d314aa2
+ md5: 6a087dc84254035cbde984f2c010c9ef
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 72023
+ timestamp: 1718542978037
+- conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
+ sha256: dc824dc1d0aa358e28da2ecbbb9f03d932d976c8dca11214aa1dcdfcbd054ba2
+ md5: ff862eebdfeb2fd048ae9dc92510baca
+ depends:
+ - gflags >=2.2.2,<2.3.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 143452
+ timestamp: 1718284177264
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
+ sha256: 920795d4f775a9f47e91c2223e64847f0b212b3fedc56c137c5889e32efe8ba0
+ md5: 08940a32c6ced3703d1412dd37df4f62
+ depends:
+ - gflags >=2.2.2,<2.3.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 145811
+ timestamp: 1718284208668
+- conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.1-h2790a97_0.conda
+ sha256: dd56547db8625eb5c91bb0a9fbe8bd6f5c7fbf5b6059d46365e94472c46b24f9
+ md5: 06cf91665775b0da395229cd4331b27d
+ depends:
+ - __osx >=10.13
+ - gflags >=2.2.2,<2.3.0a0
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 117017
+ timestamp: 1718284325443
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
+ sha256: 9fc77de416953aa959039db72bc41bfa4600ae3ff84acad04a7d0c1ab9552602
+ md5: fef68d0a95aa5b84b5c1a4f6f3bf40e1
+ depends:
+ - __osx >=11.0
+ - gflags >=2.2.2,<2.3.0a0
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 112215
+ timestamp: 1718284365403
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
+ md5: c94a5994ef49749880a8139cf9afcbe1
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 460055
+ timestamp: 1718980856608
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda
+ sha256: a5e341cbf797c65d2477b27d99091393edbaa5178c7d69b7463bb105b0488e69
+ md5: 7cbfb3a8bb1b78a7f5518654ac6725ad
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 417323
+ timestamp: 1718980707330
+- conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda
+ sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc
+ md5: 427101d13f19c4974552a4e5b072eef1
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 428919
+ timestamp: 1718981041839
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda
+ sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd
+ md5: eed7278dfbab727b56f2c0b64330814b
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 365188
+ timestamp: 1718981343258
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gmpy2-2.2.1-py314h28848ee_2.conda
+ sha256: 3a913114d8c570b32d010fe387f0821955e022dc3cd192c666370241bea68c8d
+ md5: 6958d0a4028e0b3ffd80ce539482c605
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gmp >=6.3.0,<7.0a0
+ - libgcc >=14
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.1,<5.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: LGPL-3.0-or-later
+ size: 214694
+ timestamp: 1762946982171
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmpy2-2.2.1-py314h887ad84_2.conda
+ sha256: d85786c849501da70a5e821389710b99861ffea9b39ad2d5fdcae9db82325661
+ md5: ee8c487719c145969f96cf3a53f832e8
+ depends:
+ - gmp >=6.3.0,<7.0a0
+ - libgcc >=14
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.1,<5.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: LGPL-3.0-or-later
+ size: 205752
+ timestamp: 1762946928016
+- conda: https://conda.anaconda.org/conda-forge/osx-64/gmpy2-2.2.1-py314hae71602_2.conda
+ sha256: 0e5e0c7083aef95c8ce410b0f77397491c38545d5ce222264f89b5c7d1f6f4ed
+ md5: c03460d078cfbb64caf18cc93175ceda
+ depends:
+ - __osx >=10.13
+ - gmp >=6.3.0,<7.0a0
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.1,<5.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: LGPL-3.0-or-later
+ size: 170498
+ timestamp: 1762947254455
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmpy2-2.2.1-py314h07d5e28_2.conda
+ sha256: 95635d8a8f5218f9640be552398942a9e2353ff2368ab47f7cb08d0e77e60f6e
+ md5: 2e07295c0b3bcdae3551d525b70e396f
+ depends:
+ - __osx >=11.0
+ - gmp >=6.3.0,<7.0a0
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.1,<5.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: LGPL-3.0-or-later
+ size: 163104
+ timestamp: 1762947639858
+- conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda
+ sha256: 25ba37da5c39697a77fce2c9a15e48cf0a84f1464ad2aafbe53d8357a9f6cc8c
+ md5: 2cd94587f3a401ae05e03a6caf09539d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 99596
+ timestamp: 1755102025473
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/graphite2-1.3.14-hfae3067_2.conda
+ sha256: c9b1781fe329e0b77c5addd741e58600f50bef39321cae75eba72f2f381374b7
+ md5: 4aa540e9541cc9d6581ab23ff2043f13
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 102400
+ timestamp: 1755102000043
+- conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.14-h21dd04a_2.conda
+ sha256: c356eb7a42775bd2bae243d9987436cd1a442be214b1580251bb7fdc136d804b
+ md5: ba63822087afc37e01bf44edcc2479f3
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 85465
+ timestamp: 1755102182985
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda
+ sha256: c507ae9989dbea7024aa6feaebb16cbf271faac67ac3f0342ef1ab747c20475d
+ md5: 0fc46fee39e88bbcf5835f71a9d9a209
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 81202
+ timestamp: 1755102333712
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-15.2.0-h54ccb8d_7.conda
+ sha256: 1fb7da99bcdab2ef8bd2458d8116600524207f3177d5c786d18f3dc5f824a4b8
+ md5: f2da2e9e5b7c485f5a4344d5709d8633
+ depends:
+ - gcc_impl_linux-64 15.2.0 hcacfade_7
+ - libstdcxx-devel_linux-64 15.2.0 h73f6952_107
+ - sysroot_linux-64
+ - tzdata
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 16283256
+ timestamp: 1759968538523
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-15.2.0-h0902481_7.conda
+ sha256: 9af30fd3b336baa53bdcf857186814433587adaae4a1e25cda8e07607ae2e80a
+ md5: 58a86082ea0343409c011e0dc6ad987b
+ depends:
+ - gcc_impl_linux-aarch64 15.2.0 h679d96a_7
+ - libstdcxx-devel_linux-aarch64 15.2.0 h1ed5458_107
+ - sysroot_linux-aarch64
+ - tzdata
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 15321200
+ timestamp: 1759967761963
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-15.2.0-hfaa183a_12.conda
+ sha256: 46f94c00af4d7f9401b9fcd29287a3a2dc2a603af4a6812ccddc59ab06da2079
+ md5: 417d690337638f0a43b3e5f3a2680efc
+ depends:
+ - gxx_impl_linux-64 15.2.0.*
+ - gcc_linux-64 ==15.2.0 h862fb80_12
+ - binutils_linux-64
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27043
+ timestamp: 1759866717850
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-15.2.0-h181ebf5_12.conda
+ sha256: c246acb360de62515d9cc45f72919cc3583dc0b3340e9182ba28b8a1d12da284
+ md5: 795bb9399df27556fdc8b9bedaa68a1d
+ depends:
+ - gxx_impl_linux-aarch64 15.2.0.*
+ - gcc_linux-aarch64 ==15.2.0 h0139441_12
+ - binutils_linux-aarch64
+ - sysroot_linux-aarch64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 26832
+ timestamp: 1759866766455
+- conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
+ sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3
+ md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9
+ depends:
+ - python >=3.10
+ - hyperframe >=6.1,<7
+ - hpack >=4.1,<5
+ - python
+ license: MIT
+ license_family: MIT
+ size: 95967
+ timestamp: 1756364871835
+- conda: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.15.1-nompi_py314hc32fe06_100.conda
+ sha256: a8bcd47281dbdf8d535c7a6b487615c7798470d0eafac945d359f44f8cb9d45b
+ md5: 1d4545422c15aa77e8a93501f3ee5fb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1336207
+ timestamp: 1760616744128
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.15.1-nompi_py314h2a0c532_100.conda
+ sha256: 4983b6adcc60fd2b910260301eade039510b3e06ae710f7e8da5139d7e74c2c4
+ md5: 6ef65bf29fcf0e72c2871690889008f7
+ depends:
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1309437
+ timestamp: 1760616808060
+- conda: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.15.1-nompi_py314hf613b1f_100.conda
+ sha256: a00d7598c0687d20d486a10a6ab3458166aee55e1e49a3cf3dd2904ae79e5572
+ md5: 06fabd5bbc738291875722805053da4d
+ depends:
+ - __osx >=10.13
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1179595
+ timestamp: 1760617065341
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.15.1-nompi_py314h1c8d760_100.conda
+ sha256: 5244dec9aef6920cf8ad77e56407c954046c825fb016dad8a5932a0d9bebe55a
+ md5: 77daab2540e592d03d9d32b417aa4c9b
+ depends:
+ - __osx >=11.0
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1184389
+ timestamp: 1760618066023
+- conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-12.2.0-h15599e2_0.conda
+ sha256: 6bd8b22beb7d40562b2889dc68232c589ff0d11a5ad3addd41a8570d11f039d9
+ md5: b8690f53007e9b5ee2c2178dd4ac778c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - graphite2 >=1.3.14,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libglib >=2.86.1,<3.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 2411408
+ timestamp: 1762372726141
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/harfbuzz-12.2.0-he4899c9_0.conda
+ sha256: 5cfd74a3fbce0921af5beff93a3fe7edc5b1344d9b9668b2de1c1be932b54993
+ md5: 1437bf9690976948f90175a65407b65f
+ depends:
+ - cairo >=1.18.4,<2.0a0
+ - graphite2 >=1.3.14,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libglib >=2.86.1,<3.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 2156041
+ timestamp: 1762376447693
+- conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-12.2.0-hc5d3ef4_0.conda
+ sha256: 352c0fe4445599c3081a41e16b91d66041f9115b9490b7f3daea63897f593385
+ md5: 05a72f9d35dddd5bf534d7da4929297c
+ depends:
+ - __osx >=10.13
+ - cairo >=1.18.4,<2.0a0
+ - graphite2 >=1.3.14,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=19
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libglib >=2.86.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 1875555
+ timestamp: 1762373120771
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-12.2.0-haf38c7b_0.conda
+ sha256: 2f8d95fe1cb655fe3bac114062963f08cc77b31b042027ef7a04ebde3ce21594
+ md5: 1c7ff9d458dd8220ac2ee71dd4af1be5
+ depends:
+ - __osx >=11.0
+ - cairo >=1.18.4,<2.0a0
+ - graphite2 >=1.3.14,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=19
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libglib >=2.86.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 1537764
+ timestamp: 1762373922469
+- conda: 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,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 756742
+ timestamp: 1695661547874
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda
+ sha256: 70d1e2d3e0b9ae1b149a31a4270adfbb5a4ceb2f8c36d17feffcd7bcb6208022
+ md5: e1b6676b77b9690d07ea25de48aed97e
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 773862
+ timestamp: 1695661552544
+- conda: 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,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 724103
+ timestamp: 1695661907511
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda
+ sha256: c3b01e3c3fe4ca1c4d28c287eaa5168a4f2fd3ffd76690082ac919244c22fa90
+ md5: ff5d749fd711dc7759e127db38005924
+ depends:
+ - libcxx >=15.0.7
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 762257
+ timestamp: 1695661864625
+- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-mpi_openmpi_h4fb29d0_3.conda
+ sha256: b6bb9db8712be8538da0da417d9b840ce385e7ba46130283dc7a2c7a485b34a6
+ md5: c32434907364ca6584a2652783921294
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openmpi >=5.0.8,<6.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3933534
+ timestamp: 1753358621585
+- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614
+ md5: c74d83614aec66227ae5199d98852aaf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3710057
+ timestamp: 1753357500665
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.6-mpi_openmpi_h90d2627_3.conda
+ sha256: 1e6a12978781e243ad585fdf68b92f18368818633b38c5ff532c540ccdd7c661
+ md5: 232119eb03b6d1fd9da4c0c083ac8519
+ depends:
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openmpi >=5.0.8,<6.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4124964
+ timestamp: 1753365520824
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.6-nompi_h587839b_103.conda
+ sha256: 504720da04682560dbc02cf22e01ed6c4b5504c65becd79418f3887460cd45c7
+ md5: eab19e17ea4dce5068ec649f3717969d
+ depends:
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3915364
+ timestamp: 1753363295810
+- conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.6-mpi_openmpi_h8bfb534_3.conda
+ sha256: c5a9297e16298ebf45501f6f58ad5ef50a49a04db5f9a16858a19de98497b1b8
+ md5: d4f09ca44e8b729ae21446a4a323e919
+ depends:
+ - __osx >=10.13
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.1.0
+ - libzlib >=1.3.1,<2.0a0
+ - openmpi >=5.0.8,<6.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3714645
+ timestamp: 1753358414286
+- conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.6-nompi_hc8237f9_103.conda
+ sha256: e41d22f672b1fbe713d22cf69630abffaee68bdb38a500a708fc70e6f639357f
+ md5: 3f1df98f96e0c369d94232712c9b87d0
+ depends:
+ - __osx >=10.13
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.1.0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3522832
+ timestamp: 1753358062940
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-mpi_openmpi_h7c22107_3.conda
+ sha256: 79f7047c1dba1dad9c5c6533b218a5d94850f218f2d5a4686b4f8f4173bf1048
+ md5: 13b1b176da2ffd6e40d0d3c30f88767e
+ depends:
+ - __osx >=11.0
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.1.0
+ - libzlib >=1.3.1,<2.0a0
+ - openmpi >=5.0.8,<6.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3509797
+ timestamp: 1753356983190
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-nompi_he65715a_103.conda
+ sha256: 8948a63fc4a56536ce7b2716b781616c3909507300d26e9f265a3c13d59708a0
+ md5: fcc9aca330f13d071bfc4de3d0942d78
+ depends:
+ - __osx >=11.0
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.1.0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3308443
+ timestamp: 1753356976982
+- conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba
+ md5: 0a802cb9888dd14eeefc611f05c40b6e
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 30731
+ timestamp: 1737618390337
+- conda: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_2.conda
+ sha256: 8027e436ad59e2a7392f6036392ef9d6c223798d8a1f4f12d5926362def02367
+ md5: cf25bfddbd3bc275f3d3f9936cee1dd3
+ depends:
+ - python >=3.9
+ - six >=1.9
+ - webencodings
+ license: MIT
+ license_family: MIT
+ size: 94853
+ timestamp: 1734075276288
+- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8
+ md5: 8e6923fc12f1fe8f8c4e5c9f343256ac
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 17397
+ timestamp: 1737618427549
+- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e
+ md5: 8b189310083baabfb622af68fd9d3ae3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 12129203
+ timestamp: 1720853576813
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
+ sha256: 813298f2e54ef087dbfc9cc2e56e08ded41de65cff34c639cc8ba4e27e4540c9
+ md5: 268203e8b983fddb6412b36f2024e75c
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 12282786
+ timestamp: 1720853454991
+- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda
+ sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7
+ md5: d68d48a3060eb5abdc1cdc8e2a3a5966
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 11761697
+ timestamp: 1720853679409
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
+ sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620
+ md5: 5eb22c1d7b3fc4abb50d92d621583137
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 11857802
+ timestamp: 1720853997952
+- conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.15-pyhd8ed1ab_0.conda
+ sha256: 32d5007d12e5731867908cbf5345f5cd44a6c8755a2e8e63e15a184826a51f82
+ md5: 25f954b7dae6dd7b0dc004dab74f1ce9
+ depends:
+ - python >=3.10
+ - ukkonen
+ license: MIT
+ license_family: MIT
+ size: 79151
+ timestamp: 1759437561529
+- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0
+ md5: 53abe63df7e10a6ba605dc5f9f961d36
+ depends:
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 50721
+ timestamp: 1760286526795
+- conda: https://conda.anaconda.org/conda-forge/linux-64/imagecodecs-2025.11.11-py314hfc787d7_0.conda
+ sha256: 1abe02f9a2febd157e251ea5bcd027281e5f7bd55217c47baadc856177fc3107
+ md5: 91eb85b07071babc243845cb8fae7c47
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - blosc >=1.21.6,<2.0a0
+ - brunsli >=0.1,<1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - c-blosc2 >=2.22.0,<2.23.0a0
+ - charls >=2.4.2,<2.5.0a0
+ - giflib >=5.2.2,<5.3.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - lcms2 >=2.17,<3.0a0
+ - lerc >=4.0.0,<5.0a0
+ - libaec >=1.1.4,<2.0a0
+ - libavif16 >=1.3.0,<2.0a0
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libdeflate >=1.25,<1.26.0a0
+ - libgcc >=14
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - libjxl >=0.11,<0.12.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - libzopfli >=1.0.3,<1.1.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - numpy >=1.23,<3
+ - openjpeg >=2.5.4,<3.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - snappy >=1.2.2,<1.3.0a0
+ - zfp >=1.0.1,<2.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1897682
+ timestamp: 1762836076375
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/imagecodecs-2025.11.11-py314hb449bd7_0.conda
+ sha256: 713ea9c2a7664bdddf337adb85a9b598ef90abe2e20ecbd9c4d61e42d4d192dc
+ md5: b611804347be0aba6df70dbe41f285cb
+ depends:
+ - blosc >=1.21.6,<2.0a0
+ - brunsli >=0.1,<1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - c-blosc2 >=2.22.0,<2.23.0a0
+ - charls >=2.4.2,<2.5.0a0
+ - giflib >=5.2.2,<5.3.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - lcms2 >=2.17,<3.0a0
+ - lerc >=4.0.0,<5.0a0
+ - libaec >=1.1.4,<2.0a0
+ - libavif16 >=1.3.0,<2.0a0
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libdeflate >=1.25,<1.26.0a0
+ - libgcc >=14
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - libjxl >=0.11,<0.12.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - libzopfli >=1.0.3,<1.1.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - numpy >=1.23,<3
+ - openjpeg >=2.5.4,<3.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - snappy >=1.2.2,<1.3.0a0
+ - zfp >=1.0.1,<2.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1800482
+ timestamp: 1762836040767
+- conda: https://conda.anaconda.org/conda-forge/osx-64/imagecodecs-2025.11.11-py314hf9c3537_0.conda
+ sha256: 0cdbb8af37f03eb311492edb9b4973bfaaf26c5e6312042ea95ed6efcb7e1736
+ md5: 25cd511323b7d6a903a97513ae3e8254
+ depends:
+ - __osx >=10.13
+ - blosc >=1.21.6,<2.0a0
+ - brunsli >=0.1,<1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - c-blosc2 >=2.22.0,<2.23.0a0
+ - charls >=2.4.2,<2.5.0a0
+ - giflib >=5.2.2,<5.3.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - lcms2 >=2.17,<3.0a0
+ - lerc >=4.0.0,<5.0a0
+ - libaec >=1.1.4,<2.0a0
+ - libavif16 >=1.3.0,<2.0a0
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libcxx >=19
+ - libdeflate >=1.25,<1.26.0a0
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - libjxl >=0.11,<0.12.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - libzopfli >=1.0.3,<1.1.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - numpy >=1.23,<3
+ - openjpeg >=2.5.4,<3.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - snappy >=1.2.2,<1.3.0a0
+ - zfp >=1.0.1,<2.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1498884
+ timestamp: 1762836469210
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/imagecodecs-2025.11.11-py314hd3d5c6e_0.conda
+ sha256: c7240f390a6ea7308d0c3d8b8fb13c1a593002628c13c920310f83972f220937
+ md5: cdd13b30d9dfdc80630e104c816b5b26
+ depends:
+ - __osx >=11.0
+ - blosc >=1.21.6,<2.0a0
+ - brunsli >=0.1,<1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - c-blosc2 >=2.22.0,<2.23.0a0
+ - charls >=2.4.2,<2.5.0a0
+ - giflib >=5.2.2,<5.3.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - lcms2 >=2.17,<3.0a0
+ - lerc >=4.0.0,<5.0a0
+ - libaec >=1.1.4,<2.0a0
+ - libavif16 >=1.3.0,<2.0a0
+ - libbrotlicommon >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libcxx >=19
+ - libdeflate >=1.25,<1.26.0a0
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - libjxl >=0.11,<0.12.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - libzopfli >=1.0.3,<1.1.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - numpy >=1.23,<3
+ - openjpeg >=2.5.4,<3.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - snappy >=1.2.2,<1.3.0a0
+ - zfp >=1.0.1,<2.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1506075
+ timestamp: 1762836887045
+- conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda
+ sha256: 8ef69fa00c68fad34a3b7b260ea774fda9bd9274fd706d3baffb9519fd0063fe
+ md5: b5577bc2212219566578fd5af9993af6
+ depends:
+ - numpy
+ - pillow >=8.3.2
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 293226
+ timestamp: 1738273949742
+- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
+ md5: 63ccfdc3a3ce25b027b8767eb722fca8
+ depends:
+ - python >=3.9
+ - zipp >=3.20
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ size: 34641
+ timestamp: 1747934053147
+- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
+ sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39
+ md5: 8a77895fb29728b736a1a6c75906ea1a
+ depends:
+ - importlib-metadata ==8.7.0 pyhe01879c_1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 22143
+ timestamp: 1747934053147
+- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
+ sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19
+ md5: 9614359868482abba1bd15ce465e3c42
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 13387
+ timestamp: 1760831448842
+- conda: https://conda.anaconda.org/conda-forge/noarch/ipydatagrid-1.4.0-pyhcf101f3_2.conda
+ sha256: 05d121a997a7911e2644f5a58a62d24c8ae87d0e715f00ac537895fbc5c895d4
+ md5: 12234484af2c95fca5911cd4b90ba30a
+ depends:
+ - bqplot >=0.11.6
+ - ipywidgets >=7.6,<9
+ - pandas >=1.3.5
+ - py2vega >=0.5
+ - python >=3.10
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 681089
+ timestamp: 1755954998991
+- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyh5552912_0.conda
+ sha256: b5f7eaba3bb109be49d00a0a8bda267ddf8fa66cc1b54fc5944529ed6f3e8503
+ md5: 1849eec35b60082d2bd66b4e36dec2b6
+ depends:
+ - appnope
+ - __osx
+ - comm >=0.1.1
+ - debugpy >=1.6.5
+ - ipython >=7.23.1
+ - jupyter_client >=8.0.0
+ - jupyter_core >=4.12,!=5.0.*
+ - matplotlib-inline >=0.1
+ - nest-asyncio >=1.4
+ - packaging >=22
+ - psutil >=5.7
+ - python >=3.10
+ - pyzmq >=25
+ - tornado >=6.2
+ - traitlets >=5.4.0
+ - python
+ constrains:
+ - appnope >=0.1.2
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 132289
+ timestamp: 1761567969884
+- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.1.0-pyha191276_0.conda
+ sha256: a9d6b74115dbd62e19017ff8fa4885b07b5164427f262cc15b5307e5aaf3ee73
+ md5: c6f63cfe66adaa5650788e3106b6683a
+ depends:
+ - python
+ - __linux
+ - comm >=0.1.1
+ - debugpy >=1.6.5
+ - ipython >=7.23.1
+ - jupyter_client >=8.0.0
+ - jupyter_core >=4.12,!=5.0.*
+ - matplotlib-inline >=0.1
+ - nest-asyncio >=1.4
+ - packaging >=22
+ - psutil >=5.7
+ - python >=3.10
+ - pyzmq >=25
+ - tornado >=6.2
+ - traitlets >=5.4.0
+ - python
+ constrains:
+ - appnope >=0.1.2
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 133820
+ timestamp: 1761567932044
+- conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.7.0-pyh53cf698_0.conda
+ sha256: b27fb08b14d82e896f35fe5ce889665aabb075bd540f9761c838d1d09a3d9704
+ md5: 2d6b86a2e11b8cb2f20a432158ef10b9
+ depends:
+ - __unix
+ - pexpect >4.3
+ - decorator >=4.3.2
+ - ipython_pygments_lexers >=1.0.0
+ - jedi >=0.18.1
+ - matplotlib-inline >=0.1.5
+ - prompt-toolkit >=3.0.41,<3.1.0
+ - pygments >=2.11.0
+ - python >=3.11
+ - stack_data >=0.6.0
+ - traitlets >=5.13.0
+ - typing_extensions >=4.6
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 643036
+ timestamp: 1762350942197
+- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
+ sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104
+ md5: bd80ba060603cc228d9d81c257093119
+ depends:
+ - pygments
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 13993
+ timestamp: 1737123723464
+- conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.8-pyhd8ed1ab_0.conda
+ sha256: 6bb58afb7eabc8b4ac0c7e92707fb498313cc0164cf04e7ba1090dbf49af514b
+ md5: d68e3f70d1f068f1b66d94822fdc644e
+ depends:
+ - comm >=0.1.3
+ - ipython >=6.1.0
+ - jupyterlab_widgets >=3.0.15,<3.1.0
+ - python >=3.10
+ - traitlets >=4.3.1
+ - widgetsnbextension >=4.0.14,<4.1.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 114376
+ timestamp: 1762040524661
+- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8
+ md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
+ depends:
+ - parso >=0.8.3,<0.9.0
+ - python >=3.9
+ license: Apache-2.0 AND MIT
+ size: 843646
+ timestamp: 1733300981994
+- conda: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_1.conda
+ sha256: 3d2f20ee7fd731e3ff55c189db9c43231bc8bde957875817a609c227bcb295c6
+ md5: 972bdca8f30147135f951847b30399ea
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 23708
+ timestamp: 1733229244590
+- conda: https://conda.anaconda.org/conda-forge/noarch/jplephem-2.23-pyha4b2019_0.conda
+ sha256: 396678bcf99f925380e90b6ec4f0a8b3c6dc4c06a8e89ce777375ae44016f38e
+ md5: c778493b6112f330d4aa9569954119d3
+ depends:
+ - numpy
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 40807
+ timestamp: 1750675277409
+- conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
+ sha256: ed4b1878be103deb2e4c6d0eea3c9bdddfd7fc3178383927dce7578fb1063520
+ md5: 7bdc5e2cc11cb0a0f795bdad9732b0f2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LicenseRef-Public-Domain OR MIT
+ size: 169093
+ timestamp: 1733780223643
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda
+ sha256: 12f2d001e4e9ad255f1de139e873876d03d53f16396d73f7849b114eefec5291
+ md5: 2f23d5c1884fac280816ac2e5f858a65
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LicenseRef-Public-Domain OR MIT
+ size: 162312
+ timestamp: 1733779925983
+- conda: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.6-h466cfd8_1.conda
+ sha256: f256282e3b137f6acb366ddb4c4b76be3eeb19e7b0eb542e1cfbfcc84a5b740a
+ md5: fa2e871f2fd42bacbd7458929a8c7b81
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ license: LicenseRef-Public-Domain OR MIT
+ size: 145556
+ timestamp: 1733780384512
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda
+ sha256: 415c2376eef1bb47f8cc07279ecc54a2fa92f6dfdb508d337dd21d0157e3c8ad
+ md5: 0ff996d1cf523fa1f7ed63113f6cc052
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ license: LicenseRef-Public-Domain OR MIT
+ size: 145287
+ timestamp: 1733780601066
+- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
+ sha256: ac377ef7762e49cb9c4f985f1281eeff471e9adc3402526eea78e6ac6589cf1d
+ md5: 341fd940c242cf33e832c0402face56f
+ depends:
+ - attrs >=22.2.0
+ - jsonschema-specifications >=2023.3.6
+ - python >=3.9
+ - referencing >=0.28.4
+ - rpds-py >=0.7.1
+ - python
+ license: MIT
+ license_family: MIT
+ size: 81688
+ timestamp: 1755595646123
+- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
+ sha256: 0a4f3b132f0faca10c89fdf3b60e15abb62ded6fa80aebfc007d05965192aa04
+ md5: 439cd0f567d697b20a8f45cb70a1005a
+ depends:
+ - python >=3.10
+ - referencing >=0.31.0
+ - python
+ license: MIT
+ license_family: MIT
+ size: 19236
+ timestamp: 1757335715225
+- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
+ sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a
+ md5: 4ebae00eae9705b0c3d6d1018a81d047
+ depends:
+ - importlib-metadata >=4.8.3
+ - jupyter_core >=4.12,!=5.0.*
+ - python >=3.9
+ - python-dateutil >=2.8.2
+ - pyzmq >=23.0
+ - tornado >=6.2
+ - traitlets >=5.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 106342
+ timestamp: 1733441040958
+- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
+ sha256: 1d34b80e5bfcd5323f104dbf99a2aafc0e5d823019d626d0dce5d3d356a2a52a
+ md5: b38fe4e78ee75def7e599843ef4c1ab0
+ depends:
+ - __unix
+ - python
+ - platformdirs >=2.5
+ - python >=3.10
+ - traitlets >=5.3
+ - python
+ constrains:
+ - pywin32 >=300
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 65503
+ timestamp: 1760643864586
+- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.16-pyhcf101f3_1.conda
+ sha256: 5c03de243d7ae6247f39a402f4785d95e61c3be79ef18738e8f17155585d31a8
+ md5: dbf8b81974504fa51d34e436ca7ef389
+ depends:
+ - python >=3.10
+ - python
+ constrains:
+ - jupyterlab >=3,<5
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 216779
+ timestamp: 1762267481404
+- conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0
+ md5: 5aeabe88534ea4169d4c49998f293d6c
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 239104
+ timestamp: 1703333860145
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda
+ sha256: 157e151068d44042c56d6dd6f634d0b2c1fe084114ae56125299f518dd8b1500
+ md5: 720f7b9ccdf426ac73dafcf92f7d7bf4
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 238091
+ timestamp: 1703333994798
+- conda: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda
+ sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b
+ md5: cfaf81d843a80812fe16a68bdae60562
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 220376
+ timestamp: 1703334073774
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda
+ sha256: c9e0d3cf9255d4585fa9b3d07ace3bd934fdc6a67ef4532e5507282eff2364ab
+ md5: 879997fd868f8e9e4c2a12aec8583799
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 197843
+ timestamp: 1703334079437
+- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_8.conda
+ sha256: 305c22a251db227679343fd73bfde121e555d466af86e537847f4c8b9436be0d
+ md5: ff007ab0f0fdc53d245972bba8a6d40c
+ constrains:
+ - sysroot_linux-64 ==2.28
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
+ license_family: GPL
+ size: 1272697
+ timestamp: 1752669126073
+- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_8.conda
+ sha256: 9d0a86bd0c52c39db8821405f6057bc984789d36e15e70fa5c697f8ba83c1a19
+ md5: 2ab884dda7f1a08758fe12c32cc31d08
+ constrains:
+ - sysroot_linux-aarch64 ==2.28
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
+ license_family: GPL
+ size: 1244709
+ timestamp: 1752669116535
+- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
+ md5: b38117a3c920364aff79f870c984b4a3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ size: 134088
+ timestamp: 1754905959823
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
+ sha256: 5ce830ca274b67de11a7075430a72020c1fb7d486161a82839be15c2b84e9988
+ md5: e7df0aab10b9cbb73ab2a467ebfaf8c7
+ depends:
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ size: 129048
+ timestamp: 1754906002667
+- conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.9-py314h97ea11e_2.conda
+ sha256: a707d08c095d02148201f2da9fba465054fb750e33117e215892a4fefcc1b54a
+ md5: 57f1ce4f7ba6bcd460be8f83c8f04c69
+ depends:
+ - python
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 78071
+ timestamp: 1762488742381
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.9-py314h4702e76_2.conda
+ sha256: 515d95ebde2675e1926342ce036c158489a0de7aa5e81eb66c8256c86d1de5e6
+ md5: d0de5bd5d0fe6853a8f255bd5b125fcc
+ depends:
+ - python
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 83493
+ timestamp: 1762488923717
+- conda: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.9-py314hf3ac25a_2.conda
+ sha256: a9d220022002611515de26be256a08abcf046bf8e66a7d95d22cdef0842b0f84
+ md5: 28a77c52c425fa9c6d914c609c626b1a
+ depends:
+ - python
+ - libcxx >=19
+ - __osx >=10.13
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 69742
+ timestamp: 1762488879086
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.9-py314h42813c9_2.conda
+ sha256: c4d7e6653d343e768110ec77ac1c6c89f313f77a19a1f2cd60b7c7b8b0758bdf
+ md5: 9aa431bf603c231e8c77a1b0842a85ed
+ depends:
+ - python
+ - python 3.14.* *_cp314
+ - __osx >=11.0
+ - libcxx >=19
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 68534
+ timestamp: 1762489024029
+- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
+ md5: 3f43953b7d3fb3aaa1d0d0723d91e368
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1370023
+ timestamp: 1719463201255
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
+ sha256: 0ec272afcf7ea7fbf007e07a3b4678384b7da4047348107b2ae02630a570a815
+ md5: 29c10432a2ca1472b53f299ffb2ffa37
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1474620
+ timestamp: 1719463205834
+- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c
+ md5: d4765c524b1d91567886bde656fb514b
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1185323
+ timestamp: 1719463492984
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
+ sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b
+ md5: c6dc8a0fdec13a0565936655c33069a1
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1155530
+ timestamp: 1719463474401
+- conda: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda
+ sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411
+ md5: d10d9393680734a8febc4b362a4c94f2
+ depends:
+ - importlib-metadata
+ - packaging
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16298
+ timestamp: 1733636905835
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8
+ md5: 000e85703f0fd9594c81710dd5066471
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 248046
+ timestamp: 1739160907615
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda
+ sha256: 47cf6a4780dc41caa9bc95f020eed485b07010c9ccc85e9ef44b538fedb5341d
+ md5: b87b1abd2542cf65a00ad2e2461a3083
+ depends:
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 287007
+ timestamp: 1739161069194
+- conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda
+ sha256: bcb81543e49ff23e18dea79ef322ab44b8189fb11141b1af99d058503233a5fc
+ md5: bf210d0c63f2afb9e414a858b79f0eaa
+ depends:
+ - __osx >=10.13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 226001
+ timestamp: 1739161050843
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda
+ sha256: 310a62c2f074ebd5aa43b3cd4b00d46385ce680fa2132ecee255a200e2d2f15f
+ md5: 92a61fd30b19ebd5c1621a5bfe6d8b5f
+ depends:
+ - __osx >=11.0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 212125
+ timestamp: 1739161108467
+- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-955.13-h2eed689_9.conda
+ sha256: ff2ff265cd99e3ea50454369b1a3195bea56441cb08a58360cb7515f4de1698d
+ md5: e87f84a8dc0874343e00e1036cab6d5b
+ depends:
+ - ld64_osx-64 955.13 llvm21_1_h2cc85ee_9
+ - libllvm21 >=21.1.4,<21.2.0a0
+ constrains:
+ - cctools 1024.3.*
+ - cctools_osx-64 1024.3.*
+ license: APSL-2.0
+ license_family: Other
+ size: 19921
+ timestamp: 1762108836357
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-955.13-h5d6df6c_9.conda
+ sha256: 397a37b6e2e6fa37b442befb6cc66e17192cd45a4d346edf94f1590077477f02
+ md5: c6098d370386308f5eb4ac9013c8bbdc
+ depends:
+ - ld64_osx-arm64 955.13 llvm21_1_hde6573c_9
+ - libllvm21 >=21.1.4,<21.2.0a0
+ constrains:
+ - cctools_osx-arm64 1024.3.*
+ - cctools 1024.3.*
+ license: APSL-2.0
+ license_family: Other
+ size: 20011
+ timestamp: 1762108290729
+- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-955.13-llvm21_1_h2cc85ee_9.conda
+ sha256: 89193056e6589141e3554caa868938c59d29535846f94293770cdc3fbe53a908
+ md5: db25defaacc1db2c517215e306164c5d
+ depends:
+ - __osx >=10.13
+ - libcxx
+ - libllvm21 >=21.1.4,<21.2.0a0
+ - sigtool
+ - tapi >=1300.6.5,<1301.0a0
+ constrains:
+ - clang 21.1.*
+ - cctools 1024.3.*
+ - cctools_osx-64 1024.3.*
+ - ld64 955.13.*
+ license: APSL-2.0
+ license_family: Other
+ size: 1111129
+ timestamp: 1762108687354
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-955.13-llvm21_1_hde6573c_9.conda
+ sha256: 349a3b3812b88d6fc430af606bbed7cbae826d5eb8dd9062b21678e208ef9b12
+ md5: e75733dd00da97edca55b059d8defab7
+ depends:
+ - __osx >=11.0
+ - libcxx
+ - libllvm21 >=21.1.4,<21.2.0a0
+ - sigtool
+ - tapi >=1300.6.5,<1301.0a0
+ constrains:
+ - clang 21.1.*
+ - ld64 955.13.*
+ - cctools_osx-arm64 1024.3.*
+ - cctools 1024.3.*
+ license: APSL-2.0
+ license_family: Other
+ size: 1033450
+ timestamp: 1762108210685
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda
+ sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585
+ md5: 511ed8935448c1875776b60ad3daf3a1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - binutils_impl_linux-64 2.44
+ license: GPL-3.0-only
+ size: 741516
+ timestamp: 1762674665675
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_5.conda
+ sha256: cc03f3e2d5d48f1193a2d0822971b085d583327d6e20f2a5cf7d030ffdb35f9a
+ md5: 7c87c0b72575b30626a6dc5b49229f0c
+ depends:
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - binutils_impl_linux-aarch64 2.44
+ license: GPL-3.0-only
+ size: 782949
+ timestamp: 1762674873740
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff
+ md5: 9344155d33912347b37f0ae6c410a835
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: Apache
+ size: 264243
+ timestamp: 1745264221534
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-hfdc4d58_1.conda
+ sha256: f01df5bbf97783fac9b89be602b4d02f94353f5221acfd80c424ec1c9a8d276c
+ md5: 60dceb7e876f4d74a9cbd42bbbc6b9cf
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: Apache
+ size: 227184
+ timestamp: 1745265544057
+- conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hcca01a6_1.conda
+ sha256: cc1f1d7c30aa29da4474ec84026ec1032a8df1d7ec93f4af3b98bb793d01184e
+ md5: 21f765ced1a0ef4070df53cb425e1967
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ license: Apache-2.0
+ license_family: Apache
+ size: 248882
+ timestamp: 1745264331196
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda
+ sha256: 12361697f8ffc9968907d1a7b5830e34c670e4a59b638117a2cdfed8f63a38f8
+ md5: a74332d9b60b62905e3d30709df08bf1
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ license: Apache-2.0
+ license_family: Apache
+ size: 188306
+ timestamp: 1745264362794
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20250512.1-cxx17_hba17884_0.conda
+ sha256: dcd1429a1782864c452057a6c5bc1860f2b637dc20a2b7e6eacd57395bbceff8
+ md5: 83b160d4da3e1e847bf044997621ed63
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - libabseil-static =20250512.1=cxx17*
+ - abseil-cpp =20250512.1
+ license: Apache-2.0
+ license_family: Apache
+ size: 1310612
+ timestamp: 1750194198254
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20250512.1-cxx17_h201e9ed_0.conda
+ sha256: 28bb0a5f3177bb3b45a89d309b93bef65645671d1c97ae7bbcfa74481bf33f3c
+ md5: 4db30fe7ba05e2ce66595ed646064861
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - abseil-cpp =20250512.1
+ - libabseil-static =20250512.1=cxx17*
+ license: Apache-2.0
+ license_family: Apache
+ size: 1327580
+ timestamp: 1750194149128
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20250512.1-cxx17_hfc00f1c_0.conda
+ sha256: a878efebf62f039a1f1733c1e150a75a99c7029ece24e34efdf23d56256585b1
+ md5: ddf1acaed2276c7eb9d3c76b49699a11
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ constrains:
+ - abseil-cpp =20250512.1
+ - libabseil-static =20250512.1=cxx17*
+ license: Apache-2.0
+ license_family: Apache
+ size: 1162435
+ timestamp: 1750194293086
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20250512.1-cxx17_hd41c47c_0.conda
+ sha256: 7f0ee9ae7fa2cf7ac92b0acf8047c8bac965389e48be61bf1d463e057af2ea6a
+ md5: 360dbb413ee2c170a0a684a33c4fc6b8
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ constrains:
+ - libabseil-static =20250512.1=cxx17*
+ - abseil-cpp =20250512.1
+ license: Apache-2.0
+ license_family: Apache
+ size: 1174081
+ timestamp: 1750194620012
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3
+ md5: 01ba04e414e47f95c03d6ddd81fd37be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 36825
+ timestamp: 1749993532943
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda
+ sha256: 891844586d02bb528c18fddc6aa14dfd995532fbb8795156d215318e1de242f7
+ md5: 6360d4091c919d6e185f1fc3ac36716e
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 36847
+ timestamp: 1749993545798
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda
+ sha256: f4fe00ef0df58b670696c62f2ec3f6484431acbf366ecfbcb71141c81439e331
+ md5: 1a768b826dfc68e07786788d98babfc3
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 30034
+ timestamp: 1749993664561
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda
+ sha256: 0ea6b73b3fb1511615d9648186a7409e73b7a8d9b3d890d39df797730e3d1dbb
+ md5: 8ed0f86b7a5529b98ec73b43a53ce800
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 30173
+ timestamp: 1749993648288
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-22.0.0-h99e40f8_3_cpu.conda
+ build_number: 3
+ sha256: 965421021737fdb2cef2f85f247c8840309c46cf73253655a0e9054011d1238b
+ md5: 9d1326422f5f06fec734834a617042eb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - aws-sdk-cpp >=1.11.606,<1.11.607.0a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-identity-cpp >=1.13.2,<1.13.3.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-files-datalake-cpp >=12.13.0,<12.13.1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libgcc >=14
+ - libgoogle-cloud >=2.39.0,<2.40.0a0
+ - libgoogle-cloud-storage >=2.39.0,<2.40.0a0
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - orc >=2.2.1,<2.2.2.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - parquet-cpp <0.0a0
+ - arrow-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
+ license: Apache-2.0
+ license_family: APACHE
+ size: 6293141
+ timestamp: 1761789479175
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-22.0.0-hf4c6730_3_cpu.conda
+ build_number: 3
+ sha256: f41e947b6512fb42e66dcd6c23397a1995fe7196860d0b4d0983fae25c3572cb
+ md5: db13a4aa733641c78b0aff7c7a0426bd
+ depends:
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - aws-sdk-cpp >=1.11.606,<1.11.607.0a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-identity-cpp >=1.13.2,<1.13.3.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-files-datalake-cpp >=12.13.0,<12.13.1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libgcc >=14
+ - libgoogle-cloud >=2.39.0,<2.40.0a0
+ - libgoogle-cloud-storage >=2.39.0,<2.40.0a0
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - orc >=2.2.1,<2.2.2.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
+ license: Apache-2.0
+ license_family: APACHE
+ size: 6036809
+ timestamp: 1761789432804
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-22.0.0-hb95b15f_3_cpu.conda
+ build_number: 3
+ sha256: a66cb3930c3fc34250f536baa6c9b785a2da82a2f99e073546dc1eabee996910
+ md5: c20755935461d5e57f4d92f11ac287c6
+ depends:
+ - __osx >=11.0
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - aws-sdk-cpp >=1.11.606,<1.11.607.0a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-identity-cpp >=1.13.2,<1.13.3.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-files-datalake-cpp >=12.13.0,<12.13.1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libcxx >=19
+ - libgoogle-cloud >=2.39.0,<2.40.0a0
+ - libgoogle-cloud-storage >=2.39.0,<2.40.0a0
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - orc >=2.2.1,<2.2.2.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
+ license: Apache-2.0
+ license_family: APACHE
+ size: 4271857
+ timestamp: 1761789712758
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-22.0.0-h4f7d3e6_3_cpu.conda
+ build_number: 3
+ sha256: 1d3e5488b492ff22788286aff695b5eff8a1cfe2eeb7f11eea307ad890f3865f
+ md5: e983016b1ec807304674ef3b24f9383f
+ depends:
+ - __osx >=11.0
+ - aws-crt-cpp >=0.35.0,<0.35.1.0a0
+ - aws-sdk-cpp >=1.11.606,<1.11.607.0a0
+ - azure-core-cpp >=1.16.1,<1.16.2.0a0
+ - azure-identity-cpp >=1.13.2,<1.13.3.0a0
+ - azure-storage-blobs-cpp >=12.15.0,<12.15.1.0a0
+ - azure-storage-files-datalake-cpp >=12.13.0,<12.13.1.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libcxx >=19
+ - libgoogle-cloud >=2.39.0,<2.40.0a0
+ - libgoogle-cloud-storage >=2.39.0,<2.40.0a0
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - orc >=2.2.1,<2.2.2.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
+ license: Apache-2.0
+ license_family: APACHE
+ size: 4181599
+ timestamp: 1761789838470
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-22.0.0-h635bf11_3_cpu.conda
+ build_number: 3
+ sha256: 23f6993e8ade76c1119e5fcf30e10f64a600462e6287ad8ce03039761eddf0ab
+ md5: 570b643cbd688d83dfd33bb8bb3faa6c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 22.0.0 h99e40f8_3_cpu
+ - libarrow-compute 22.0.0 h8c2c5c3_3_cpu
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ size: 580479
+ timestamp: 1761789753482
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-22.0.0-hb326ee9_3_cpu.conda
+ build_number: 3
+ sha256: 2378bef3a82dcc00796da8e58f0850f164ac0bb14a1938eaa325837fb6633a77
+ md5: ed5e3d7b1c6852872d5690e866b3753a
+ depends:
+ - libarrow 22.0.0 hf4c6730_3_cpu
+ - libarrow-compute 22.0.0 hec39e8e_3_cpu
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ size: 540598
+ timestamp: 1761789628416
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-22.0.0-h2db2d7d_3_cpu.conda
+ build_number: 3
+ sha256: ed59fdf0ae9e6b42ab05104128db34f786716049bbb40c8665d8c4bc45f400d5
+ md5: 9c430e6b2ad599ba8c633f87af0cc5c4
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 hb95b15f_3_cpu
+ - libarrow-compute 22.0.0 h7751554_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 552494
+ timestamp: 1761790470821
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-22.0.0-hc317990_3_cpu.conda
+ build_number: 3
+ sha256: 5f564c915065e91fca1f5b1b77bc658b0613d16789bc0af2bb78206a1ec457b2
+ md5: 27841953c6c2db6c8738c04ae34458d9
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 h4f7d3e6_3_cpu
+ - libarrow-compute 22.0.0 h75845d1_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 518192
+ timestamp: 1761790339883
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-compute-22.0.0-h8c2c5c3_3_cpu.conda
+ build_number: 3
+ sha256: 9468058a3fc79a66df7acbe8b2a30637d3c8fab7fea615c1ae1661e4ba0d46f3
+ md5: 11f3aeba99decd766f41affb5eef94c8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 22.0.0 h99e40f8_3_cpu
+ - libgcc >=14
+ - libre2-11 >=2025.8.12
+ - libstdcxx >=14
+ - libutf8proc >=2.11.0,<2.12.0a0
+ - re2
+ license: Apache-2.0
+ license_family: APACHE
+ size: 2970054
+ timestamp: 1761789573653
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-compute-22.0.0-hec39e8e_3_cpu.conda
+ build_number: 3
+ sha256: 5eefeab2780493695e40125d7ecf688e411cef32eabe13dd73e414546d372585
+ md5: 736ee4fba59a3829552fe5b62ca20af7
+ depends:
+ - libarrow 22.0.0 hf4c6730_3_cpu
+ - libgcc >=14
+ - libre2-11 >=2025.8.12
+ - libstdcxx >=14
+ - libutf8proc >=2.11.0,<2.12.0a0
+ - re2
+ license: Apache-2.0
+ license_family: APACHE
+ size: 2607058
+ timestamp: 1761789524035
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-compute-22.0.0-h7751554_3_cpu.conda
+ build_number: 3
+ sha256: 113411d42557992e19e1f1e7db992af1ee50cd07391002eea0bc29c597a13353
+ md5: 8f5328b8ace9e8821e7c05c6e450ee55
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 hb95b15f_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libre2-11 >=2025.8.12
+ - libutf8proc >=2.11.0,<2.12.0a0
+ - re2
+ license: Apache-2.0
+ license_family: APACHE
+ size: 2394455
+ timestamp: 1761789948257
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-compute-22.0.0-h75845d1_3_cpu.conda
+ build_number: 3
+ sha256: 6d290bf5d40e74bd7d6f5381ef6aad93a41190f6df3e5c06318c84b4c6e04ab2
+ md5: c46b21654defa3ae7c7a472e904b747e
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 h4f7d3e6_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libre2-11 >=2025.8.12
+ - libutf8proc >=2.11.0,<2.12.0a0
+ - re2
+ license: Apache-2.0
+ license_family: APACHE
+ size: 2151062
+ timestamp: 1761790015338
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-22.0.0-h635bf11_3_cpu.conda
+ build_number: 3
+ sha256: acf68225881856b08f1cc4d5b31eaedf3f64e488ec197ea2474a92621e74e0a8
+ md5: 3cdf76f800439a09aa99e62fd0af560f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 22.0.0 h99e40f8_3_cpu
+ - libarrow-acero 22.0.0 h635bf11_3_cpu
+ - libarrow-compute 22.0.0 h8c2c5c3_3_cpu
+ - libgcc >=14
+ - libparquet 22.0.0 h7376487_3_cpu
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ size: 577896
+ timestamp: 1761789864298
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-22.0.0-hb326ee9_3_cpu.conda
+ build_number: 3
+ sha256: a185167a99045884d0f8898918cb31eeb43f452378ef2f39dc03a80bcdace974
+ md5: a302cf1c43fceb9f7907ae9b44da6ca2
+ depends:
+ - libarrow 22.0.0 hf4c6730_3_cpu
+ - libarrow-acero 22.0.0 hb326ee9_3_cpu
+ - libarrow-compute 22.0.0 hec39e8e_3_cpu
+ - libgcc >=14
+ - libparquet 22.0.0 h87079af_3_cpu
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ size: 544460
+ timestamp: 1761789687915
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-22.0.0-h2db2d7d_3_cpu.conda
+ build_number: 3
+ sha256: f83de31850a9c1646a2f865bbd120a0f795263772ac8b8a9230186cde0dedce6
+ md5: 70e46c4eff187a41d268633d63a299f3
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 hb95b15f_3_cpu
+ - libarrow-acero 22.0.0 h2db2d7d_3_cpu
+ - libarrow-compute 22.0.0 h7751554_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libparquet 22.0.0 habb56ca_3_cpu
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 533064
+ timestamp: 1761790814710
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-22.0.0-hc317990_3_cpu.conda
+ build_number: 3
+ sha256: f3636239d22774168ac729fc4a302740e6b0744b58f6081f585fa93e18f74aff
+ md5: 7a2a121876bff4378cf6d9cdac10aa18
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 h4f7d3e6_3_cpu
+ - libarrow-acero 22.0.0 hc317990_3_cpu
+ - libarrow-compute 22.0.0 h75845d1_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libparquet 22.0.0 h0ac143b_3_cpu
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 514703
+ timestamp: 1761790574079
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-22.0.0-h3f74fd7_3_cpu.conda
+ build_number: 3
+ sha256: 2d653993724e69005be9b112f153e16c15b35d9cd543e7e66290937176419c3e
+ md5: 46dab35d069968d2b0147a75d78059db
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 h99e40f8_3_cpu
+ - libarrow-acero 22.0.0 h635bf11_3_cpu
+ - libarrow-dataset 22.0.0 h635bf11_3_cpu
+ - libgcc >=14
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ size: 481791
+ timestamp: 1761789900880
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-22.0.0-hf75f729_3_cpu.conda
+ build_number: 3
+ sha256: 95c3aa7fa460f24e7a1ca38a2c935c6e7fb5d1221d5f7c8063c3f6b52149d04b
+ md5: 58a33077e1de4483cc81c3889542b96c
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 hf4c6730_3_cpu
+ - libarrow-acero 22.0.0 hb326ee9_3_cpu
+ - libarrow-dataset 22.0.0 hb326ee9_3_cpu
+ - libgcc >=14
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ size: 456005
+ timestamp: 1761789719791
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-22.0.0-h4653b8a_3_cpu.conda
+ build_number: 3
+ sha256: 49a920fb82643a9d80c2134e53e33048ed6b9a34b1cfdb9023f245c84e87ba22
+ md5: a0c8804a293e8884603729460732a6ba
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 hb95b15f_3_cpu
+ - libarrow-acero 22.0.0 h2db2d7d_3_cpu
+ - libarrow-dataset 22.0.0 h2db2d7d_3_cpu
+ - libcxx >=19
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 447691
+ timestamp: 1761790939224
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-22.0.0-h144af7f_3_cpu.conda
+ build_number: 3
+ sha256: b6d47f7c94779f7df383f503d57f8c5fae4ad2af507bf0e728f2af48d907903a
+ md5: 7ede27ab6df9c097701730c28484eee9
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 h4f7d3e6_3_cpu
+ - libarrow-acero 22.0.0 hc317990_3_cpu
+ - libarrow-dataset 22.0.0 hc317990_3_cpu
+ - libcxx >=19
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 452999
+ timestamp: 1761790675546
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda
+ sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30
+ md5: c09c4ac973f7992ba0c6bb1aafd77bd4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aom >=3.9.1,<3.10.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - libgcc >=14
+ - rav1e >=0.7.1,<0.8.0a0
+ - svt-av1 >=3.1.2,<3.1.3.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 139399
+ timestamp: 1756124751131
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libavif16-1.3.0-hfe54310_2.conda
+ sha256: 0b6265d49982a4953350308b70d6030efa0ee7cba733fa31effd367aad1ea49a
+ md5: b195be7724abc09a1a5efc57c0969004
+ depends:
+ - aom >=3.9.1,<3.10.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - libgcc >=14
+ - rav1e >=0.7.1,<0.8.0a0
+ - svt-av1 >=3.1.2,<3.1.3.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 139042
+ timestamp: 1756124783868
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.3.0-h1c10324_2.conda
+ sha256: f5fdb5ed48b905ef0c9ebcba2b9cf5fb041d15dcd50323d5d826650abf609709
+ md5: 7a3989f64b2781aaf6f5ca26b88afbba
+ depends:
+ - __osx >=10.13
+ - aom >=3.9.1,<3.10.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - rav1e >=0.7.1,<0.8.0a0
+ - svt-av1 >=3.1.2,<3.1.3.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 123701
+ timestamp: 1756124890405
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libavif16-1.3.0-hb06b76e_2.conda
+ sha256: 8bd31f1fc65a177815d9abebf42768a1d8b5b07b055d54485bcb4b1beb93993a
+ md5: ab7aaf5c139849228894d3ac72ec8f77
+ depends:
+ - __osx >=11.0
+ - aom >=3.9.1,<3.10.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - rav1e >=0.7.1,<0.8.0a0
+ - svt-av1 >=3.1.2,<3.1.3.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 110723
+ timestamp: 1756124882419
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda
+ build_number: 38
+ sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623
+ md5: 3509b5e2aaa5f119013c8969fdd9a905
+ depends:
+ - libopenblas >=0.3.30,<0.3.31.0a0
+ - libopenblas >=0.3.30,<1.0a0
+ constrains:
+ - libcblas 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ - liblapacke 3.9.0 38*_openblas
+ - mkl <2026
+ - liblapack 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17522
+ timestamp: 1761680084434
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-38_haddc8a3_openblas.conda
+ build_number: 38
+ sha256: e99230887ecab5e7cd0f6db396b817fb6ad329534800a85cad54d48796325b64
+ md5: 03293e88d210767a4e053e7281ff53cd
+ depends:
+ - libopenblas >=0.3.30,<0.3.31.0a0
+ - libopenblas >=0.3.30,<1.0a0
+ constrains:
+ - liblapacke 3.9.0 38*_openblas
+ - liblapack 3.9.0 38*_openblas
+ - mkl <2026
+ - blas 2.138 openblas
+ - libcblas 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17557
+ timestamp: 1761680163290
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-38_he492b99_openblas.conda
+ build_number: 38
+ sha256: 7005975d45fc0538d539f01760cba9132b8b341d4ee833dd2d3133ef6c19d7a9
+ md5: 96fcc4cb2feb80ab291bab0316ef3cbc
+ depends:
+ - libopenblas >=0.3.30,<0.3.31.0a0
+ - libopenblas >=0.3.30,<1.0a0
+ constrains:
+ - mkl <2026
+ - libcblas 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ - liblapack 3.9.0 38*_openblas
+ - liblapacke 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17666
+ timestamp: 1761680501294
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-38_h51639a9_openblas.conda
+ build_number: 38
+ sha256: 1850e189ca9b623497b857cf905bb2c8d57c8a42de5aed63a9b0bd857a1af2ae
+ md5: 90a49011b477170c063b385cbacf9138
+ depends:
+ - libopenblas >=0.3.30,<0.3.31.0a0
+ - libopenblas >=0.3.30,<1.0a0
+ constrains:
+ - liblapack 3.9.0 38*_openblas
+ - libcblas 3.9.0 38*_openblas
+ - mkl <2026
+ - liblapacke 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17695
+ timestamp: 1761680554564
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda
+ sha256: fbbcd11742bb8c96daa5f4f550f1804a902708aad2092b39bec3faaa2c8ae88a
+ md5: 9b3117ec960b823815b02190b41c0484
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 79664
+ timestamp: 1761592192478
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.2.0-hd4db518_0.conda
+ sha256: 236aceff38c9193c62844992e43ed9edb9ea3805f6dd9874de7ece28b4237581
+ md5: ede431bf5eb917815cd62dc3bf2703a4
+ depends:
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 80063
+ timestamp: 1761592487148
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.2.0-h105ed1c_0.conda
+ sha256: 2e6cadb4c044765ba249e019aa0f8d12a2a520600e783a4aa144d660c7bdd7db
+ md5: 61c2b02435758f1c6926b3733d34ea08
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 78540
+ timestamp: 1761592885103
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.2.0-h87ba0bc_0.conda
+ sha256: 5968a178cf374ff6a1d247b5093174dbd91d642551f81e4cb1acbe605a86b5ae
+ md5: 07d43b5e2b6f4a73caed8238b60fabf5
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 79198
+ timestamp: 1761592463100
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda
+ sha256: f7f357c33bd10afd58072ad4402853a8522d52d00d7ae9adb161ecf719f63574
+ md5: c183787d2b228775dece45842abbbe53
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.2.0 h09219d5_0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 34445
+ timestamp: 1761592202559
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.2.0-hb159aeb_0.conda
+ sha256: f031779c4faad1427daa16a4fc494ff578728bc07ca9ea582b53a3650628daf4
+ md5: 05d5e1d976c0b5cb0885a654a368ee8a
+ depends:
+ - libbrotlicommon 1.2.0 hd4db518_0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 33353
+ timestamp: 1761592502223
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.2.0-h660c9da_0.conda
+ sha256: 13550c1a8ffe2e77b23febcadacf6e3818ea7a0a1969edc740b87bc1d9760bf7
+ md5: c8f29cbebccb17826d805c15282c7e8b
+ depends:
+ - __osx >=10.13
+ - libbrotlicommon 1.2.0 h105ed1c_0
+ license: MIT
+ license_family: MIT
+ size: 30767
+ timestamp: 1761592911771
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.2.0-h95a88de_0.conda
+ sha256: 9a42c71ecea8e8ffe218fda017cb394b6a2c920304518c09c0ae42f0501dfde6
+ md5: 39d47dac85038e73b5f199f2b594a547
+ depends:
+ - __osx >=11.0
+ - libbrotlicommon 1.2.0 h87ba0bc_0
+ license: MIT
+ license_family: MIT
+ size: 29366
+ timestamp: 1761592481914
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda
+ sha256: 1370c8b1a215751c4592bf95d4b5d11bac91c577770efcb237e3a0f35c326559
+ md5: b7a924e3e9ebc7938ffc7d94fe603ed3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.2.0 h09219d5_0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 298252
+ timestamp: 1761592214576
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.2.0-ha5a240b_0.conda
+ sha256: 14d14beaa05232721a0954d16c4aefa02cf89ebaca727238f75b59f24e82b8b3
+ md5: 09ea194ce9f89f7664a8a6d8baa63d88
+ depends:
+ - libbrotlicommon 1.2.0 hd4db518_0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 309434
+ timestamp: 1761592517259
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.2.0-h2338291_0.conda
+ sha256: 195b092bc924f050c95ff950109babb9bb05ad0ad293e07783fdfe9e0daeae8c
+ md5: 57b746e8ed03d56fe908fd050c517299
+ depends:
+ - __osx >=10.13
+ - libbrotlicommon 1.2.0 h105ed1c_0
+ license: MIT
+ license_family: MIT
+ size: 310340
+ timestamp: 1761592941136
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.2.0-hb1b9735_0.conda
+ sha256: 9e05479f916548d1a383779facc4bb35a4f65a313590a81ec21818a10963eb02
+ md5: 4e3fec2238527187566e26a5ddbc2f83
+ depends:
+ - __osx >=11.0
+ - libbrotlicommon 1.2.0 h87ba0bc_0
+ license: MIT
+ license_family: MIT
+ size: 291133
+ timestamp: 1761592499578
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.77-h3ff7636_0.conda
+ sha256: 9517cce5193144af0fcbf19b7bd67db0a329c2cc2618f28ffecaa921a1cbe9d3
+ md5: 09c264d40c67b82b49a3f3b89037bd2e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - attr >=2.5.2,<2.6.0a0
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 121429
+ timestamp: 1762349484074
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.77-h68e9139_0.conda
+ sha256: 154eefd8f94010d89ba76a057949b9b1f75c7379bd0d19d4657c952bedcf5904
+ md5: 10fe36ec0a9f7b1caae0331c9ba50f61
+ depends:
+ - attr >=2.5.1,<2.6.0a0
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 108542
+ timestamp: 1762350753349
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda
+ build_number: 38
+ sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9
+ md5: bcd928a9376a215cd9164a4312dd5e98
+ depends:
+ - libblas 3.9.0 38_h4a7cf45_openblas
+ constrains:
+ - blas 2.138 openblas
+ - liblapack 3.9.0 38*_openblas
+ - liblapacke 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17503
+ timestamp: 1761680091587
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-38_hd72aa62_openblas.conda
+ build_number: 38
+ sha256: 249e8ba4c134405e2a62dc1272e989043f6acb2c755319bfaf7841400e3d9d71
+ md5: c0be45eadb1aa7499cc1f755687490ee
+ depends:
+ - libblas 3.9.0 38_haddc8a3_openblas
+ constrains:
+ - liblapacke 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ - liblapack 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17539
+ timestamp: 1761680168765
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-38_h9b27e0a_openblas.conda
+ build_number: 38
+ sha256: b7c393080aea5518cb87a1f1e44fd1b29f1564cf5f2610a2ddb575e582396779
+ md5: 3fd79655bb102d44663e5b6c84a526a8
+ depends:
+ - libblas 3.9.0 38_he492b99_openblas
+ constrains:
+ - blas 2.138 openblas
+ - liblapack 3.9.0 38*_openblas
+ - liblapacke 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17667
+ timestamp: 1761680519380
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-38_hb0561ab_openblas.conda
+ build_number: 38
+ sha256: 5ab5a9aa350a5838d91f0e4feed30f765cbea461ee9515bf214d459c3378a531
+ md5: eab61fcb277d6fa9f059bba437fd3612
+ depends:
+ - libblas 3.9.0 38_h51639a9_openblas
+ constrains:
+ - liblapack 3.9.0 38*_openblas
+ - liblapacke 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17685
+ timestamp: 1761680563279
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp19.1-19.1.7-default_hc369343_5.conda
+ sha256: 16ff6eea7319f5e7a8091028e6ed66a33b0ea5a859075354b93674e6f0a1087a
+ md5: 51c684dbc10be31478e7fc0e85d27bfe
+ depends:
+ - __osx >=10.13
+ - libcxx >=19.1.7
+ - libllvm19 >=19.1.7,<19.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 14856234
+ timestamp: 1759436552121
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp19.1-19.1.7-default_h73dfc95_5.conda
+ sha256: 6e62da7915a4a8b8bcd9a646e23c8a2180015d85a606c2a64e2385e6d0618949
+ md5: 0b1110de04b80ea62e93fef6f8056fbb
+ depends:
+ - __osx >=11.0
+ - libcxx >=19.1.7
+ - libllvm19 >=19.1.7,<19.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 14064272
+ timestamp: 1759435091038
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp21.1-21.1.5-default_h99862b1_1.conda
+ sha256: 23c005625fcffb36c36d13e45ccf35355b3306eff53c4f83649566f2caf05608
+ md5: 0351db6d39dd57e63309dabf6d5629c0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libllvm21 >=21.1.5,<21.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 21065809
+ timestamp: 1762471342921
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp21.1-21.1.5-default_he95a3c9_1.conda
+ sha256: c21caa44f9259467fc445f30dfc874ab0c0e0c41fca7d5ad5d91a1421047b2b2
+ md5: 2d77f8b4704d42dd73d1a9bda81456b5
+ depends:
+ - libgcc >=14
+ - libllvm21 >=21.1.5,<21.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 20651800
+ timestamp: 1762473305576
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp21.1-21.1.4-default_hc369343_0.conda
+ sha256: ef574e993bed40571d7e7c9d72536aae8b13e0752d4d44fd3d15faeeb068599f
+ md5: fc43cba1ebf198a56acfe640e19a9865
+ depends:
+ - __osx >=10.13
+ - libcxx >=21.1.4
+ - libllvm21 >=21.1.4,<21.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 14454624
+ timestamp: 1761213958720
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp21.1-21.1.5-default_h73dfc95_1.conda
+ sha256: 67cf975d23265dfe81fb3adf65856c8a7a90eae4f1ff70d6d42f7649f48dc6c0
+ md5: eb1d5a6ed141ae30ae1e6962502df0cb
+ depends:
+ - __osx >=11.0
+ - libcxx >=21.1.5
+ - libllvm21 >=21.1.5,<21.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 13676504
+ timestamp: 1762469516834
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-21.1.5-default_h746c552_1.conda
+ sha256: 070871a19d7a1bc750284721a1f722c527ef466b1461e0de84abbdbb755f4221
+ md5: dd39147d65f5edf3b3ebb06f5a0ef43e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libllvm21 >=21.1.5,<21.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 12340532
+ timestamp: 1762471521823
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-21.1.5-default_h94a09a5_1.conda
+ sha256: c0e1a3fc67ab158f9d7c4814c756dd6dda1c06fe6929ed4f37bf65973383d5af
+ md5: 5a0f48c382fade8a1758e8900373c8b8
+ depends:
+ - libgcc >=14
+ - libllvm21 >=21.1.5,<21.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 12114549
+ timestamp: 1762473502977
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-21.1.5-default_h7f9524c_1.conda
+ sha256: 8cfbc80a57e2443ae5b7fb261b7a22813e93f1bbe97c9ab955d5b3ddedff178e
+ md5: 781dd9afedb19cc94dcb26210315dc8d
+ depends:
+ - __osx >=10.13
+ - libcxx >=21.1.5
+ - libllvm21 >=21.1.5,<21.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 9005808
+ timestamp: 1762470347291
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-21.1.5-default_h6e8f826_1.conda
+ sha256: 77f286be324935f374c173450fa0907699cf0db4ccf608dfebddfb268b2ddd66
+ md5: e2b315924582f4b949539325a34e0cc0
+ depends:
+ - __osx >=11.0
+ - libcxx >=21.1.5
+ - libllvm21 >=21.1.5,<21.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 8513295
+ timestamp: 1762470070416
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2
+ sha256: b8b8c57a87da86b3ea24280fd6aa8efaf92f4e684b606bf2db5d3cb06ffbe2ea
+ md5: 268ee639c17ada0002fb04dd21816cc2
+ depends:
+ - libgcc-ng >=9.4.0
+ - libstdcxx-ng >=9.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18669
+ timestamp: 1633683724891
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2
+ sha256: 58477b67cc719060b5b069ba57161e20ba69b8695d154a719cb4b60caf577929
+ md5: 32bd82a6a625ea6ce090a81c3d34edeb
+ depends:
+ - libcxx >=11.1.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18765
+ timestamp: 1633683992603
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda
+ sha256: cb83980c57e311783ee831832eb2c20ecb41e7dee6e86e8b70b8cef0e43eab55
+ md5: d4a250da4737ee127fb1fa6452a9002e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 4523621
+ timestamp: 1749905341688
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h5cdc715_5.conda
+ sha256: f3282d27be35e5d29b5b798e5136427ec798916ee6374499be7b7682c8582b72
+ md5: ac0333d338076ef19170938bbaf97582
+ depends:
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 4550533
+ timestamp: 1749906839681
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda
+ sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529
+ md5: 01e149d4a53185622dc2e788281961f2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=14
+ - libnghttp2 >=1.67.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 460366
+ timestamp: 1762333743748
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.17.0-h7bfdcfb_0.conda
+ sha256: 100443d6cc03bd31f07082190d151fc84734a64624a79778e792b9b70754ffe5
+ md5: 468c392e41a0cfc30aed58139fc8d58f
+ depends:
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=14
+ - libnghttp2 >=1.67.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 478880
+ timestamp: 1762333723924
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.17.0-h7dd4100_0.conda
+ sha256: a58ca5a28c1cb481f65800781cee9411bd68e8bda43a69817aaeb635d25f7d75
+ md5: b3985ef7ca4cd2db59756bae2963283a
+ depends:
+ - __osx >=10.13
+ - krb5 >=1.21.3,<1.22.0a0
+ - libnghttp2 >=1.67.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 412858
+ timestamp: 1762334472915
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.17.0-hdece5d2_0.conda
+ sha256: 2980c5de44ac3ca2ecbd4a00756da1648ea2945d9e4a2ad9f216c7787df57f10
+ md5: 791003efe92c17ed5949b309c61a5ab1
+ depends:
+ - __osx >=11.0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libnghttp2 >=1.67.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 394183
+ timestamp: 1762334288445
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.5-h3d58e20_0.conda
+ sha256: 2471cbb0741494aeb1706ad4593a9b993bbcb9c874518833c08073623b958359
+ md5: d76e25c022d8dddc2055b981fa78a7e7
+ depends:
+ - __osx >=10.13
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 569679
+ timestamp: 1762257632306
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.5-hf598326_0.conda
+ sha256: cb441b85669eec99a593f59e6bb18c1d8a46d13eebadfc6a55f0b298109bf510
+ md5: fbfdbf6e554275d2661c4541f45fed53
+ depends:
+ - __osx >=11.0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 569449
+ timestamp: 1762258167196
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-21.1.5-h7c275be_0.conda
+ sha256: 7c685a75be6bc9a39780f01c86a592809c09331919638cab4dbf7b09b8edd405
+ md5: 1cdb2eb5e6bc5549e385d63fff4c3d87
+ depends:
+ - libcxx >=21.1.5
+ - libcxx-headers >=21.1.5,<21.1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 21848
+ timestamp: 1762257665259
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-21.1.5-h6dc3340_0.conda
+ sha256: c49f2b69718c3d6499e82d437eb76fd2b8a23cc0f9d9d5868016846fbf5d2e4e
+ md5: d61fc2f0fb5fd43abe35415f41dd20eb
+ depends:
+ - libcxx >=21.1.5
+ - libcxx-headers >=21.1.5,<21.1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 21833
+ timestamp: 1762258206101
+- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-21.1.5-h707e725_0.conda
+ sha256: b5b09ee43a3c7230be9cea1ce0b1c11271e92616ed5439af1524d969ac8ffd62
+ md5: f068792cec0b10e3505fbf3ac46e6f46
+ depends:
+ - __unix
+ constrains:
+ - libcxx-devel 21.1.5
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 1149993
+ timestamp: 1762257638033
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda
+ sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680
+ md5: 6c77a605a7a689d17d4819c0f8ac9a00
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 73490
+ timestamp: 1761979956660
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.25-h1af38f5_0.conda
+ sha256: 48814b73bd462da6eed2e697e30c060ae16af21e9fbed30d64feaf0aad9da392
+ md5: a9138815598fe6b91a1d6782ca657b0c
+ depends:
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 71117
+ timestamp: 1761979776756
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda
+ sha256: 025f8b1e85dd8254e0ca65f011919fb1753070eb507f03bca317871a884d24de
+ md5: 31aa65919a729dc48180893f62c25221
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 70840
+ timestamp: 1761980008502
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda
+ sha256: 5e0b6961be3304a5f027a8c00bd0967fc46ae162cffb7553ff45c70f51b8314c
+ md5: a6130c709305cd9828b4e1bd9ba0000c
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 55420
+ timestamp: 1761980066242
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.125-hb03c661_1.conda
+ sha256: c076a213bd3676cc1ef22eeff91588826273513ccc6040d9bea68bccdc849501
+ md5: 9314bc5a1fe7d1044dc9dfd3ef400535
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpciaccess >=0.18,<0.19.0a0
+ license: MIT
+ license_family: MIT
+ size: 310785
+ timestamp: 1757212153962
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdrm-2.4.125-he30d5cf_1.conda
+ sha256: 4e6cdb5dd37db794b88bec714b4418a0435b04d14e9f7afc8cc32f2a3ced12f2
+ md5: 2079727b538f6dd16f3fa579d4c3c53f
+ depends:
+ - libgcc >=14
+ - libpciaccess >=0.18,<0.19.0a0
+ license: MIT
+ license_family: MIT
+ size: 344548
+ timestamp: 1757212128414
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
+ md5: c277e0a4d549b03ac1e9d6cbbe3d017b
+ depends:
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 134676
+ timestamp: 1738479519902
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda
+ sha256: c0b27546aa3a23d47919226b3a1635fccdb4f24b94e72e206a751b33f46fd8d6
+ md5: fb640d776fc92b682a14e001980825b1
+ depends:
+ - ncurses
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 148125
+ timestamp: 1738479808948
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda
+ sha256: 6cc49785940a99e6a6b8c6edbb15f44c2dd6c789d9c283e5ee7bdfedd50b4cd6
+ md5: 1f4ed31220402fcddc083b4bff406868
+ depends:
+ - ncurses
+ - __osx >=10.13
+ - ncurses >=6.5,<7.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 115563
+ timestamp: 1738479554273
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda
+ sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631
+ md5: 44083d2d2c2025afca315c7a172eab2b
+ depends:
+ - ncurses
+ - __osx >=11.0
+ - ncurses >=6.5,<7.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 107691
+ timestamp: 1738479560845
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723
+ md5: c151d5eb730e9b7480e6d48c0fc44048
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ size: 44840
+ timestamp: 1731330973553
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda
+ sha256: 8962abf38a58c235611ce356b9899f6caeb0352a8bce631b0bcc59352fda455e
+ md5: cf105bce884e4ef8c8ccdca9fe6695e7
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ license: LicenseRef-libglvnd
+ size: 53551
+ timestamp: 1731330990477
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
+ sha256: 973af77e297f1955dd1f69c2cbdc5ab9dfc88388a5576cd152cda178af0fd006
+ md5: a9a13cb143bbaa477b1ebaefbe47a302
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 115123
+ timestamp: 1702146237623
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
+ sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f
+ md5: 36d33e440c31857372a72137f78bacf5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 107458
+ timestamp: 1702146414478
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
+ sha256: 01333cc7d6e6985dd5700b43660d90e9e58049182017fd24862088ecbe1458e4
+ md5: 96ae6083cd1ac9f6bc81631ac835b317
+ depends:
+ - libgcc-ng >=12
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 438992
+ timestamp: 1685726046519
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
+ sha256: 8c136d7586259bb5c0d2b913aaadc5b9737787ae4f40e3ad1beaf96c80b919b7
+ md5: 1a109764bff3bdc7bdd84088347d71dc
+ depends:
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 368167
+ timestamp: 1685726248899
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2
+ md5: 4211416ecba1866fab0c6470986c22d6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - expat 2.7.1.*
+ license: MIT
+ license_family: MIT
+ size: 74811
+ timestamp: 1752719572741
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda
+ sha256: 378cabff44ea83ce4d9f9c59f47faa8d822561d39166608b3e65d1e06c927415
+ md5: f75d19f3755461db2eb69401f5514f4c
+ depends:
+ - libgcc >=14
+ constrains:
+ - expat 2.7.1.*
+ license: MIT
+ license_family: MIT
+ size: 74309
+ timestamp: 1752719762749
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.7.1-h21dd04a_0.conda
+ sha256: 689862313571b62ee77ee01729dc093f2bf25a2f99415fcfe51d3a6cd31cce7b
+ md5: 9fdeae0b7edda62e989557d645769515
+ depends:
+ - __osx >=10.13
+ constrains:
+ - expat 2.7.1.*
+ license: MIT
+ license_family: MIT
+ size: 72450
+ timestamp: 1752719744781
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
+ sha256: 8fbb17a56f51e7113ed511c5787e0dec0d4b10ef9df921c4fd1cccca0458f648
+ md5: b1ca5f21335782f71a8bd69bdc093f67
+ depends:
+ - __osx >=11.0
+ constrains:
+ - expat 2.7.1.*
+ license: MIT
+ license_family: MIT
+ size: 65971
+ timestamp: 1752719657566
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric-2.3.1-ha770c72_1.conda
+ sha256: f705d6ab3827085c6dbf769d514f9ae9b6a6c03749530b0956b7228f14c03ff9
+ md5: 374ebf440b7e6094da551de9b9bc11ca
depends:
- - libstdcxx >=15
- - libgcc >=15
- - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
- - fftw >=3.3.10,<4.0a0
- - fftw * mpi_openmpi_*
- input:
- hash: a36e5948b4849afaf71c6c8b684f829cec5e9912848a8ba127ae7c81afe4e575
- globs: []
-- conda: .
- name: fans
- version: 0.5.2
- build: hbf21a9e_0
- subdir: linux-ppc64le
+ - libfabric1 2.3.1 h6c8fc0a_1
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 14090
+ timestamp: 1761789035774
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric-2.3.1-h8af1aa0_1.conda
+ sha256: 48004ea24cf695165733185f17cc9e05700ba20227a1d68d019709fe4c55ae82
+ md5: b9f1f01ab9f35347e70119046fbbfc92
depends:
- - libstdcxx >=15
- - libgcc >=15
- - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
- - fftw >=3.3.10,<4.0a0
- - fftw * mpi_openmpi_*
- input:
- hash: a36e5948b4849afaf71c6c8b684f829cec5e9912848a8ba127ae7c81afe4e575
- globs: []
-- conda: .
- name: fans
- version: 0.5.2
- build: hbf21a9e_0
- subdir: osx-64
+ - libfabric1 2.3.1 h3775113_1
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 14164
+ timestamp: 1761789242289
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric-2.3.1-h694c41f_1.conda
+ sha256: 9e3eb8dfc1e586fd8219251dff8dc0209586e48732fea8c51260c889c7d4c9bb
+ md5: 3c5f95aa13a4e04f37b6efa024230295
depends:
- - libcxx >=21
- - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
- - fftw >=3.3.10,<4.0a0
- - fftw * mpi_openmpi_*
- input:
- hash: a36e5948b4849afaf71c6c8b684f829cec5e9912848a8ba127ae7c81afe4e575
- globs: []
-- conda: .
- name: fans
- version: 0.5.2
- build: hbf21a9e_0
- subdir: osx-arm64
+ - libfabric1 2.3.1 h8616949_1
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 14165
+ timestamp: 1761789335966
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric-2.3.1-hce30654_1.conda
+ sha256: 171bc28ac742d3c751961fe8edb70ee5ae8b180582442d8123a79df3048ea53f
+ md5: e2242d5107199c8ed72d5a5067db59e5
+ depends:
+ - libfabric1 2.3.1 hc919400_1
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 14208
+ timestamp: 1761789508826
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric1-2.3.1-h6c8fc0a_1.conda
+ sha256: 89f570ac94641f32678dc9308831281da799f64f5dde11a57dc2c50f629ecf39
+ md5: 6a2f65a68dd77bdc7d026f5ed159362c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libnl >=3.11.0,<4.0a0
+ - rdma-core >=60.0
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 699614
+ timestamp: 1761789035077
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric1-2.3.1-h3775113_1.conda
+ sha256: 770fecb7e9b566027a8133257e4c88234c9b049cb75546a640baeec4c34a9a23
+ md5: 29c8fdbca1efce7c34f9fa9bc8dc8172
+ depends:
+ - libgcc >=14
+ - libnl >=3.11.0,<4.0a0
+ - rdma-core >=60.0
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 771844
+ timestamp: 1761789240785
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric1-2.3.1-h8616949_1.conda
+ sha256: 3fdce5caff170d86283c5e8995fe9b07dbbfdce48fae63ccd808ebbf2f0f2bd2
+ md5: b0a37e497fbdc41b68136bf6b51484a7
+ depends:
+ - __osx >=10.13
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 363449
+ timestamp: 1761789334516
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric1-2.3.1-hc919400_1.conda
+ sha256: dda725609fa2d4cf98f6ef99006b4d799bf3b51d51d287690620291b2ab6f719
+ md5: 3b695b9d151bdae98ac17e391ad2144f
+ depends:
+ - __osx >=11.0
+ license: BSD-2-Clause OR GPL-2.0-only
+ license_family: BSD
+ size: 330542
+ timestamp: 1761789505306
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda
+ sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54
+ md5: 35f29eec58405aaf55e01cb470d8c26a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 57821
+ timestamp: 1760295480630
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.5.2-hd65408f_0.conda
+ sha256: 6c3332e78a975e092e54f87771611db81dcb5515a3847a3641021621de76caea
+ md5: 0c5ad486dcfb188885e3cf8ba209b97b
+ depends:
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 55586
+ timestamp: 1760295405021
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-h750e83c_0.conda
+ sha256: 277dc89950f5d97f1683f26e362d6dca3c2efa16cb2f6fdb73d109effa1cd3d0
+ md5: d214916b24c625bcc459b245d509f22e
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 52573
+ timestamp: 1760295626449
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-he5f378a_0.conda
+ sha256: 9b8acdf42df61b7bfe8bdc545c016c29e61985e79748c64ad66df47dbc2e295f
+ md5: 411ff7cd5d1472bba0f55c0faf04453b
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 40251
+ timestamp: 1760295839166
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
+ md5: f4084e4e6577797150f9b04a4560ceb0
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 7664
+ timestamp: 1757945417134
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfreetype-2.14.1-h8af1aa0_0.conda
+ sha256: 342c07e4be3d09d04b531c889182a11a488e7e9ba4b75f642040e4681c1e9b98
+ md5: 1e61fb236ccd3d6ccaf9e91cb2d7e12d
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 7753
+ timestamp: 1757945484817
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.1-h694c41f_0.conda
+ sha256: 035e23ef87759a245d51890aedba0b494a26636784910c3730d76f3dc4482b1d
+ md5: e0e2edaf5e0c71b843e25a7ecc451cc9
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 7780
+ timestamp: 1757945952392
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.1-hce30654_0.conda
+ sha256: 9de25a86066f078822d8dd95a83048d7dc2897d5d655c0e04a8a54fca13ef1ef
+ md5: f35fb38e89e2776994131fbf961fa44b
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 7810
+ timestamp: 1757947168537
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
+ md5: 8e7251989bca326a28f4a5ffbd74557a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpng >=1.6.50,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 386739
+ timestamp: 1757945416744
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfreetype6-2.14.1-hdae7a39_0.conda
+ sha256: cedc83d9733363aca353872c3bfed2e188aa7caf57b57842ba0c6d2765652b7c
+ md5: 9c2f56b6e011c6d8010ff43b796aab2f
+ depends:
+ - libgcc >=14
+ - libpng >=1.6.50,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 423210
+ timestamp: 1757945484108
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.1-h6912278_0.conda
+ sha256: f5f28092e368efc773bcd1c381d123f8b211528385a9353e36f8808d00d11655
+ md5: dfbdc8fd781dc3111541e4234c19fdbd
+ depends:
+ - __osx >=10.13
+ - libpng >=1.6.50,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 374993
+ timestamp: 1757945949585
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.1-h6da58f4_0.conda
+ sha256: cc4aec4c490123c0f248c1acd1aeab592afb6a44b1536734e20937cda748f7cd
+ md5: 6d4ede03e2a8e20eb51f7f681d2a2550
+ depends:
+ - __osx >=11.0
+ - libpng >=1.6.50,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ size: 346703
+ timestamp: 1757947166116
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
+ sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45
+ md5: c0374badb3a5d4b1372db28d19462c53
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgomp 15.2.0 h767d61c_7
+ - libgcc-ng ==15.2.0=*_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 822552
+ timestamp: 1759968052178
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-15.2.0-he277a41_7.conda
+ sha256: 616f5960930ad45b48c57f49c3adddefd9423674b331887ef0e69437798c214b
+ md5: afa05d91f8d57dd30985827a09c21464
+ depends:
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgomp 15.2.0 he277a41_7
+ - libgcc-ng ==15.2.0=*_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 510719
+ timestamp: 1759967448307
+- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-h73f6952_107.conda
+ sha256: 67323768cddb87e744d0e593f92445cd10005e04259acd3e948c7ba3bcb03aed
+ md5: 85fce551e54a1e81b69f9ffb3ade6aee
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 2728965
+ timestamp: 1759967882886
+- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h1ed5458_107.conda
+ sha256: 79aba324fac4fcdd95f1f634c04c63daaf290f86416504204c6ac20ec512ff40
+ md5: f21f14e320717eb16ed8739258dbfad0
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 2112340
+ timestamp: 1759967371861
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
+ sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad
+ md5: 280ea6eee9e2ddefde25ff799c4f0363
+ depends:
+ - libgcc 15.2.0 h767d61c_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29313
+ timestamp: 1759968065504
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-15.2.0-he9431aa_7.conda
+ sha256: 7d98979b2b5698330007b0146b8b4b95b3790378de12129ce13c9fc88c1ef45a
+ md5: a5ce1f0a32f02c75c11580c5b2f9258a
+ depends:
+ - libgcc 15.2.0 he277a41_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29261
+ timestamp: 1759967452303
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda
+ sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02
+ md5: 8621a450add4e231f676646880703f49
+ depends:
+ - libgfortran5 15.2.0 hcd61629_7
+ constrains:
+ - libgfortran-ng ==15.2.0=*_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29275
+ timestamp: 1759968110483
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-15.2.0-he9431aa_7.conda
+ sha256: 78d958444dd41c4b590f030950a29b4278922147f36c2221c84175eedcbc13f1
+ md5: ffe6ad135bd85bb594a6da1d78768f7c
+ depends:
+ - libgfortran5 15.2.0 h87db57e_7
+ constrains:
+ - libgfortran-ng ==15.2.0=*_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29294
+ timestamp: 1759967474985
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h306097a_1.conda
+ sha256: 97551952312cf4954a7ad6ba3fd63c739eac65774fe96ddd121c67b5196a8689
+ md5: cd5393330bff47a00d37a117c65b65d0
+ depends:
+ - libgfortran5 15.2.0 h336fb69_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 134506
+ timestamp: 1759710031253
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-hfcf01ff_1.conda
+ sha256: e9a5d1208b9dc0b576b35a484d527d9b746c4e65620e0d77c44636033b2245f0
+ md5: f699348e3f4f924728e33551b1920f79
+ depends:
+ - libgfortran5 15.2.0 h742603c_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 134016
+ timestamp: 1759712902814
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_7.conda
+ sha256: 63e1d1ce309e3f42a11637ecf0f29b5cf1550ca6d46412edf82e8e249b1917a1
+ md5: beeb74a6fe5ff118451cf0581bfe2642
+ depends:
+ - libgfortran 15.2.0 h69a702a_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29330
+ timestamp: 1759968394141
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-15.2.0-he9431aa_7.conda
+ sha256: 4afdfe0a1ac87a2c3b186232b9386bda3a51655e6779c0f75c7ad4352e58d3a5
+ md5: e810efad68f395154237c4dce83aa482
+ depends:
+ - libgfortran 15.2.0 he9431aa_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29294
+ timestamp: 1759967654179
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda
+ sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34
+ md5: f116940d825ffc9104400f0d7f1a4551
depends:
- - libcxx >=21
- - hdf5 >=1.14.6,<1.14.7.0a0 mpi_openmpi_*
- - fftw >=3.3.10,<4.0a0
- - fftw * mpi_openmpi_*
- input:
- hash: a36e5948b4849afaf71c6c8b684f829cec5e9912848a8ba127ae7c81afe4e575
- globs: []
-- conda: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_openmpi_h99e62ba_10.conda
- sha256: 59a1fd0daa71bd5529e19b4da8aae2ded4d4ef05e5e31d80c39cbe2fc7664b6a
- md5: 3fcbf2ef5f3a8f0ed5683f60fe08293b
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=15.2.0
+ constrains:
+ - libgfortran 15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 1572758
+ timestamp: 1759968082504
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-15.2.0-h87db57e_7.conda
+ sha256: ae9a8290a7ff0fa28f540208906896460c62dcfbfa31ff9b8c2b398b5bbd34b1
+ md5: dd7233e2874ea59e92f7d24d26bb341b
depends:
- - libgcc-ng >=12
- - libgfortran-ng
- - libgfortran5 >=12.3.0
- - libstdcxx-ng >=12
- - openmpi >=5.0.3,<6.0a0
- license: GPL-2.0-or-later
+ - libgcc >=15.2.0
+ constrains:
+ - libgfortran 15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- purls: []
- size: 2090852
- timestamp: 1717758725106
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_openmpi_hc95d1d6_10.conda
- sha256: 6182e15d97deb010efc714b31d29c7d85c41e9c43436656854a32e410790702a
- md5: cc7e04f4dc380344235fa098b72636e6
+ size: 1145738
+ timestamp: 1759967460371
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-h336fb69_1.conda
+ sha256: 1d53bad8634127b3c51281ce6ad3fbf00f7371824187490a36e5182df83d6f37
+ md5: b6331e2dcc025fc79cd578f4c181d6f2
depends:
- - libgcc-ng >=12
- - libgfortran-ng
- - libgfortran5 >=12.3.0
- - libstdcxx-ng >=12
- - openmpi >=5.0.3,<6.0a0
- license: GPL-2.0-or-later
+ - llvm-openmp >=8.0.0
+ constrains:
+ - libgfortran 15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- purls: []
- size: 1456347
- timestamp: 1717761767842
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/fftw-3.3.10-mpi_openmpi_hf12c5a9_10.conda
- sha256: 6add23cfe221d8b789ad40d82edb9f99a01d86fa5099a3863f986d37859a895e
- md5: 18852024da5c86f2c2966fd588ae9851
+ size: 1236316
+ timestamp: 1759709318982
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-h742603c_1.conda
+ sha256: 18808697013a625ca876eeee3d86ee5b656f17c391eca4a4bc70867717cc5246
+ md5: afccf412b03ce2f309f875ff88419173
depends:
- - libgcc-ng >=12
- - libgfortran-ng
- - libgfortran5 >=12.3.0
- - libstdcxx-ng >=12
- - openmpi >=5.0.3,<6.0a0
- license: GPL-2.0-or-later
+ - llvm-openmp >=8.0.0
+ constrains:
+ - libgfortran 15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- purls: []
- size: 1701461
- timestamp: 1717757804069
-- conda: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_openmpi_h3b45436_10.conda
- sha256: e5243098906110d72ac20009a5222c2a48ebc5d2b91f17285cba039424ca4692
- md5: a60f32d3fb63772264658b0d8bc04801
+ size: 764028
+ timestamp: 1759712189275
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d
+ md5: 928b8be80851f5d8ffb016f9c81dae7a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - libglx 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ size: 134712
+ timestamp: 1731330998354
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda
+ sha256: 3e954380f16255d1c8ae5da3bd3044d3576a0e1ac2e3c3ff2fe8f2f1ad2e467a
+ md5: 0d00176464ebb25af83d40736a2cd3bb
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ - libglx 1.7.0 hd24410f_2
+ license: LicenseRef-libglvnd
+ size: 145442
+ timestamp: 1731331005019
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.86.1-h32235b2_2.conda
+ sha256: fc82277d0d6340743732c48dcbac3f4e9ee36902649a7d9a02622b0713ce3666
+ md5: 986dcf488a1aced411da84753d93d078
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ constrains:
+ - glib 2.86.1 *_2
+ license: LGPL-2.1-or-later
+ size: 3933707
+ timestamp: 1762787455198
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.86.1-he84ff74_2.conda
+ sha256: 616e21dab514a6301fd459c5e0486a830234e6084c7a5e3fca7fe098619a9567
+ md5: 97f2100853b1a2739bab1b2cadf6a8ea
+ depends:
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ constrains:
+ - glib 2.86.1 *_2
+ license: LGPL-2.1-or-later
+ size: 4021900
+ timestamp: 1762787673404
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.86.1-h6ca3a76_2.conda
+ sha256: 0d784e942fad1962af1b2cf4f2a30694bef38749f25ab51d2347dfdb32c54a66
+ md5: 1ab6f1ce7faf27c7c5b5521241889357
depends:
- __osx >=10.13
- - libcxx >=16
- - libgfortran >=5
- - libgfortran5 >=12.3.0
- - libgfortran5 >=13.2.0
- - llvm-openmp >=16.0.6
- - openmpi >=5.0.3,<6.0a0
- license: GPL-2.0-or-later
- license_family: GPL
- purls: []
- size: 1846493
- timestamp: 1717758687886
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_h260600c_10.conda
- sha256: 258968d1c176b4091619c5b26461cfc02771f1f859f172066b7ceff7fb7b31ad
- md5: 63e5867d6a7278503142b2bb9f0caf5d
+ - libffi >=3.5.2,<3.6.0a0
+ - libiconv >=1.18,<2.0a0
+ - libintl >=0.25.1,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ constrains:
+ - glib 2.86.1 *_2
+ license: LGPL-2.1-or-later
+ size: 3696715
+ timestamp: 1762788571874
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.86.1-he69a767_2.conda
+ sha256: ea49abd747b91cddf555f4ccd184cee8c1916363a78d4a7fe24b24d1163423c6
+ md5: 6d6f8c7d3a52e2c193fb2f9ba2e0ef0b
depends:
- __osx >=11.0
- - libcxx >=16
- - libgfortran >=5
- - libgfortran5 >=12.3.0
- - libgfortran5 >=13.2.0
- - llvm-openmp >=16.0.6
- - openmpi >=5.0.3,<6.0a0
- license: GPL-2.0-or-later
- license_family: GPL
- purls: []
- size: 799578
- timestamp: 1717757931382
-- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.20.0-pyhd8ed1ab_0.conda
- sha256: 19025a4078ff3940d97eb0da29983d5e0deac9c3e09b0eabf897daeaf9d1114e
- md5: 66b8b26023b8efdf8fcb23bac4b6325d
+ - libffi >=3.5.2,<3.6.0a0
+ - libiconv >=1.18,<2.0a0
+ - libintl >=0.25.1,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ constrains:
+ - glib 2.86.1 *_2
+ license: LGPL-2.1-or-later
+ size: 3661248
+ timestamp: 1762789184977
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ sha256: a0105eb88f76073bbb30169312e797ed5449ebb4e964a756104d6e54633d17ef
+ md5: 8422fcc9e5e172c91e99aef703b3ce65
depends:
- - python >=3.10
- license: Unlicense
- purls:
- - pkg:pypi/filelock?source=hash-mapping
- size: 17976
- timestamp: 1759948208140
-- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-hcacfade_7.conda
- sha256: 6a19411e3fe4e4f55509f4b0c374663b3f8903ed5ae1cc94be1b88846c50c269
- md5: 3d75679d5e2bd547cb52b913d73f69ef
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ license: SGI-B-2.0
+ size: 325262
+ timestamp: 1748692137626
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.3-h5ad3122_1.conda
+ sha256: ddb72f17f6ec029069cddd2e489e63e371e75661cd2408509370508490bb23ad
+ md5: 4d836b60421894bf9a6c77c8ca36782c
depends:
- - binutils_impl_linux-64 >=2.40
- - libgcc >=15.2.0
- - libgcc-devel_linux-64 15.2.0 h73f6952_107
- - libgomp >=15.2.0
- - libsanitizer 15.2.0 hb13aed2_7
- - libstdcxx >=15.2.0
- - sysroot_linux-64
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ license: SGI-B-2.0
+ size: 310655
+ timestamp: 1748692200349
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850
+ md5: 434ca7e50e40f4918ab701e3facd59a0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ license: LicenseRef-libglvnd
+ size: 132463
+ timestamp: 1731330968309
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda
+ sha256: 57ec3898a923d4bcc064669e90e8abfc4d1d945a13639470ba5f3748bd3090da
+ md5: 9e115653741810778c9a915a2f8439e7
+ license: LicenseRef-libglvnd
+ size: 152135
+ timestamp: 1731330986070
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7
+ md5: c8013e438185f33b13814c5c488acd5c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: LicenseRef-libglvnd
+ size: 75504
+ timestamp: 1731330988898
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda
+ sha256: 6591af640cb05a399fab47646025f8b1e1a06a0d4bbb4d2e320d6629b47a1c61
+ md5: 1d4269e233636148696a67e2d30dad2a
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: LicenseRef-libglvnd
+ size: 77736
+ timestamp: 1731330998960
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
+ sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca
+ md5: f7b4d76975aac7e5d9e6ad13845f92fe
+ depends:
+ - __glibc >=2.17,<3.0.a0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 77766660
- timestamp: 1759968214246
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h679d96a_7.conda
- sha256: 5ac675b608fc091966253eeacdfc305f233700c08799afe92407ee2e787e2a0f
- md5: da10bdcb8b289c1d014fdd908647317c
- depends:
- - binutils_impl_linux-aarch64 >=2.40
- - libgcc >=15.2.0
- - libgcc-devel_linux-aarch64 15.2.0 h1ed5458_107
- - libgomp >=15.2.0
- - libsanitizer 15.2.0 h8b511b7_7
- - libstdcxx >=15.2.0
- - sysroot_linux-aarch64
+ size: 447919
+ timestamp: 1759967942498
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-15.2.0-he277a41_7.conda
+ sha256: 0a024f1e4796f5d90fb8e8555691dad1b3bdfc6ac3c2cd14d876e30f805fcac7
+ md5: 34cef4753287c36441f907d5fdd78d42
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 74019908
- timestamp: 1759967541608
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_impl_linux-ppc64le-15.2.0-hb48859e_7.conda
- sha256: 137ece0dbd82a8af8790b92b58e8684fa6a66caf7e95f31d817eb35038a6608f
- md5: 8862059af0a0ce6568155d5e2b5dc817
+ size: 450308
+ timestamp: 1759967379407
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.39.0-hdb79228_0.conda
+ sha256: d3341cf69cb02c07bbd1837968f993da01b7bd467e816b1559a3ca26c1ff14c5
+ md5: a2e30ccd49f753fd30de0d30b1569789
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - openssl >=3.5.1,<4.0a0
+ constrains:
+ - libgoogle-cloud 2.39.0 *_0
+ license: Apache-2.0
+ license_family: Apache
+ size: 1307909
+ timestamp: 1752048413383
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.39.0-h857b6ca_0.conda
+ sha256: 70440082f12ddf5574b8d551994d7521a3562ea2417d251bfccf21d6c8b5daed
+ md5: b1cb946eff9a59c03fc1a8a536391ae0
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - openssl >=3.5.1,<4.0a0
+ constrains:
+ - libgoogle-cloud 2.39.0 *_0
+ license: Apache-2.0
+ license_family: Apache
+ size: 1291507
+ timestamp: 1752049131897
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.39.0-hed66dea_0.conda
+ sha256: 9b50362bafd60c4a3eb6c37e6dbf7e200562dab7ae1b282b1ebd633d4d77d4bd
+ md5: 06564befaabd2760dfa742e47074bad2
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - openssl >=3.5.1,<4.0a0
+ constrains:
+ - libgoogle-cloud 2.39.0 *_0
+ license: Apache-2.0
+ license_family: Apache
+ size: 899629
+ timestamp: 1752048034356
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.39.0-head0a95_0.conda
+ sha256: 209facdb8ea5b68163f146525720768fa3191cef86c82b2538e8c3cafa1e9dd4
+ md5: ad7272a081abe0966d0297691154eda5
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - openssl >=3.5.1,<4.0a0
+ constrains:
+ - libgoogle-cloud 2.39.0 *_0
+ license: Apache-2.0
+ license_family: Apache
+ size: 876283
+ timestamp: 1752047598741
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.39.0-hdbdcf42_0.conda
+ sha256: 59eb8365f0aee384f2f3b2a64dcd454f1a43093311aa5f21a8bb4bd3c79a6db8
+ md5: bd21962ff8a9d1ce4720d42a35a4af40
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libgcc >=14
+ - libgoogle-cloud 2.39.0 hdb79228_0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ size: 804189
+ timestamp: 1752048589800
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.39.0-h66d5b86_0.conda
+ sha256: f8e1909ac38e389e1baf95bd1495b009a3ff39840f3082858f1c3a4906782342
+ md5: b46a9856a57f8ea2359a75b822b8f93a
+ depends:
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libgcc >=14
+ - libgoogle-cloud 2.39.0 h857b6ca_0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ size: 749486
+ timestamp: 1752049276086
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.39.0-h8ac052b_0.conda
+ sha256: fe790fc9ed8ffa468d27e886735fe11844369caee406d98f1da2c0d8aed0401e
+ md5: 7600fb1377c8eb5a161e4a2520933daa
+ depends:
+ - __osx >=11.0
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libcxx >=19
+ - libgoogle-cloud 2.39.0 hed66dea_0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ size: 543323
+ timestamp: 1752048443047
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.39.0-hfa3a374_0.conda
+ sha256: a5160c23b8b231b88d0ff738c7f52b0ee703c4c0517b044b18f4d176e729dfd8
+ md5: 147a468b9b6c3ced1fccd69b864ae289
+ depends:
+ - __osx >=11.0
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libcxx >=19
+ - libgoogle-cloud 2.39.0 head0a95_0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ size: 525153
+ timestamp: 1752047915306
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.73.1-h3288cfb_1.conda
+ sha256: bc9d32af6167b1f5bcda216dc44eddcb27f3492440571ab12f6e577472a05e34
+ md5: ff63bb12ac31c176ff257e3289f20770
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.34.5,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libre2-11 >=2025.8.12
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - re2
+ constrains:
+ - grpc-cpp =1.73.1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 8349777
+ timestamp: 1761058442526
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.73.1-h002f8c2_1.conda
+ sha256: 880d6520092584ed8513c4686ab1a7c21b70a6291a90fca89317c3372b372e0a
+ md5: 02b9b0ea7133bafa7f5bc88adc5f8bad
+ depends:
+ - c-ares >=1.34.5,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libre2-11 >=2025.8.12
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - re2
+ constrains:
+ - grpc-cpp =1.73.1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 8110599
+ timestamp: 1761052861905
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.73.1-h451496d_1.conda
+ sha256: 30378f4c9055224fecd1da8b9a65e2c0293cde68edca0f8a306fd9e92fd6ee1f
+ md5: d6ea2acfae86b523b54938c6bc30e378
depends:
- - binutils_impl_linux-ppc64le >=2.40
- - libgcc >=15.2.0
- - libgcc-devel_linux-ppc64le 15.2.0 ha42e3bc_107
- - libgomp >=15.2.0
- - libsanitizer 15.2.0 h1dd130c_7
- - libstdcxx >=15.2.0
- - sysroot_linux-ppc64le
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 75158309
- timestamp: 1759971158964
-- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-15.2.0-h862fb80_12.conda
- sha256: 3aa39868fef7512ccb854716c220ca676741ca4291bc461e81c2ceb6b58dbd95
- md5: 5e4fff12f2efde0b941e126e4553e323
+ - __osx >=11.0
+ - c-ares >=1.34.5,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcxx >=19
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libre2-11 >=2025.8.12
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - re2
+ constrains:
+ - grpc-cpp =1.73.1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 5468625
+ timestamp: 1761060387315
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.73.1-h3063b79_1.conda
+ sha256: c2099872b1aa06bf8153e35e5b706d2000c1fc16f4dde2735ccd77a0643a4683
+ md5: f5856b3b9dae4463348a7ec23c1301f2
depends:
- - gcc_impl_linux-64 15.2.0.*
- - binutils_linux-64
- - sysroot_linux-64
- license: BSD-3-Clause
- license_family: BSD
- size: 27952
- timestamp: 1759866717850
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-15.2.0-h0139441_12.conda
- sha256: f84bf823ad91b9bb382e33662d34b4ad6a619f7e7fc59bbc563448f10e0461f7
- md5: c0111ff3663f29aee1b30dc0f89b5aa6
+ - __osx >=11.0
+ - c-ares >=1.34.5,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcxx >=19
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libre2-11 >=2025.8.12
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - re2
+ constrains:
+ - grpc-cpp =1.73.1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 5377798
+ timestamp: 1761053602943
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.12.1-default_h7f8ec31_1002.conda
+ sha256: f7fbc792dbcd04bf27219c765c10c239937b34c6c1a1f77a5827724753e02da1
+ md5: c01021ae525a76fe62720c7346212d74
depends:
- - gcc_impl_linux-aarch64 15.2.0.*
- - binutils_linux-aarch64
- - sysroot_linux-aarch64
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
license: BSD-3-Clause
license_family: BSD
- size: 27723
- timestamp: 1759866766454
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_linux-ppc64le-15.2.0-h9bf53f2_12.conda
- sha256: c04528164ced39bc4d566a8558b322edb2306d6bf7d188d7947d570d3f65f530
- md5: 2e57cba5f84c8fe1b09101e1a6777541
+ size: 2450642
+ timestamp: 1757624375958
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h7949937_1002.conda
+ sha256: 8cc272e76e06411ba1b9edf55a3049b010461c6f80b00e33baba1d168106287f
+ md5: b94fcabb2d99e4372a59c6c600c9d1b7
depends:
- - gcc_impl_linux-ppc64le 15.2.0.*
- - binutils_linux-ppc64le
- - sysroot_linux-ppc64le
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
license: BSD-3-Clause
license_family: BSD
- size: 27752
- timestamp: 1759867712644
-- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-15.2.0-h54ccb8d_7.conda
- sha256: 1fb7da99bcdab2ef8bd2458d8116600524207f3177d5c786d18f3dc5f824a4b8
- md5: f2da2e9e5b7c485f5a4344d5709d8633
- depends:
- - gcc_impl_linux-64 15.2.0 hcacfade_7
- - libstdcxx-devel_linux-64 15.2.0 h73f6952_107
- - sysroot_linux-64
- - tzdata
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 16283256
- timestamp: 1759968538523
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-15.2.0-h0902481_7.conda
- sha256: 9af30fd3b336baa53bdcf857186814433587adaae4a1e25cda8e07607ae2e80a
- md5: 58a86082ea0343409c011e0dc6ad987b
- depends:
- - gcc_impl_linux-aarch64 15.2.0 h679d96a_7
- - libstdcxx-devel_linux-aarch64 15.2.0 h1ed5458_107
- - sysroot_linux-aarch64
- - tzdata
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 15321200
- timestamp: 1759967761963
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_impl_linux-ppc64le-15.2.0-h3b1e3c5_7.conda
- sha256: 0b9060f339ab621195225e4b30d39c860e6aea58a6a165982fb98fd1f620d9a5
- md5: f3321ad4a0028b46d4f26aa3e59e1437
- depends:
- - gcc_impl_linux-ppc64le 15.2.0 hb48859e_7
- - libstdcxx-devel_linux-ppc64le 15.2.0 ha42e3bc_107
- - sysroot_linux-ppc64le
- - tzdata
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 15112600
- timestamp: 1759971392843
-- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-15.2.0-hfaa183a_12.conda
- sha256: 46f94c00af4d7f9401b9fcd29287a3a2dc2a603af4a6812ccddc59ab06da2079
- md5: 417d690337638f0a43b3e5f3a2680efc
+ size: 2468149
+ timestamp: 1757623945604
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.12.1-default_h094e1f9_1002.conda
+ sha256: 11e49fcf5c38aad4a78f4b74843eccd610c0e86c424b701e3e87cac072049fb7
+ md5: 4d9e9610b6a16291168144842cd9cae2
depends:
- - gxx_impl_linux-64 15.2.0.*
- - gcc_linux-64 ==15.2.0 h862fb80_12
- - binutils_linux-64
- - sysroot_linux-64
+ - __osx >=10.13
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
license: BSD-3-Clause
license_family: BSD
- size: 27043
- timestamp: 1759866717850
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-15.2.0-h181ebf5_12.conda
- sha256: c246acb360de62515d9cc45f72919cc3583dc0b3340e9182ba28b8a1d12da284
- md5: 795bb9399df27556fdc8b9bedaa68a1d
+ size: 2381331
+ timestamp: 1757624131667
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.12.1-default_h48b22c3_1002.conda
+ sha256: 90d3be72bfcb74541c6a8c48fdb3c903c2e7bf9ea66649d743c204a636e9e0bb
+ md5: 39a1c6805c7a3d2d5ad304ac015d5124
depends:
- - gxx_impl_linux-aarch64 15.2.0.*
- - gcc_linux-aarch64 ==15.2.0 h0139441_12
- - binutils_linux-aarch64
- - sysroot_linux-aarch64
+ - __osx >=11.0
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
license: BSD-3-Clause
license_family: BSD
- size: 26832
- timestamp: 1759866766455
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_linux-ppc64le-15.2.0-h5adc656_12.conda
- sha256: 052939f4afbb868c5fd969598a7ff05340caad6d490421f649ada4f80a878271
- md5: 845f3f9c445801625baec3d52bf786fc
+ size: 2355866
+ timestamp: 1757624101657
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda
+ sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274
+ md5: c2a0c1d0120520e979685034e0b79859
depends:
- - gxx_impl_linux-ppc64le 15.2.0.*
- - gcc_linux-ppc64le ==15.2.0 h9bf53f2_12
- - binutils_linux-ppc64le
- - sysroot_linux-ppc64le
- license: BSD-3-Clause
- license_family: BSD
- size: 26853
- timestamp: 1759867712644
-- conda: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.15.1-nompi_py314hc32fe06_100.conda
- sha256: a8bcd47281dbdf8d535c7a6b487615c7798470d0eafac945d359f44f8cb9d45b
- md5: 1d4545422c15aa77e8a93501f3ee5fb8
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Apache-2.0 OR BSD-3-Clause
+ size: 1448617
+ timestamp: 1758894401402
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwy-1.3.0-h81d0cf9_1.conda
+ sha256: a6a441692b27606f8ef64ee9e6a0c72c615c2e25b01c282ee080ee8f97861943
+ md5: d5b93534e24e7c15792b3f336c52af07
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Apache-2.0 OR BSD-3-Clause
+ size: 1180000
+ timestamp: 1758894754411
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libhwy-1.3.0-hab838a1_1.conda
+ sha256: 2f49632a3fd9ec5e38a45738f495f8c665298b0b35e6c89cef8e0fbc39b3f791
+ md5: bb8ff4fec8150927a54139af07ef8069
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ license: Apache-2.0 OR BSD-3-Clause
+ size: 1003288
+ timestamp: 1758894613094
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwy-1.3.0-h48b13b8_1.conda
+ sha256: 837fe775ba8ec9f08655bb924e28dba390d917423350333a75fd5eeac0776174
+ md5: 6375717f5fcd756de929a06d0e40fab0
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ license: Apache-2.0 OR BSD-3-Clause
+ size: 581579
+ timestamp: 1758894814983
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
+ sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
+ md5: 915f5995e94f60e9a4826e0b0920ee88
depends:
- __glibc >=2.17,<3.0.a0
- - cached-property
- - hdf5 >=1.14.6,<1.14.7.0a0
- libgcc >=14
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/h5py?source=hash-mapping
- size: 1336207
- timestamp: 1760616744128
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.15.1-nompi_py314h2a0c532_100.conda
- sha256: 4983b6adcc60fd2b910260301eade039510b3e06ae710f7e8da5139d7e74c2c4
- md5: 6ef65bf29fcf0e72c2871690889008f7
+ license: LGPL-2.1-only
+ size: 790176
+ timestamp: 1754908768807
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
+ sha256: 1473451cd282b48d24515795a595801c9b65b567fe399d7e12d50b2d6cdb04d9
+ md5: 5a86bf847b9b926f3a4f203339748d78
depends:
- - cached-property
- - hdf5 >=1.14.6,<1.14.7.0a0
- libgcc >=14
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python >=3.14,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/h5py?source=hash-mapping
- size: 1309437
- timestamp: 1760616808060
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/h5py-3.15.1-nompi_py314hd1bb5bb_100.conda
- sha256: 0cec8de425c5edf05cafba1ec57d6a74c72e07a985e9d6deb3167bdeec33e872
- md5: ce70ef34452882cdd9d3acd4006d55f2
+ license: LGPL-2.1-only
+ size: 791226
+ timestamp: 1754910975665
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda
+ sha256: a1c8cecdf9966921e13f0ae921309a1f415dfbd2b791f2117cf7e8f5e61a48b6
+ md5: 210a85a1119f97ea7887188d176db135
depends:
- - cached-property
- - hdf5 >=1.14.6,<1.14.7.0a0
+ - __osx >=10.13
+ license: LGPL-2.1-only
+ size: 737846
+ timestamp: 1754908900138
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda
+ sha256: de0336e800b2af9a40bdd694b03870ac4a848161b35c8a2325704f123f185f03
+ md5: 4d5a7445f0b25b6a3ddbb56e790f5251
+ depends:
+ - __osx >=11.0
+ license: LGPL-2.1-only
+ size: 750379
+ timestamp: 1754909073836
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda
+ sha256: 8c352744517bc62d24539d1ecc813b9fdc8a785c780197c5f0b84ec5b0dfe122
+ md5: a8e54eefc65645193c46e8b180f62d22
+ depends:
+ - __osx >=10.13
+ - libiconv >=1.18,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 96909
+ timestamp: 1753343977382
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda
+ sha256: 99d2cebcd8f84961b86784451b010f5f0a795ed1c08f1e7c76fbb3c22abf021a
+ md5: 5103f6a6b210a3912faf8d7db516918c
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.18,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 90957
+ timestamp: 1751558394144
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda
+ sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32
+ md5: 8397539e3a0bbd1695584fb4f927485a
+ depends:
+ - __glibc >=2.17,<3.0.a0
- libgcc >=14
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python >=3.14,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/h5py?source=hash-mapping
- size: 1281550
- timestamp: 1760617398055
-- conda: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.15.1-nompi_py314hf613b1f_100.conda
- sha256: a00d7598c0687d20d486a10a6ab3458166aee55e1e49a3cf3dd2904ae79e5572
- md5: 06fabd5bbc738291875722805053da4d
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 633710
+ timestamp: 1762094827865
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.1.2-he30d5cf_0.conda
+ sha256: 84064c7c53a64291a585d7215fe95ec42df74203a5bf7615d33d49a3b0f08bb6
+ md5: 5109d7f837a3dfdf5c60f60e311b041f
+ depends:
+ - libgcc >=14
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 691818
+ timestamp: 1762094728337
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.2-h8616949_0.conda
+ sha256: ebe2877abc046688d6ea299e80d8322d10c69763f13a102010f90f7168cc5f54
+ md5: 48dda187f169f5a8f1e5e07701d5cdd9
depends:
- __osx >=10.13
- - cached-property
- - hdf5 >=1.14.6,<1.14.7.0a0
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/h5py?source=hash-mapping
- size: 1179595
- timestamp: 1760617065341
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.15.1-nompi_py314h1c8d760_100.conda
- sha256: 5244dec9aef6920cf8ad77e56407c954046c825fb016dad8a5932a0d9bebe55a
- md5: 77daab2540e592d03d9d32b417aa4c9b
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 586189
+ timestamp: 1762095332781
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.2-hc919400_0.conda
+ sha256: 6c061c56058bb10374daaef50e81b39cf43e8aee21f0037022c0c39c4f31872f
+ md5: f0695fbecf1006f27f4395d64bd0c4b8
depends:
- __osx >=11.0
- - cached-property
- - hdf5 >=1.14.6,<1.14.7.0a0
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python >=3.14,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 551197
+ timestamp: 1762095054358
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda
+ sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6
+ md5: 82954a6f42e3fba59628741dca105c98
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libgcc >=14
+ - libhwy >=1.3.0,<1.4.0a0
+ - libstdcxx >=14
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/h5py?source=hash-mapping
- size: 1184389
- timestamp: 1760618066023
-- conda: 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,<2.0.0a0
+ size: 1740728
+ timestamp: 1761788390905
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjxl-0.11.1-h55d7d70_5.conda
+ sha256: b51f63711d247cd35ab8684438225a3761c337687dce97f3cbe4559984daa077
+ md5: 8a982623e01663759e8c5caf30b796c0
+ depends:
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libgcc >=14
+ - libhwy >=1.3.0,<1.4.0a0
+ - libstdcxx >=14
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 756742
- timestamp: 1695661547874
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda
- sha256: 70d1e2d3e0b9ae1b149a31a4270adfbb5a4ceb2f8c36d17feffcd7bcb6208022
- md5: e1b6676b77b9690d07ea25de48aed97e
+ size: 1319723
+ timestamp: 1761788616128
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libjxl-0.11.1-h4ee1b5b_5.conda
+ sha256: f203822559bdefe8ef0d93967a997001bc2d0d8b73e790fe1f39eec72962b0ec
+ md5: b5e1f8b97695f5303c8ad0f8d72c7534
depends:
- - libgcc-ng >=12
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
+ - __osx >=10.13
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libcxx >=19
+ - libhwy >=1.3.0,<1.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 773862
- timestamp: 1695661552544
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf4-4.2.15-h5e294c4_7.conda
- sha256: 12670b9b81e494c438f056f48bfe1ac66b8aa9425fb78580afa20b7f5174ee59
- md5: 42307218a5fd20d63649c8173bbd576e
+ size: 1547591
+ timestamp: 1761788908653
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjxl-0.11.1-h3dcb153_5.conda
+ sha256: 9a85b1dcdc66aee22f11084c4dfd7004a568689272cf7f755ff6ab2e85212f10
+ md5: 52777e8b5ecf41edbba953c677cfbbbd
depends:
- - libgcc-ng >=12
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
+ - __osx >=11.0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libcxx >=19
+ - libhwy >=1.3.0,<1.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 835149
- timestamp: 1695661573881
-- conda: 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,<2.0.0a0
+ size: 921063
+ timestamp: 1761788642413
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda
+ build_number: 38
+ sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007
+ md5: 88f10bff57b423a3fd2d990c6055771e
+ depends:
+ - libblas 3.9.0 38_h4a7cf45_openblas
+ constrains:
+ - libcblas 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ - liblapacke 3.9.0 38*_openblas
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 724103
- timestamp: 1695661907511
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda
- sha256: c3b01e3c3fe4ca1c4d28c287eaa5168a4f2fd3ffd76690082ac919244c22fa90
- md5: ff5d749fd711dc7759e127db38005924
- depends:
- - libcxx >=15.0.7
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libzlib >=1.2.13,<2.0.0a0
+ size: 17501
+ timestamp: 1761680098660
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-38_h88aeb00_openblas.conda
+ build_number: 38
+ sha256: 81035d26b0a33255e576c61e1b87dde7bd0550bc0521f898b511106476f29f3b
+ md5: 2459926bc79ce9a1cfda370ff3b29657
+ depends:
+ - libblas 3.9.0 38_haddc8a3_openblas
+ constrains:
+ - blas 2.138 openblas
+ - libcblas 3.9.0 38*_openblas
+ - liblapacke 3.9.0 38*_openblas
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 762257
- timestamp: 1695661864625
-- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-mpi_openmpi_h4fb29d0_3.conda
- sha256: b6bb9db8712be8538da0da417d9b840ce385e7ba46130283dc7a2c7a485b34a6
- md5: c32434907364ca6584a2652783921294
+ size: 17549
+ timestamp: 1761680174207
+- conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-38_h859234e_openblas.conda
+ build_number: 38
+ sha256: c94a3411dee3239702d632ff19f6b97b7aba5e51de3bc22caa229fb8d77d2978
+ md5: 062a7bd94939084574e2d401f8e0840e
+ depends:
+ - libblas 3.9.0 38_he492b99_openblas
+ constrains:
+ - blas 2.138 openblas
+ - libcblas 3.9.0 38*_openblas
+ - liblapacke 3.9.0 38*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17674
+ timestamp: 1761680534375
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-38_hd9741b5_openblas.conda
+ build_number: 38
+ sha256: df4f43d2ba45b7b80a45e8c0e51d3d7675a00047089beea7dc54e685825df9f6
+ md5: 4525f30079caf1a2290538c2c531f354
depends:
- - __glibc >=2.17,<3.0.a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- - libstdcxx >=14
- - libzlib >=1.3.1,<2.0a0
- - openmpi >=5.0.8,<6.0a0
- - openssl >=3.5.1,<4.0a0
+ - libblas 3.9.0 38_h51639a9_openblas
+ constrains:
+ - liblapacke 3.9.0 38*_openblas
+ - blas 2.138 openblas
+ - libcblas 3.9.0 38*_openblas
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 3933534
- timestamp: 1753358621585
-- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
- sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614
- md5: c74d83614aec66227ae5199d98852aaf
+ size: 17709
+ timestamp: 1761680572118
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.7-h56e7563_2.conda
+ sha256: 375a634873b7441d5101e6e2a9d3a42fec51be392306a03a2fa12ae8edecec1a
+ md5: 05a54b479099676e75f80ad0ddd38eff
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.5
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 28801374
+ timestamp: 1757354631264
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm19-19.1.7-h8e0c9ce_2.conda
+ sha256: 46f8ff3d86438c0af1bebe0c18261ce5de9878d58b4fe399a3a125670e4f0af5
+ md5: d1d9b233830f6631800acc1e081a9444
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.5
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 26914852
+ timestamp: 1757353228286
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm21-21.1.5-hf7376ad_0.conda
+ sha256: 180d77016c2eb5c8722f31a4750496b773e810529110d370ffc6d0cbbf6d15bb
+ md5: 9d476d7712c3c78ace006017c83d3889
depends:
- __glibc >=2.17,<3.0.a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3710057
- timestamp: 1753357500665
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.6-mpi_openmpi_h90d2627_3.conda
- sha256: 1e6a12978781e243ad585fdf68b92f18368818633b38c5ff532c540ccdd7c661
- md5: 232119eb03b6d1fd9da4c0c083ac8519
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 44350262
+ timestamp: 1762289424598
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm21-21.1.5-hfd2ba90_0.conda
+ sha256: 50977348f1dfc823ea2458bb206a21504c09be820681786e5de6502a2cc42ee9
+ md5: f7bc06f65864d38f0c263aa0cf367f03
depends:
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
- libzlib >=1.3.1,<2.0a0
- - openmpi >=5.0.8,<6.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 4124964
- timestamp: 1753365520824
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.6-nompi_h587839b_103.conda
- sha256: 504720da04682560dbc02cf22e01ed6c4b5504c65becd79418f3887460cd45c7
- md5: eab19e17ea4dce5068ec649f3717969d
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 43132460
+ timestamp: 1762281370716
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm21-21.1.4-h56e7563_0.conda
+ sha256: 9e01c5a864897c8f5459371ab3715190d2fa3a9cacd27b5c922d2bb616d1706c
+ md5: c4d09f117ffafaaa64c950853daa87ee
depends:
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- - libstdcxx >=14
+ - __osx >=10.13
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 31429419
+ timestamp: 1761079041756
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm21-21.1.5-h56e7563_0.conda
+ sha256: 3c49f606ae406f6203c221c7f03aec3ec99380125f0e2392a9c26171134ade97
+ md5: e5066c2c2432e325e924e2f750735a6d
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 31433251
+ timestamp: 1762311107913
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm21-21.1.5-h8e0c9ce_0.conda
+ sha256: f8aec81419eb1d2acbddc7a328d73340b591b3ac5e40bb7f5d366eca64516328
+ md5: 75f026077311f5e37189a0de80afb6ed
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 29400991
+ timestamp: 1762285527190
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
+ md5: 1a580f7796c7bf6393fddb8bbbde58dc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - xz 5.8.1.*
+ license: 0BSD
+ size: 112894
+ timestamp: 1749230047870
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda
+ sha256: 498ea4b29155df69d7f20990a7028d75d91dbea24d04b2eb8a3d6ef328806849
+ md5: 7d362346a479256857ab338588190da0
+ depends:
+ - libgcc >=13
+ constrains:
+ - xz 5.8.1.*
+ license: 0BSD
+ size: 125103
+ timestamp: 1749232230009
+- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.1-hd471939_2.conda
+ sha256: 7e22fd1bdb8bf4c2be93de2d4e718db5c548aa082af47a7430eb23192de6bb36
+ md5: 8468beea04b9065b9807fc8b9cdc5894
+ depends:
+ - __osx >=10.13
+ constrains:
+ - xz 5.8.1.*
+ license: 0BSD
+ size: 104826
+ timestamp: 1749230155443
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
+ sha256: 0cb92a9e026e7bd4842f410a5c5c665c89b2eb97794ffddba519a626b8ce7285
+ md5: d6df911d4564d77c4374b02552cb17d1
+ depends:
+ - __osx >=11.0
+ constrains:
+ - xz 5.8.1.*
+ license: 0BSD
+ size: 92286
+ timestamp: 1749230283517
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
+ sha256: 3aa92d4074d4063f2a162cd8ecb45dccac93e543e565c01a787e16a43501f7ee
+ md5: c7e925f37e3b40d893459e625f6a53f1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 3915364
- timestamp: 1753363295810
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf5-1.14.6-mpi_openmpi_h3f51d32_3.conda
- sha256: 90b5dbee5948107341a518e80a917f0a6b003cf15a950b53bb23aa1e11bc09e8
- md5: a79c3b7e0735c8be55145d4834c5f02e
+ size: 91183
+ timestamp: 1748393666725
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmpdec-4.0.0-h86ecc28_0.conda
+ sha256: ef8697f934c80b347bf9d7ed45650928079e303bad01bd064995b0e3166d6e7a
+ md5: 78cfed3f76d6f3f279736789d319af76
+ depends:
+ - libgcc >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 114064
+ timestamp: 1748393729243
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-h6e16a3a_0.conda
+ sha256: 98299c73c7a93cd4f5ff8bb7f43cd80389f08b5a27a296d806bdef7841cc9b9e
+ md5: 18b81186a6adb43f000ad19ed7b70381
+ depends:
+ - __osx >=10.13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 77667
+ timestamp: 1748393757154
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
+ sha256: 0a1875fc1642324ebd6c4ac864604f3f18f57fbcf558a8264f6ced028a3c75b2
+ md5: 85ccccb47823dd9f7a99d2c7f530342f
+ depends:
+ - __osx >=11.0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 71829
+ timestamp: 1748393749336
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.3-nompi_h11f7409_103.conda
+ sha256: e9a8668212719a91a6b0348db05188dfc59de5a21888db13ff8510918a67b258
+ md5: 3ccff1066c05a1e6c221356eecc40581
depends:
+ - __glibc >=2.17,<3.0.a0
+ - attr >=2.5.2,<2.6.0a0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
- libaec >=1.1.4,<2.0a0
- libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzip >=1.11.2,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openmpi >=5.0.8,<6.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 4007079
- timestamp: 1753364024632
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf5-1.14.6-nompi_h3365b58_103.conda
- sha256: 379edd2b93da678b9b0cac336ea01592f85ea8a6de3e838fb55e90654b9b461b
- md5: cd38b3745ee671e4ad839bb8af251ba0
+ - openssl >=3.5.2,<4.0a0
+ - zlib
+ - zstd >=1.5.7,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 871447
+ timestamp: 1757977084313
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.3-nompi_haeac333_103.conda
+ sha256: 34fd25134e84d33880cab2ec729ee4d4b9596fd1640baf257088688c2a6164f9
+ md5: 65cbd643e5e5c6f23566a0b9bef9333f
depends:
+ - attr >=2.5.1,<2.6.0a0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
- libaec >=1.1.4,<2.0a0
- libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- libstdcxx >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzip >=1.11.2,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3817340
- timestamp: 1753364437337
-- conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.6-mpi_openmpi_h8bfb534_3.conda
- sha256: c5a9297e16298ebf45501f6f58ad5ef50a49a04db5f9a16858a19de98497b1b8
- md5: d4f09ca44e8b729ae21446a4a323e919
- depends:
- - __osx >=10.13
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- - libgfortran5 >=15.1.0
- - libzlib >=1.3.1,<2.0a0
- - openmpi >=5.0.8,<6.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3714645
- timestamp: 1753358414286
-- conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.6-nompi_hc8237f9_103.conda
- sha256: e41d22f672b1fbe713d22cf69630abffaee68bdb38a500a708fc70e6f639357f
- md5: 3f1df98f96e0c369d94232712c9b87d0
+ - openssl >=3.5.2,<4.0a0
+ - zlib
+ - zstd >=1.5.7,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 894959
+ timestamp: 1757977882781
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.3-nompi_habf9e57_103.conda
+ sha256: 6e8bd953ce27e10d0c029badbe3a60510f6724b59ed63d79dd8fdd1a795719ea
+ md5: 0c48ab0a8d7c3af9f592d33c3d99f7d6
depends:
- __osx >=10.13
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
- libaec >=1.1.4,<2.0a0
- libcurl >=8.14.1,<9.0a0
- libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- - libgfortran5 >=15.1.0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzip >=1.11.2,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3522832
- timestamp: 1753358062940
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-mpi_openmpi_h7c22107_3.conda
- sha256: 79f7047c1dba1dad9c5c6533b218a5d94850f218f2d5a4686b4f8f4173bf1048
- md5: 13b1b176da2ffd6e40d0d3c30f88767e
+ - openssl >=3.5.2,<4.0a0
+ - zlib
+ - zstd >=1.5.7,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 728471
+ timestamp: 1757977549393
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.3-nompi_h80c4520_103.conda
+ sha256: 60b5eff8d2347b20d7c435ba9b8e724bafb3ea9cc21da99b4339c6458dc48328
+ md5: 926f5ea75a8e4ad5e8c026c07eab75ba
depends:
- __osx >=11.0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
- libaec >=1.1.4,<2.0a0
- libcurl >=8.14.1,<9.0a0
- libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- - libgfortran5 >=15.1.0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzip >=1.11.2,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openmpi >=5.0.8,<6.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3509797
- timestamp: 1753356983190
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.6-nompi_he65715a_103.conda
- sha256: 8948a63fc4a56536ce7b2716b781616c3909507300d26e9f265a3c13d59708a0
- md5: fcc9aca330f13d071bfc4de3d0942d78
+ - openssl >=3.5.2,<4.0a0
+ - zlib
+ - zstd >=1.5.7,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 685237
+ timestamp: 1757977534772
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690
+ md5: b499ce4b026493a13774bcf0f4c33849
depends:
- - __osx >=11.0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- - libgfortran5 >=15.1.0
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.34.5,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=14
+ - libstdcxx >=14
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3308443
- timestamp: 1753356976982
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- sha256: 813298f2e54ef087dbfc9cc2e56e08ded41de65cff34c639cc8ba4e27e4540c9
- md5: 268203e8b983fddb6412b36f2024e75c
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
+ - openssl >=3.5.2,<4.0a0
license: MIT
license_family: MIT
- purls: []
- size: 12282786
- timestamp: 1720853454991
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/icu-75.1-h5867af4_0.conda
- sha256: 2525dede555db4ec54c13a6640f4ecd48bb9ba47631b5d58c0d0b160e5e51105
- md5: 22c8f8e2a7ee94952beee448bcaa578c
+ size: 666600
+ timestamp: 1756834976695
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.67.0-ha888d0e_0.conda
+ sha256: b03f406fd5c3f865a5e08c89b625245a9c4e026438fd1a445e45e6a0d69c2749
+ md5: 981082c1cc262f514a5a2cf37cab9b81
depends:
- - libgcc-ng >=7.5.0
- - libstdcxx-ng >=7.5.0
+ - c-ares >=1.34.5,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.2,<4.0a0
license: MIT
license_family: MIT
- purls: []
- size: 12583827
- timestamp: 1720853679015
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620
- md5: 5eb22c1d7b3fc4abb50d92d621583137
+ size: 728661
+ timestamp: 1756835019535
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.67.0-h3338091_0.conda
+ sha256: c48d7e1cc927aef83ff9c48ae34dd1d7495c6ccc1edc4a3a6ba6aff1624be9ac
+ md5: e7630cef881b1174d40f3e69a883e55f
depends:
- - __osx >=11.0
+ - __osx >=10.13
+ - c-ares >=1.34.5,<2.0a0
+ - libcxx >=19
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.2,<4.0a0
license: MIT
license_family: MIT
- purls: []
- size: 11857802
- timestamp: 1720853997952
-- conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.3.7-pyhd8ed1ab_0.tar.bz2
- sha256: 7ad5972882568b813a86d3504dbd93d2bba410a182d822e0e2d314d53489725f
- md5: ae1a5e834fbca62ee88ab55fb276be63
+ size: 605680
+ timestamp: 1756835898134
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.67.0-hc438710_0.conda
+ sha256: a07cb53b5ffa2d5a18afc6fd5a526a5a53dd9523fbc022148bd2f9395697c46d
+ md5: a4b4dd73c67df470d091312ab87bf6ae
depends:
- - editdistance-s
- - python >=3.6
+ - __osx >=11.0
+ - c-ares >=1.34.5,<2.0a0
+ - libcxx >=19
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.2,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/identify?source=hash-mapping
- size: 78690
- timestamp: 1637254255758
-- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
- sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
- md5: 63ccfdc3a3ce25b027b8767eb722fca8
+ size: 575454
+ timestamp: 1756835746393
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.11.0-hb9d3cd8_0.conda
+ sha256: ba7c5d294e3d80f08ac5a39564217702d1a752e352e486210faff794ac5001b4
+ md5: db63358239cbe1ff86242406d440e44a
depends:
- - python >=3.9
- - zipp >=3.20
- - python
- license: Apache-2.0
- license_family: APACHE
- purls:
- - pkg:pypi/importlib-metadata?source=hash-mapping
- size: 34641
- timestamp: 1747934053147
-- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda
- sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39
- md5: 8a77895fb29728b736a1a6c75906ea1a
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 741323
+ timestamp: 1731846827427
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnl-3.11.0-h86ecc28_0.conda
+ sha256: 2e603bf640738511faf80de284daa031f0e67de66b77bed7d0da1045ef062abf
+ md5: bb24d3dd7d028b70f0bb5f6d6e1329c0
depends:
- - importlib-metadata ==8.7.0 pyhe01879c_1
- license: Apache-2.0
- license_family: APACHE
- purls: []
- size: 22143
- timestamp: 1747934053147
-- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
- sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19
- md5: 9614359868482abba1bd15ce465e3c42
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 768716
+ timestamp: 1731846931826
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ sha256: 3b3f19ced060013c2dd99d9d46403be6d319d4601814c772a3472fe2955612b0
+ md5: 7c7927b404672409d9917d49bff5f2d6
depends:
- - python >=3.10
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/iniconfig?source=compressed-mapping
- size: 13387
- timestamp: 1760831448842
-- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyh5552912_0.conda
- sha256: f1af28db2a1c1dbac0de16138471e4d8c795963f6757bd69e25d0e6dc7fb4770
- md5: 2f5c8ae25b23385563673e6780513474
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ size: 33418
+ timestamp: 1734670021371
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2
+ sha256: 0e303d7a8845391bd1634efb65dc9d9b82b5608ebeb32fb77a56d1ed696d2eee
+ md5: 835c7c4137821de5c309f4266a51ba89
depends:
- - appnope
- - __osx
- - comm >=0.1.1
- - debugpy >=1.6.5
- - ipython >=7.23.1
- - jupyter_client >=8.0.0
- - jupyter_core >=4.12,!=5.0.*
- - matplotlib-inline >=0.1
- - nest-asyncio >=1.4
- - packaging >=22
- - psutil >=5.7
- - python >=3.10
- - pyzmq >=25
- - tornado >=6.2
- - traitlets >=5.4.0
- - python
+ - libgcc-ng >=9.3.0
+ license: LGPL-2.1-or-later
+ size: 39449
+ timestamp: 1609781865660
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda
+ sha256: 2ab918f7cc00852d70088e0b9e49fda4ef95229126cf3c52a8297686938385f2
+ md5: 23d706dbe90b54059ad86ff826677f39
+ depends:
+ - __osx >=10.13
+ license: LGPL-2.1-or-later
+ size: 33742
+ timestamp: 1734670081910
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda
+ sha256: ea8c680924d957e12270dca549620327d5e986f23c4bd5f45627167ca6ef7a3b
+ md5: c90c1d3bd778f5ec0d4bb4ef36cbd5b6
+ depends:
+ - __osx >=11.0
+ license: LGPL-2.1-or-later
+ size: 31099
+ timestamp: 1734670168822
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ sha256: ffb066ddf2e76953f92e06677021c73c85536098f1c21fcd15360dbc859e22e4
+ md5: 68e52064ed3897463c0e958ab5c8f91b
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 218500
+ timestamp: 1745825989535
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.5-h86ecc28_1.conda
+ sha256: 2c1b7c59badc2fd6c19b6926eabfce906c996068d38c2972bd1cfbe943c07420
+ md5: 319df383ae401c40970ee4e9bc836c7a
+ depends:
+ - libgcc >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 220653
+ timestamp: 1745826021156
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.5-he3325bb_1.conda
+ sha256: 26691d40c70e83d3955a8daaee713aa7d087aa351c5a1f43786bbb0e871f29da
+ md5: d0f30c7fe90d08e9bd9c13cd60be6400
+ depends:
+ - __osx >=10.13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 215854
+ timestamp: 1745826006966
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.5-h48c0fde_1.conda
+ sha256: 28bd1fe20fe43da105da41b95ac201e95a1616126f287985df8e86ddebd1c3d8
+ md5: 29b8b11f6d7e6bd0e76c029dcf9dd024
+ depends:
+ - __osx >=11.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 216719
+ timestamp: 1745826006052
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda
+ sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa
+ md5: ac2e4832427d6b159576e8a68305c722
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
constrains:
- - appnope >=0.1.2
+ - openblas >=0.3.30,<0.3.31.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/ipykernel?source=hash-mapping
- size: 130575
- timestamp: 1760459840031
-- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.0.1-pyha191276_0.conda
- sha256: cf1606f123c7652a8594a5fae68c83c0d8bd891cc125243e0e23bcc5ad2d76e8
- md5: 637e206802904ecc10a558262631f132
+ size: 5918287
+ timestamp: 1761748180250
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_3.conda
+ sha256: 30d394f472905a01a0c1a5b1bbca1760d0d6c05f1da6e323d4ada3f631a0bea8
+ md5: 1613b69c1908764ea3243d0cfd69c055
depends:
- - python
- - __linux
- - comm >=0.1.1
- - debugpy >=1.6.5
- - ipython >=7.23.1
- - jupyter_client >=8.0.0
- - jupyter_core >=4.12,!=5.0.*
- - matplotlib-inline >=0.1
- - nest-asyncio >=1.4
- - packaging >=22
- - psutil >=5.7
- - python >=3.10
- - pyzmq >=25
- - tornado >=6.2
- - traitlets >=5.4.0
- - python
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
constrains:
- - appnope >=0.1.2
+ - openblas >=0.3.30,<0.3.31.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/ipykernel?source=hash-mapping
- size: 131994
- timestamp: 1760459840504
-- conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.6.0-pyhfa0c392_0.conda
- sha256: 5b679431867704b46c0f412de1a4963bf2c9b65e55a325a22c4624f88b939453
- md5: ad6641ef96dd7872acbb802fa3fcb8d1
+ size: 4960633
+ timestamp: 1761747757063
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_h6006d49_3.conda
+ sha256: 209812edd396e0f395bee0a5628a8b77501e6671795c081455c27049e9a1c96a
+ md5: e32aca8f732f7ea1ed876ffbec0d6347
depends:
- - __unix
- - pexpect >4.3
- - decorator
- - exceptiongroup
- - ipython_pygments_lexers
- - jedi >=0.16
- - matplotlib-inline
- - pickleshare
- - prompt-toolkit >=3.0.41,<3.1.0
- - pygments >=2.4.0
- - python >=3.11
- - stack_data
- - traitlets >=5.13.0
- - typing_extensions >=4.6
- - python
+ - __osx >=10.13
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - llvm-openmp >=19.1.7
+ constrains:
+ - openblas >=0.3.30,<0.3.31.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/ipython?source=compressed-mapping
- size: 638573
- timestamp: 1759151815538
-- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda
- sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104
- md5: bd80ba060603cc228d9d81c257093119
+ size: 6265963
+ timestamp: 1761751583325
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_ha158390_3.conda
+ sha256: dcc626c7103503d1dfc0371687ad553cb948b8ed0249c2a721147bdeb8db4a73
+ md5: a18a7f471c517062ee71b843ef95eb8a
depends:
- - pygments
- - python >=3.9
+ - __osx >=11.0
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - llvm-openmp >=19.1.7
+ constrains:
+ - openblas >=0.3.30,<0.3.31.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/ipython-pygments-lexers?source=hash-mapping
- size: 13993
- timestamp: 1737123723464
-- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
- sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8
- md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
+ size: 4285762
+ timestamp: 1761749506256
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead
+ md5: 7df50d44d4a14d6c31a2c54f2cd92157
depends:
- - parso >=0.8.3,<0.9.0
- - python >=3.9
- license: Apache-2.0 AND MIT
- purls:
- - pkg:pypi/jedi?source=hash-mapping
- size: 843646
- timestamp: 1733300981994
-- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
- sha256: ac377ef7762e49cb9c4f985f1281eeff471e9adc3402526eea78e6ac6589cf1d
- md5: 341fd940c242cf33e832c0402face56f
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ size: 50757
+ timestamp: 1731330993524
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda
+ sha256: e359df399fb2f308774237384414e318fac8870c1bf6481bdc67ae16e0bd2a02
+ md5: cf9d12bfab305e48d095a4c79002c922
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ license: LicenseRef-libglvnd
+ size: 56355
+ timestamp: 1731331001820
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopentelemetry-cpp-1.21.0-hb9b0907_1.conda
+ sha256: ba9b09066f9abae9b4c98ffedef444bbbf4c068a094f6c77d70ef6f006574563
+ md5: 1c0320794855f457dea27d35c4c71e23
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libopentelemetry-cpp-headers 1.21.0 ha770c72_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - nlohmann_json
+ - prometheus-cpp >=1.3.0,<1.4.0a0
+ constrains:
+ - cpp-opentelemetry-sdk =1.21.0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 885397
+ timestamp: 1751782709380
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopentelemetry-cpp-1.21.0-h3f2e541_1.conda
+ sha256: 91d7f74723647112a8c666674fc83ae6b9b87de168e2f47f23c0f81fa6d4a11c
+ md5: fadbbd11b7870547393547056bf5901b
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libopentelemetry-cpp-headers 1.21.0 h8af1aa0_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - nlohmann_json
+ - prometheus-cpp >=1.3.0,<1.4.0a0
+ constrains:
+ - cpp-opentelemetry-sdk =1.21.0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 877441
+ timestamp: 1751782794643
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libopentelemetry-cpp-1.21.0-h7d3f41d_1.conda
+ sha256: 94df4129f94dbb17998a60bff0b53c700e6124a6cb67f3047fe7059ebaa7d357
+ md5: 952dd64cff4a72cadf5e81572a7a81c8
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libopentelemetry-cpp-headers 1.21.0 h694c41f_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - nlohmann_json
+ - prometheus-cpp >=1.3.0,<1.4.0a0
+ constrains:
+ - cpp-opentelemetry-sdk =1.21.0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 585875
+ timestamp: 1751782877386
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopentelemetry-cpp-1.21.0-he15edb5_1.conda
+ sha256: 4bf8f703ddd140fe54d4c8464ac96b28520fbc1083cce52c136a85a854745d5c
+ md5: cbcea547d6d831863ab0a4e164099062
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgrpc >=1.73.1,<1.74.0a0
+ - libopentelemetry-cpp-headers 1.21.0 hce30654_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - nlohmann_json
+ - prometheus-cpp >=1.3.0,<1.4.0a0
+ constrains:
+ - cpp-opentelemetry-sdk =1.21.0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 564609
+ timestamp: 1751782939921
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopentelemetry-cpp-headers-1.21.0-ha770c72_1.conda
+ sha256: b3a1b36d5f92fbbfd7b6426982a99561bdbd7e4adbafca1b7f127c9a5ab0a60f
+ md5: 9e298d76f543deb06eb0f3413675e13a
+ license: Apache-2.0
+ license_family: APACHE
+ size: 363444
+ timestamp: 1751782679053
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopentelemetry-cpp-headers-1.21.0-h8af1aa0_1.conda
+ sha256: c1b8977bc9b0d9c30519d96c883da47b291dd7927e2ddb70f2e668b37b6fb192
+ md5: 7ec4a64328b096b83d264db02eb6022e
+ license: Apache-2.0
+ license_family: APACHE
+ size: 361798
+ timestamp: 1751782770694
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libopentelemetry-cpp-headers-1.21.0-h694c41f_1.conda
+ sha256: 5b43ec55305a6fabd8eb37cee06bc3260d3641f260435194837d0b64faa0b355
+ md5: 62636543478d53b28c1fc5efce346622
+ license: Apache-2.0
+ license_family: APACHE
+ size: 362175
+ timestamp: 1751782820895
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopentelemetry-cpp-headers-1.21.0-hce30654_1.conda
+ sha256: ce74278453dec1e3c11158ec368c8f1b03862e279b63f79ed01f38567a1174e6
+ md5: c7df4b2d612208f3a27486c113b6aefc
+ license: Apache-2.0
+ license_family: APACHE
+ size: 363213
+ timestamp: 1751782889359
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-22.0.0-h7376487_3_cpu.conda
+ build_number: 3
+ sha256: 66ab48262ae7f6693bd55c33f615c8b44c8d69bf5512d415902da9bb2b852e8a
+ md5: bcf50f7920a7efac3e0ab38e83a18cde
depends:
- - attrs >=22.2.0
- - jsonschema-specifications >=2023.3.6
- - python >=3.9
- - referencing >=0.28.4
- - rpds-py >=0.7.1
- - python
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 22.0.0 h99e40f8_3_cpu
+ - libgcc >=14
+ - libstdcxx >=14
+ - libthrift >=0.22.0,<0.22.1.0a0
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 1343082
+ timestamp: 1761789715193
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-22.0.0-h87079af_3_cpu.conda
+ build_number: 3
+ sha256: c7d4d88e1b8d83bf0eefae2a7b59eddaf8da66af268eb12e5a24bb5b65ad21c7
+ md5: 58e418bfdc853ab78c95fa3d4fac3507
+ depends:
+ - libarrow 22.0.0 hf4c6730_3_cpu
+ - libgcc >=14
+ - libstdcxx >=14
+ - libthrift >=0.22.0,<0.22.1.0a0
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 1245724
+ timestamp: 1761789603569
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-22.0.0-habb56ca_3_cpu.conda
+ build_number: 3
+ sha256: 9d34ed36a238c3c6f31a5180dccc8f9bda7f672076905966d03b605b33364756
+ md5: 19c7fb076f59a6ca56ffc397064986d9
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 hb95b15f_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libthrift >=0.22.0,<0.22.1.0a0
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 1074342
+ timestamp: 1761790347922
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-22.0.0-h0ac143b_3_cpu.conda
+ build_number: 3
+ sha256: afc017e61181faddf0c4be579f41a08602949b697d1f9c0396bc64163ad44561
+ md5: 5598b795709bbfbfad2418deeebbe582
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libarrow 22.0.0 h4f7d3e6_3_cpu
+ - libcxx >=19
+ - libopentelemetry-cpp >=1.21.0,<1.22.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libthrift >=0.22.0,<0.22.1.0a0
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 1042254
+ timestamp: 1761790263325
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ sha256: 0bd91de9b447a2991e666f284ae8c722ffb1d84acb594dbd0c031bd656fa32b2
+ md5: 70e3400cbbfa03e96dcde7fc13e38c7b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/jsonschema?source=hash-mapping
- size: 81688
- timestamp: 1755595646123
-- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
- sha256: 0a4f3b132f0faca10c89fdf3b60e15abb62ded6fa80aebfc007d05965192aa04
- md5: 439cd0f567d697b20a8f45cb70a1005a
+ size: 28424
+ timestamp: 1749901812541
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpciaccess-0.18-h86ecc28_0.conda
+ sha256: 7641dfdfe9bda7069ae94379e9924892f0b6604c1a016a3f76b230433bb280f2
+ md5: 5044e160c5306968d956c2a0a2a440d6
depends:
- - python >=3.10
- - referencing >=0.31.0
- - python
+ - libgcc >=13
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/jsonschema-specifications?source=hash-mapping
- size: 19236
- timestamp: 1757335715225
-- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a
- md5: 4ebae00eae9705b0c3d6d1018a81d047
+ size: 29512
+ timestamp: 1749901899881
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpmix-5.0.8-h4bd6b51_2.conda
+ sha256: f36cbd91007f793654a4b7190622dbfba9e08f563faf1f6923867b4cf8e9cf97
+ md5: a79391da87ae92920508c25b6c1a7e1c
depends:
- - importlib-metadata >=4.8.3
- - jupyter_core >=4.12,!=5.0.*
- - python >=3.9
- - python-dateutil >=2.8.2
- - pyzmq >=23.0
- - tornado >=6.2
- - traitlets >=5.3
+ - __glibc >=2.17,<3.0.a0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libgcc >=14
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/jupyter-client?source=hash-mapping
- size: 106342
- timestamp: 1733441040958
-- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda
- sha256: 1d34b80e5bfcd5323f104dbf99a2aafc0e5d823019d626d0dce5d3d356a2a52a
- md5: b38fe4e78ee75def7e599843ef4c1ab0
+ size: 730628
+ timestamp: 1754762323076
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpmix-5.0.8-h8c64fbe_2.conda
+ sha256: 40398382a7cf28ff2312dfdb0579d06127fe08a540cdc00912c23187a73d0e4f
+ md5: 01814ffe926c90cd0cb7d78038bae87f
depends:
- - __unix
- - python
- - platformdirs >=2.5
- - python >=3.10
- - traitlets >=5.3
- - python
- constrains:
- - pywin32 >=300
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libgcc >=14
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/jupyter-core?source=compressed-mapping
- size: 65503
- timestamp: 1760643864586
-- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_8.conda
- sha256: 305c22a251db227679343fd73bfde121e555d466af86e537847f4c8b9436be0d
- md5: ff007ab0f0fdc53d245972bba8a6d40c
- constrains:
- - sysroot_linux-64 ==2.28
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
- license_family: GPL
- size: 1272697
- timestamp: 1752669126073
-- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_8.conda
- sha256: 9d0a86bd0c52c39db8821405f6057bc984789d36e15e70fa5c697f8ba83c1a19
- md5: 2ab884dda7f1a08758fe12c32cc31d08
- constrains:
- - sysroot_linux-aarch64 ==2.28
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
- license_family: GPL
- size: 1244709
- timestamp: 1752669116535
-- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-ppc64le-4.18.0-h3602f99_8.conda
- sha256: bd33a38434bad0d2a2acda2665f662d15fb53281110e5c42564ece67f46445b6
- md5: d18b7938adc57af74c76e918f657d879
- constrains:
- - sysroot_linux-ppc64le ==2.28
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
- license_family: GPL
- size: 1261770
- timestamp: 1752669080957
-- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
- sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
- md5: b38117a3c920364aff79f870c984b4a3
+ size: 729241
+ timestamp: 1754762485998
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libpmix-5.0.8-h7a6afba_2.conda
+ sha256: 0e13c10bebd07679a3b256c6877954e6d02874ed6523406309cd55cc2f29abc7
+ md5: 9bdb741c8e2117a664cee070359df68f
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- license: LGPL-2.1-or-later
- purls: []
- size: 134088
- timestamp: 1754905959823
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
- sha256: 5ce830ca274b67de11a7075430a72020c1fb7d486161a82839be15c2b84e9988
- md5: e7df0aab10b9cbb73ab2a467ebfaf8c7
+ - __osx >=10.13
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 589782
+ timestamp: 1754762625434
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpmix-5.0.8-h3e7ebac_2.conda
+ sha256: a6c5b390f6749dc4cd8019d11110a89314f19a5c75540985ea981d3f5fb85965
+ md5: e2f08689293b74bc3b8be110b207e17b
depends:
- - libgcc >=13
- license: LGPL-2.1-or-later
- purls: []
- size: 129048
- timestamp: 1754906002667
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/keyutils-1.6.3-h190368a_0.conda
- sha256: ab20f86b9e06661cf0cdeb4fb0332521c67bf70d9e22254f7b39061e813547a8
- md5: 050216bb9011e39e68c4e9903c498999
+ - __osx >=11.0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 531117
+ timestamp: 1754762553586
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347
+ md5: 7af8e91b0deb5f8e25d1a595dea79614
depends:
- - libgcc >=13
- license: LGPL-2.1-or-later
- purls: []
- size: 132267
- timestamp: 1754906018417
-- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
- sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
- md5: 3f43953b7d3fb3aaa1d0d0723d91e368
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 317390
+ timestamp: 1753879899951
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.50-h1abf092_1.conda
+ sha256: e1effd7335ec101bb124f41a5f79fabb5e7b858eafe0f2db4401fb90c51505a7
+ md5: ed42935ac048d73109163d653d9445a0
+ depends:
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 339168
+ timestamp: 1753879915462
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.50-h84aeda2_1.conda
+ sha256: 8d92c82bcb09908008d8cf5fab75e20733810d40081261d57ef8cd6495fc08b4
+ md5: 1fe32bb16991a24e112051cc0de89847
depends:
- - keyutils >=1.6.1,<2.0a0
- - libedit >=3.1.20191231,<3.2.0a0
- - libedit >=3.1.20191231,<4.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - openssl >=3.3.1,<4.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 1370023
- timestamp: 1719463201255
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
- sha256: 0ec272afcf7ea7fbf007e07a3b4678384b7da4047348107b2ae02630a570a815
- md5: 29c10432a2ca1472b53f299ffb2ffa37
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 297609
+ timestamp: 1753879919854
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.50-h280e0eb_1.conda
+ sha256: a2e0240fb0c79668047b528976872307ea80cb330baf8bf6624ac2c6443449df
+ md5: 4d0f5ce02033286551a32208a5519884
depends:
- - keyutils >=1.6.1,<2.0a0
- - libedit >=3.1.20191231,<3.2.0a0
- - libedit >=3.1.20191231,<4.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - openssl >=3.3.1,<4.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 1474620
- timestamp: 1719463205834
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/krb5-1.21.3-h7eda64f_0.conda
- sha256: 9ffcc6495914eb8c7ef0b4f71baac93250dc3cabb546666595e589d9b6137416
- md5: b4365f3e69df8b35dca40f863ed54847
+ - __osx >=11.0
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 287056
+ timestamp: 1753879907258
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-18.0-h3675c94_0.conda
+ sha256: 81d9ac5c23257745eb73b81103b3c42442ac13c5d38226916debbf55573540dd
+ md5: 064887eafa473cbfae9ee8bedd3b7432
depends:
- - keyutils >=1.6.1,<2.0a0
- - libedit >=3.1.20191231,<3.2.0a0
- - libedit >=3.1.20191231,<4.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - openssl >=3.3.1,<4.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 1549467
- timestamp: 1719463262026
-- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
- sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c
- md5: d4765c524b1d91567886bde656fb514b
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=14
+ - openldap >=2.6.10,<2.7.0a0
+ - openssl >=3.5.3,<4.0a0
+ license: PostgreSQL
+ size: 2849367
+ timestamp: 1758820440469
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-18.0-hb4b1422_0.conda
+ sha256: b91b43225e6bbfa0288e7a59fe62650a5f13c6cd6b22465a2fc437f35e9b2033
+ md5: 28fe121d7e4afb00b9a49520db724306
+ depends:
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=14
+ - openldap >=2.6.10,<2.7.0a0
+ - openssl >=3.5.3,<4.0a0
+ license: PostgreSQL
+ size: 2786895
+ timestamp: 1758820487283
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libpq-18.0-h5a4e477_0.conda
+ sha256: 02a12b9830055612cb8760b6f78ef414fb5a8a7d91e6fcfbf9e25a2afa0dca91
+ md5: 905c5a65375d7e1ea4f8e3d84f054ea1
depends:
- __osx >=10.13
- - libcxx >=16
- - libedit >=3.1.20191231,<3.2.0a0
- - libedit >=3.1.20191231,<4.0a0
- - openssl >=3.3.1,<4.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 1185323
- timestamp: 1719463492984
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b
- md5: c6dc8a0fdec13a0565936655c33069a1
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - openldap >=2.6.10,<2.7.0a0
+ - openssl >=3.5.3,<4.0a0
+ license: PostgreSQL
+ size: 2597426
+ timestamp: 1758821231541
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-18.0-h31f7a3a_0.conda
+ sha256: 901c070521c36015d340cf3ab3e7692b4113042d285231176e581109ddfb35c1
+ md5: fb04371059694e02a7d0af1a21b2fae6
depends:
- __osx >=11.0
- - libcxx >=16
- - libedit >=3.1.20191231,<3.2.0a0
- - libedit >=3.1.20191231,<4.0a0
- - openssl >=3.3.1,<4.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 1155530
- timestamp: 1719463474401
-- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-955.13-h2eed689_5.conda
- sha256: 5518386f353e744e1925e2a8ac4c5813465a19793d2164f07c97b728656df5eb
- md5: 1843378027da60e6794757da129e2185
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - openldap >=2.6.10,<2.7.0a0
+ - openssl >=3.5.3,<4.0a0
+ license: PostgreSQL
+ size: 2648192
+ timestamp: 1758821565273
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-6.31.1-h49aed37_2.conda
+ sha256: 1679f16c593d769f3dab219adb1117cbaaddb019080c5a59f79393dc9f45b84f
+ md5: 94cb88daa0892171457d9fdc69f43eca
depends:
- - ld64_osx-64 955.13 llvm21_1_h2cc85ee_5
- - libllvm21 >=21.1.2,<21.2.0a0
- constrains:
- - cctools 1024.3.*
- - cctools_osx-64 1024.3.*
- license: APSL-2.0
- license_family: Other
- size: 18662
- timestamp: 1759697811409
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-955.13-h5d6df6c_5.conda
- sha256: 6250e7ed87482eb6f7eb313bbb128a7b55a8b0f4e20f66bbe51518011b64fb40
- md5: 5374da26c23090d58c6ed3379e02b05e
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4645876
+ timestamp: 1760550892361
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-6.31.1-h2cf3c76_2.conda
+ sha256: e1bfa4ee03ddfa3a5e347d6796757a373878b2f277ed48dbc32412b05e16e776
+ md5: 8eb7b485dcbb81166e340a07ccb40e67
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4465754
+ timestamp: 1760550264433
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-6.31.1-h03562ea_2.conda
+ sha256: 40a32a77cdb7f7b49187a4c9faf5c7812d95233288ab96b06e0dd9978ecd8e6d
+ md5: 39b7711c03a0d0533e832e734641e56e
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcxx >=19
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3550823
+ timestamp: 1760550860606
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-6.31.1-h658db43_2.conda
+ sha256: a01c3829eb0e3c1354ee7d61c5cde9a79dcebe6ccc7114c2feadf30aecbc7425
+ md5: 155d3d17eaaf49ddddfe6c73842bc671
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcxx >=19
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2982875
+ timestamp: 1760550241203
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2025.11.05-h7b12aa8_0.conda
+ sha256: eb5d5ef4d12cdf744e0f728b35bca910843c8cf1249f758cf15488ca04a21dbb
+ md5: a30848ebf39327ea078cf26d114cff53
depends:
- - ld64_osx-arm64 955.13 llvm21_1_hde6573c_5
- - libllvm21 >=21.1.2,<21.2.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libstdcxx >=14
constrains:
- - cctools_osx-arm64 1024.3.*
- - cctools 1024.3.*
- license: APSL-2.0
- license_family: Other
- size: 18738
- timestamp: 1759697731889
-- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-955.13-llvm21_1_h2cc85ee_5.conda
- sha256: f3c255487ea206f025124d7be97a5ceb9a5bcbd935e2e01a9bceee39d67e1045
- md5: 3955c6731362e3e3e8925b094580347d
+ - re2 2025.11.05.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 211099
+ timestamp: 1762397758105
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2025.11.05-h6983b43_0.conda
+ sha256: a5289915f1259a6622cd98fc7e42192d2fafb09ca130990b99968ead81c8f5aa
+ md5: 2f9ccfdd9a2d3e130d43a9a0a1f4143b
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ constrains:
+ - re2 2025.11.05.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 204965
+ timestamp: 1762397638215
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2025.11.05-h554ac88_0.conda
+ sha256: 901fb4cfdabf1495e7f080f8e8e218d1ad182c9bcd3cea2862481fef0e9d534f
+ md5: a0237623ed85308cb816c3dcced23db2
depends:
- - __osx >=10.13
- - libcxx
- - libllvm21 >=21.1.2,<21.2.0a0
- - sigtool
- - tapi >=1300.6.5,<1301.0a0
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcxx >=19
constrains:
- - clang 21.1.*
- - ld64 955.13.*
- - cctools 1024.3.*
- - cctools_osx-64 1024.3.*
- license: APSL-2.0
- license_family: Other
- size: 1111469
- timestamp: 1759697726026
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-955.13-llvm21_1_hde6573c_5.conda
- sha256: ba4811029a27462661d346604800a88a0f9681edb0e1be605fede6f88eaa2feb
- md5: bd04c50157bcc6758b9893b2933d258e
+ - re2 2025.11.05.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 180107
+ timestamp: 1762398117273
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2025.11.05-h91c62da_0.conda
+ sha256: 7b525313ab16415c4a3191ccf59157c3a4520ed762c8ec61fcfb81d27daa4723
+ md5: 060f099756e6baf2ed51b9065e44eda8
depends:
- __osx >=11.0
- - libcxx
- - libllvm21 >=21.1.2,<21.2.0a0
- - sigtool
- - tapi >=1300.6.5,<1301.0a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libcxx >=19
constrains:
- - ld64 955.13.*
- - cctools_osx-arm64 1024.3.*
- - clang 21.1.*
- - cctools 1024.3.*
- license: APSL-2.0
- license_family: Other
- size: 1032210
- timestamp: 1759697661612
-- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_4.conda
- sha256: 96b6900ca0489d9e5d0318a6b49f8eff43fd85fef6e07cb0c25344ee94cd7a3a
- md5: c94ab6ff54ba5172cf1c58267005670f
+ - re2 2025.11.05.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 165593
+ timestamp: 1762398300610
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-15.2.0-hb13aed2_7.conda
+ sha256: 4d15a66e136fba55bc0e83583de603f46e972f3486e2689628dfd9729a5c3d78
+ md5: 4ea6053660330c1bbd4635b945f7626d
depends:
- __glibc >=2.17,<3.0.a0
- - zstd >=1.5.7,<1.6.0a0
- constrains:
- - binutils_impl_linux-64 2.44
- license: GPL-3.0-only
+ - libgcc >=15.2.0
+ - libstdcxx >=15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- purls: []
- size: 742501
- timestamp: 1761335175964
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-hd32f0e1_4.conda
- sha256: 5acf0697f43f0b900bce0c6a3a44d70fb9d86048c5279ed4f65b2a2842b3d3a6
- md5: e9ec993787f5e11e26f9e48aed0c0720
+ size: 5133768
+ timestamp: 1759968130105
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-15.2.0-h8b511b7_7.conda
+ sha256: b30b7f48e5045e03b0936480953a96d85724ad0e378c02aff1f62fc7199223c6
+ md5: 129b1d275afc8ef30140e3a76108a40e
depends:
- - zstd >=1.5.7,<1.6.0a0
- constrains:
- - binutils_impl_linux-aarch64 2.44
- license: GPL-3.0-only
+ - libgcc >=15.2.0
+ - libstdcxx >=15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- purls: []
- size: 787069
- timestamp: 1761335309762
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.44-h01e97ec_4.conda
- sha256: 5ed61dd00f6a02cfea9e1bb2544c2e6b8b24f9343d6aecf591a656c16d99752f
- md5: 7a1d902b39bb62dd64c45bb46522762d
+ size: 5171245
+ timestamp: 1759967483213
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
+ sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161
+ md5: a587892d3c13b6621a6091be690dbca2
depends:
- - zstd >=1.5.7,<1.6.0a0
- constrains:
- - binutils_impl_linux-ppc64le 2.44
- license: GPL-3.0-only
- license_family: GPL
- purls: []
- size: 919166
- timestamp: 1761335002033
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
- sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3
- md5: 01ba04e414e47f95c03d6ddd81fd37be
+ - libgcc-ng >=12
+ license: ISC
+ size: 205978
+ timestamp: 1716828628198
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
+ sha256: 448df5ea3c5cf1af785aad46858d7a5be0522f4234a4dc9bb764f4d11ff3b981
+ md5: 2e4a8f23bebdcb85ca8e5a0fbe75666a
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 36825
- timestamp: 1749993532943
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda
- sha256: 891844586d02bb528c18fddc6aa14dfd995532fbb8795156d215318e1de242f7
- md5: 6360d4091c919d6e185f1fc3ac36716e
+ - libgcc-ng >=12
+ license: ISC
+ size: 177394
+ timestamp: 1716828514515
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda
+ sha256: d3975cfe60e81072666da8c76b993af018cf2e73fe55acba2b5ba0928efaccf5
+ md5: 6af4b059e26492da6013e79cbcb4d069
depends:
- - libgcc >=13
- - libstdcxx >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 36847
- timestamp: 1749993545798
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libaec-1.1.4-h509caba_0.conda
- sha256: dcca2decab11309358f9d70f5d3b49f5a5dc737e9a309f2541e4b96d012da18b
- md5: 77a652c5ab1391212cc82d2d7812fdd7
+ - __osx >=10.13
+ license: ISC
+ size: 210249
+ timestamp: 1716828641383
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
+ sha256: fade8223e1e1004367d7101dd17261003b60aa576df6d7802191f8972f7470b1
+ md5: a7ce36e284c5faaf93c220dfc39e3abd
depends:
- - libgcc >=13
- - libstdcxx >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 41404
- timestamp: 1749993573717
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda
- sha256: f4fe00ef0df58b670696c62f2ec3f6484431acbf366ecfbcb71141c81439e331
- md5: 1a768b826dfc68e07786788d98babfc3
+ - __osx >=11.0
+ license: ISC
+ size: 164972
+ timestamp: 1716828607917
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda
+ sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3
+ md5: 729a572a3ebb8c43933b30edcc628ceb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: blessing
+ size: 945576
+ timestamp: 1762299687230
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.51.0-h022381a_0.conda
+ sha256: f66a40b6e07a6f8ce6ccbd38d079b7394217d8f8ae0a05efa644aa0a40140671
+ md5: 8920ce2226463a3815e2183c8b5008b8
+ depends:
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: blessing
+ size: 938476
+ timestamp: 1762299829629
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.51.0-h86bffb9_0.conda
+ sha256: ad151af8192c17591fad0b68c9ffb7849ad9f4be9da2020b38b8befd2c5f6f02
+ md5: 1ee9b74571acd6dd87e6a0f783989426
depends:
- __osx >=10.13
- - libcxx >=18
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 30034
- timestamp: 1749993664561
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda
- sha256: 0ea6b73b3fb1511615d9648186a7409e73b7a8d9b3d890d39df797730e3d1dbb
- md5: 8ed0f86b7a5529b98ec73b43a53ce800
+ - libzlib >=1.3.1,<2.0a0
+ license: blessing
+ size: 986898
+ timestamp: 1762300146976
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.51.0-h8adb53f_0.conda
+ sha256: b43d198f147f46866e5336c4a6b91668beef698bfba69d1706158460eadb2c1b
+ md5: 5fb1945dbc6380e6fe7e939a62267772
depends:
- __osx >=11.0
- - libcxx >=18
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 30173
- timestamp: 1749993648288
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-37_h4a7cf45_openblas.conda
- build_number: 37
- sha256: b8872684dc3a68273de2afda2a4a1c79ffa3aab45fcfc4f9b3621bd1cc1adbcc
- md5: 8bc098f29d8a7e3517bac5b25aab39b1
+ - icu >=75.1,<76.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: blessing
+ size: 909508
+ timestamp: 1762300078624
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
+ md5: eecce068c7e4eddeb169591baac20ac4
depends:
- - libopenblas >=0.3.30,<0.3.31.0a0
- - libopenblas >=0.3.30,<1.0a0
- constrains:
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
- - liblapack 3.9.0 37*_openblas
- - mkl <2025
- - libcblas 3.9.0 37*_openblas
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17477
- timestamp: 1760212730445
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-37_haddc8a3_openblas.conda
- build_number: 37
- sha256: c53e454aee352782eb998e49e946f31007e3f5c50f86195b759a48790d533a33
- md5: e35f9af379bf1079f68a2c9932884e6c
+ size: 304790
+ timestamp: 1745608545575
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
+ sha256: 1e289bcce4ee6a5817a19c66e296f3c644dcfa6e562e5c1cba807270798814e7
+ md5: eecc495bcfdd9da8058969656f916cc2
depends:
- - libopenblas >=0.3.30,<0.3.31.0a0
- - libopenblas >=0.3.30,<1.0a0
- constrains:
- - liblapack 3.9.0 37*_openblas
- - liblapacke 3.9.0 37*_openblas
- - libcblas 3.9.0 37*_openblas
- - blas 2.137 openblas
- - mkl <2025
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17533
- timestamp: 1760212907958
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libblas-3.9.0-37_h75dcd6d_openblas.conda
- build_number: 37
- sha256: a300025dee6f32967634551b9ec6f650f3898ac3ad994d11cb988932db86391d
- md5: 89a02fe4303d25c64693961c3016867e
+ size: 311396
+ timestamp: 1745609845915
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda
+ sha256: 00654ba9e5f73aa1f75c1f69db34a19029e970a4aeb0fa8615934d8e9c369c3c
+ md5: a6cb15db1c2dc4d3a5f6cf3772e09e81
depends:
- - libopenblas >=0.3.30,<0.3.31.0a0
- - libopenblas >=0.3.30,<1.0a0
- constrains:
- - libcblas 3.9.0 37*_openblas
- - blas 2.137 openblas
- - mkl <2025
- - liblapack 3.9.0 37*_openblas
- - liblapacke 3.9.0 37*_openblas
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17554
- timestamp: 1760212820527
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-37_he492b99_openblas.conda
- build_number: 37
- sha256: acb6e26ccd1b0ab365b4675f31a689523d217443bf3af64c4a48578ba01298c5
- md5: bcc2cce1ec0cad310fdffb0d99c94466
+ size: 284216
+ timestamp: 1745608575796
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda
+ sha256: 8bfe837221390ffc6f111ecca24fa12d4a6325da0c8d131333d63d6c37f27e0a
+ md5: b68e8f66b94b44aaa8de4583d3d4cc40
depends:
- - libopenblas >=0.3.30,<0.3.31.0a0
- - libopenblas >=0.3.30,<1.0a0
- constrains:
- - liblapack 3.9.0 37*_openblas
- - mkl <2025
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
- - libcblas 3.9.0 37*_openblas
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17706
- timestamp: 1760213529088
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-37_h51639a9_openblas.conda
- build_number: 37
- sha256: 544f935351201a4bea7e1dae0b240ce619febf56655724c64481ec694293bc64
- md5: 675aec03581d97a77f7bb47e99fed4b4
+ size: 279193
+ timestamp: 1745608793272
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
+ sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3
+ md5: 5b767048b1b3ee9a954b06f4084f93dc
depends:
- - libopenblas >=0.3.30,<0.3.31.0a0
- - libopenblas >=0.3.30,<1.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc 15.2.0 h767d61c_7
constrains:
- - liblapacke 3.9.0 37*_openblas
- - blas 2.137 openblas
- - mkl <2025
- - liblapack 3.9.0 37*_openblas
- - libcblas 3.9.0 37*_openblas
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 17647
- timestamp: 1760213578751
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.76-h0b2e76d_0.conda
- sha256: a946b61be1af15ff08c7722e9bac0fab446d8b9896c9f0f35657dfcf887fda8a
- md5: 0f7f0c878c8dceb3b9ec67f5c06d6057
+ - libstdcxx-ng ==15.2.0=*_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 3898269
+ timestamp: 1759968103436
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-15.2.0-h3f4de04_7.conda
+ sha256: 4c6d1a2ae58044112233a57103bbf06000bd4c2aad44a0fd3b464b05fa8df514
+ md5: 6a2f0ee17851251a85fbebafbe707d2d
+ depends:
+ - libgcc 15.2.0 he277a41_7
+ constrains:
+ - libstdcxx-ng ==15.2.0=*_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 3831785
+ timestamp: 1759967470295
+- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-h73f6952_107.conda
+ sha256: ae5f609b3df4f4c3de81379958898cae2d9fc5d633518747c01d148605525146
+ md5: a888a479d58f814ee9355524cc94edf3
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 13677243
+ timestamp: 1759967967095
+- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-h1ed5458_107.conda
+ sha256: d52fdadaf51fabc713bb607d37c4c81ee097b13f44318c72832f7ee2bb2ed25b
+ md5: c3244b394665d837dc5d703a09fe8202
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 12363653
+ timestamp: 1759967400932
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
+ sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f
+ md5: f627678cf829bd70bccf141a19c3ad3e
+ depends:
+ - libstdcxx 15.2.0 h8f9b012_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29343
+ timestamp: 1759968157195
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-15.2.0-hf1166c9_7.conda
+ sha256: 26fc1bdb39042f27302b363785fea6f6b9607f9c2f5eb949c6ae0bdbb8599574
+ md5: 9e5deec886ad32f3c6791b3b75c78681
+ depends:
+ - libstdcxx 15.2.0 h3f4de04_7
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 29341
+ timestamp: 1759967498023
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.10-hd0affe5_2.conda
+ sha256: b30c06f60f03c2cf101afeb3452f48f12a2553b4cb631c9460c8a8ccf0813ae5
+ md5: b04e0a2163a72588a40cde1afd6f2d18
depends:
- __glibc >=2.17,<3.0.a0
- - attr >=2.5.1,<2.6.0a0
- - libgcc >=13
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 121852
- timestamp: 1744577167992
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.76-h5706e9e_0.conda
- sha256: 909a467436e714f1fb4daca150654dc71f6e06b371f467088d98608850f4822e
- md5: dc0fbf47fc1f3217e87e77c0b0d28a77
+ - libcap >=2.77,<2.78.0a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ size: 491211
+ timestamp: 1763011323224
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.10-hf9559e3_2.conda
+ sha256: 22e5bc2b72eb4a104927d34d06954573dbbdef1981fd7f73520f2ca82f0b7101
+ md5: e7a86e3cdea9c37bf12005778d490148
depends:
- - attr >=2.5.1,<2.6.0a0
- - libgcc >=13
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 109349
- timestamp: 1744578610610
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcap-2.76-h36ede59_0.conda
- sha256: ed57a88815ab2da27646009d8ba43013a86a905c3e179cc2eac766e2692cf6bb
- md5: d1b5852fea2d93cca77c24e7d8ca66b4
+ - libcap >=2.77,<2.78.0a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ size: 517490
+ timestamp: 1763011526609
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ sha256: 50c8cd416ac8425e415264de167b41ae8442de22a91098dfdd993ddbf9f13067
+ md5: 553281a034e9cf8693c9df49f6c78ea1
depends:
- - attr >=2.5.1,<2.6.0a0
- - libgcc >=13
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 130985
- timestamp: 1744578050447
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-37_h0358290_openblas.conda
- build_number: 37
- sha256: 8e5a6014424cc11389ebf3febedad937aa4a00e48464831ae4dec69f3c46c4ab
- md5: 3794858d4d6910a7fc3c181519e0b77a
+ size: 328924
+ timestamp: 1719667859099
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda
+ sha256: b5a46b5f2cf1ab6734dcab65f370c6b95f1d62ed27d9d30fe06a828bcb9b239b
+ md5: 5786518d6e1eff2225fe56c0e5d573d8
depends:
- - libblas 3.9.0 37_h4a7cf45_openblas
- constrains:
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
- - liblapack 3.9.0 37*_openblas
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17474
- timestamp: 1760212737633
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-37_hd72aa62_openblas.conda
- build_number: 37
- sha256: 9533dbc9db0f02031c4f1f05dfb3eb70a2dae3c5fea2c32a3f181705d283e0c7
- md5: dbe7f1b380cb12fd3463f4593da682dc
+ size: 335103
+ timestamp: 1719667812650
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda
+ sha256: 72421637a05c2e99120d29a00951190644a4439c8155df9e8a8340983934db13
+ md5: fc8c11f9f4edda643302e28aa0999b90
depends:
- - libblas 3.9.0 37_haddc8a3_openblas
- constrains:
- - liblapack 3.9.0 37*_openblas
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
+ - __osx >=10.13
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17493
- timestamp: 1760212915318
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcblas-3.9.0-37_hdcea00e_openblas.conda
- build_number: 37
- sha256: 48f2bea88bfbb5114a4942dd73b9664f250bec0bfe031303b418b03c2431ce4b
- md5: 414229d9b6efb946bc118aa68453f792
+ size: 289472
+ timestamp: 1719667988764
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda
+ sha256: 05d8f9a4ae6669ebf8d69ec7f62c47b197b885ff989641d8a8043a1159d50c22
+ md5: 4b0af7570b8af42ac6796da8777589d1
depends:
- - libblas 3.9.0 37_h75dcd6d_openblas
- constrains:
- - liblapack 3.9.0 37*_openblas
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
+ - __osx >=11.0
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17522
- timestamp: 1760212826948
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-37_h9b27e0a_openblas.conda
- build_number: 37
- sha256: 750d1d6335158c1ac0141330145ddde42828c90dea1c7881730c56dfea424358
- md5: 8051e584c52b31e246ecc8cd927a6e31
+ size: 282764
+ timestamp: 1719667898064
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.22.0-h454ac66_1.conda
+ sha256: 4888b9ea2593c36ca587a5ebe38d0a56a0e6d6a9e4bb7da7d9a326aaaca7c336
+ md5: 8ed82d90e6b1686f5e98f8b7825a15ef
depends:
- - libblas 3.9.0 37_he492b99_openblas
- constrains:
- - liblapacke 3.9.0 37*_openblas
- - liblapack 3.9.0 37*_openblas
- - blas 2.137 openblas
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 17674
- timestamp: 1760213551530
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-37_hb0561ab_openblas.conda
- build_number: 37
- sha256: 911a01cac0c76d52628fdfe2aecfa010b4145af630ec23fe3fefa7a4c8050a57
- md5: 33ab91e02a34879065d03bb010eb6bf1
+ - __glibc >=2.17,<3.0.a0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 424208
+ timestamp: 1753277183984
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.22.0-h046380b_1.conda
+ sha256: 43fdf51565c239246a169e2d04bd35e3e2e227ccf8fcd4e2bba77431eadee623
+ md5: 775bd916d4f0db14754da3f4a5575d15
depends:
- - libblas 3.9.0 37_h51639a9_openblas
- constrains:
- - liblapacke 3.9.0 37*_openblas
- - blas 2.137 openblas
- - liblapack 3.9.0 37*_openblas
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 17639
- timestamp: 1760213591611
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp21.1-21.1.4-default_hc369343_0.conda
- sha256: ef574e993bed40571d7e7c9d72536aae8b13e0752d4d44fd3d15faeeb068599f
- md5: fc43cba1ebf198a56acfe640e19a9865
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 415854
+ timestamp: 1753277171370
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.22.0-h687e942_1.conda
+ sha256: a0f9fdc663db089fde4136a0bd6c819d7f8daf869fc3ca8582201412e47f298c
+ md5: 69251ed374b31a5664bf5ba58626f3b7
depends:
- __osx >=10.13
- - libcxx >=21.1.4
- - libllvm21 >=21.1.4,<21.2.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 14454624
- timestamp: 1761213958720
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp21.1-21.1.4-default_h73dfc95_0.conda
- sha256: 8b3d4d72e58ee0be12b74eedbdf17d29ea9e49880b23510028418e1c741eef93
- md5: 2e976160d89ecc5d42e9934565cb601f
+ - libcxx >=19
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 331822
+ timestamp: 1753277335578
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.22.0-h14a376c_1.conda
+ sha256: 8b703f2c6e47ed5886d7298601b9416b59e823fc8d1a8fa867192c94c5911aac
+ md5: 3161023bb2f8c152e4c9aa59bdd40975
depends:
- __osx >=11.0
- - libcxx >=21.1.4
- - libllvm21 >=21.1.4,<21.2.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 13676069
- timestamp: 1761209928993
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.16.0-h4e3cde8_0.conda
- sha256: f21af777602d17ced05f168898e759fb0bac5af09ba72c5ece245dd0f14e0fec
- md5: a401aa9329350320c7d3809a7a5a1640
+ - libcxx >=19
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 323360
+ timestamp: 1753277264380
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda
+ sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0
+ md5: cd5a90476766d53e901500df9215e927
depends:
- __glibc >=2.17,<3.0.a0
- - krb5 >=1.21.3,<1.22.0a0
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.25,<1.26.0a0
- libgcc >=14
- - libnghttp2 >=1.67.0,<2.0a0
- - libssh2 >=1.11.1,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=14
+ - libwebp-base >=1.6.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.4,<4.0a0
- zstd >=1.5.7,<1.6.0a0
- license: curl
- license_family: MIT
- purls: []
- size: 459851
- timestamp: 1760977209182
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.16.0-h7bfdcfb_0.conda
- sha256: c7cd6a332e0d977426bb6ff459679c77b3083ec87c0563606bf9948c698e3ed4
- md5: 9fd6981bce6a080b6be4e131619ec936
- depends:
- - krb5 >=1.21.3,<1.22.0a0
+ license: HPND
+ size: 435273
+ timestamp: 1762022005702
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.7.1-hdb009f0_1.conda
+ sha256: 7ff79470db39e803e21b8185bc8f19c460666d5557b1378d1b1e857d929c6b39
+ md5: 8c6fd84f9c87ac00636007c6131e457d
+ depends:
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.25,<1.26.0a0
- libgcc >=14
- - libnghttp2 >=1.67.0,<2.0a0
- - libssh2 >=1.11.1,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=14
+ - libwebp-base >=1.6.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.4,<4.0a0
- zstd >=1.5.7,<1.6.0a0
- license: curl
- license_family: MIT
- purls: []
- size: 479220
- timestamp: 1760977235361
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libcurl-8.16.0-hda50728_0.conda
- sha256: 6743eea9f69c8570283e26e619471d0fbc756b0b87f9a3fdff9231799e98875f
- md5: 50233903e97d80413ee88d21258b6a42
+ license: HPND
+ size: 488407
+ timestamp: 1762022048105
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda
+ sha256: e53424c34147301beae2cd9223ebf593720d94c038b3f03cacd0535e12c9668e
+ md5: 9d4344f94de4ab1330cdc41c40152ea6
depends:
- - krb5 >=1.21.3,<1.22.0a0
- - libgcc >=14
- - libnghttp2 >=1.67.0,<2.0a0
- - libssh2 >=1.11.1,<2.0a0
+ - __osx >=10.13
+ - lerc >=4.0.0,<5.0a0
+ - libcxx >=19
+ - libdeflate >=1.25,<1.26.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libwebp-base >=1.6.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.4,<4.0a0
- zstd >=1.5.7,<1.6.0a0
- license: curl
+ license: HPND
+ size: 404591
+ timestamp: 1762022511178
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda
+ sha256: e9248077b3fa63db94caca42c8dbc6949c6f32f94d1cafad127f9005d9b1507f
+ md5: e2a72ab2fa54ecb6abab2b26cde93500
+ depends:
+ - __osx >=11.0
+ - lerc >=4.0.0,<5.0a0
+ - libcxx >=19
+ - libdeflate >=1.25,<1.26.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: HPND
+ size: 373892
+ timestamp: 1762022345545
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.10-hd0affe5_2.conda
+ sha256: 751cf346f0f56cc9bfa43f7b5c9c30df2fcec8d84d164ac0cd74a27a3af79f30
+ md5: 2f6b30acaa0d6e231d01166549108e2c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcap >=2.77,<2.78.0a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ size: 144395
+ timestamp: 1763011330153
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-257.10-hf9559e3_2.conda
+ sha256: dd1ec27fef9f74ebdd0211ad875ba037f924931c81be164e7ff756b5d86ffc72
+ md5: 4fc935d5bebd8e6e070a861544a71a34
+ depends:
+ - libcap >=2.77,<2.78.0a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ size: 156835
+ timestamp: 1763011535779
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.11.0-hb04c3b8_0.conda
+ sha256: f8977233dc19cb8530f3bc71db87124695db076e077db429c3231acfa980c4ac
+ md5: 34fb73fd2d5a613d8f17ce2eaa15a8a5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 85741
+ timestamp: 1757742873826
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.11.0-h999d871_0.conda
+ sha256: 774118e24e5eacc6589d0d37eca663f8a67f87898c9386e504d82565d84e3643
+ md5: ab76a2aae1548afceeec9ac03efe5f95
+ depends:
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 85958
+ timestamp: 1757742913430
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.11.0-h64b4c5c_0.conda
+ sha256: e6f51b766003b8b17de2f58748ab861b7926530ada2ad5240f036765cbc99f49
+ md5: 71bcdd36cc29097151a0ad8e5fecb537
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 84601
+ timestamp: 1757743187278
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.11.0-hc25f550_0.conda
+ sha256: 4a7dfc57023b813b14f0d84e29514d66c8e87d8a59309537d317d80ecfb1771f
+ md5: f1a3472e064b30f89b58a53c96d4ed53
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 87489
+ timestamp: 1757743003179
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda
+ sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808
+ md5: 80c07c68d2f6870250959dcc95b209d1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 37135
+ timestamp: 1758626800002
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.41.2-h3e4203c_0.conda
+ sha256: 7aed28ac04e0298bf8f7ad44a23d6f8ee000aa0445807344b16fceedc67cce0f
+ md5: 3a68e44fdf2a2811672520fdd62996bd
+ depends:
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 39172
+ timestamp: 1758626850999
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda
+ sha256: c180f4124a889ac343fc59d15558e93667d894a966ec6fdb61da1604481be26b
+ md5: 0f03292cc56bf91a077a134ea8747118
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 895108
+ timestamp: 1753948278280
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.51.0-he30d5cf_1.conda
+ sha256: 7a0fb5638582efc887a18b7d270b0c4a6f6e681bf401cab25ebafa2482569e90
+ md5: 8e62bf5af966325ee416f19c6f14ffa3
+ depends:
+ - libgcc >=14
+ license: MIT
license_family: MIT
- purls: []
- size: 521790
- timestamp: 1760977202391
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.16.0-h7dd4100_0.conda
- sha256: faec28271c0c545b6b95b5d01d8f0bbe0a94178edca2f56e93761473077edb78
- md5: b905caaffc1753671e1284dcaa283594
+ size: 629238
+ timestamp: 1753948296190
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda
+ sha256: d90dd0eee6f195a5bd14edab4c5b33be3635b674b0b6c010fb942b956aa2254c
+ md5: fbfc6cf607ae1e1e498734e256561dc3
depends:
- __osx >=10.13
- - krb5 >=1.21.3,<1.22.0a0
- - libnghttp2 >=1.67.0,<2.0a0
- - libssh2 >=1.11.1,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.4,<4.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: curl
+ license: MIT
license_family: MIT
- purls: []
- size: 412589
- timestamp: 1760977549306
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.16.0-hdece5d2_0.conda
- sha256: f20ce8db8c62f1cdf4d7a9f92cabcc730b1212a7165f4b085e45941cc747edac
- md5: 0537c38a90d179dcb3e46727ccc5bcc1
+ size: 422612
+ timestamp: 1753948458902
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda
+ sha256: 042c7488ad97a5629ec0a991a8b2a3345599401ecc75ad6a5af73b60e6db9689
+ md5: c0d87c3c8e075daf1daf6c31b53e8083
depends:
- __osx >=11.0
- - krb5 >=1.21.3,<1.22.0a0
- - libnghttp2 >=1.67.0,<2.0a0
- - libssh2 >=1.11.1,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.4,<4.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: curl
+ license: MIT
license_family: MIT
- purls: []
- size: 394279
- timestamp: 1760977967042
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.4-h3d58e20_0.conda
- sha256: 64f58f7ad9076598ae4a19f383f6734116d96897032c77de599660233f2924f9
- md5: 17c4292004054f6783b16b55b499f086
+ size: 421195
+ timestamp: 1753948426421
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda
+ sha256: ca494c99c7e5ecc1b4cd2f72b5584cef3d4ce631d23511184411abcbb90a21a5
+ md5: b4ecbefe517ed0157c37f8182768271c
+ depends:
+ - libogg
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libogg >=1.3.5,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 285894
+ timestamp: 1753879378005
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h7ac5ae9_2.conda
+ sha256: 066708ca7179a1c6e5639d015de7ed6e432b93ad50525843db67d57eb1ba1faf
+ md5: 9d099329070afe52d797462ca7bf35f3
+ depends:
+ - libogg
+ - libstdcxx >=14
+ - libgcc >=14
+ - libogg >=1.3.5,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 289391
+ timestamp: 1753879417231
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-ha059160_2.conda
+ sha256: 7b79c0e867db70c66e57ea0abf03ea940070ed8372289d6dc5db7ab59e30acc1
+ md5: 8eadf13aee55e59089edaf2acaaaf4f7
depends:
+ - libogg
+ - libcxx >=19
- __osx >=10.13
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- purls: []
- size: 571252
- timestamp: 1761043932993
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.4-hf598326_0.conda
- sha256: df55e80dda21f2581366f66cf18a6c11315d611f6fb01e56011c5199f983c0d9
- md5: 6002a2ba796f1387b6a5c6d77051d1db
+ - libogg >=1.3.5,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 279656
+ timestamp: 1753879393065
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h81086ad_2.conda
+ sha256: 95768e4eceaffb973081fd986d03da15d93aa10609ed202e6fd5ca1e490a3dce
+ md5: 719e7653178a09f5ca0aa05f349b41f7
depends:
+ - libogg
+ - libcxx >=19
- __osx >=11.0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- purls: []
- size: 567892
- timestamp: 1761043967532
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-21.1.4-h7c275be_0.conda
- sha256: 5e4b1e303a29a36d84002776018a20bb08cc412f16b3baa637d5724118717dd2
- md5: 70e79bc7e8d5adaff95fd67aa380c144
+ - libogg >=1.3.5,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 259122
+ timestamp: 1753879389702
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libvulkan-loader-1.4.328.1-h5279c79_0.conda
+ sha256: bbabc5c48b63ff03f440940a11d4648296f5af81bb7630d98485405cd32ac1ce
+ md5: 372a62464d47d9e966b630ffae3abe73
depends:
- - libcxx >=21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 1106725
- timestamp: 1761043950522
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-21.1.4-h6dc3340_0.conda
- sha256: 4667fd91c7c2ddeffb328559840db2e5889bfddbc7c19466b1b91b74addce4f7
- md5: c89472aff1b477b2765bd0b69d9db596
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ constrains:
+ - libvulkan-headers 1.4.328.1.*
+ license: Apache-2.0
+ license_family: APACHE
+ size: 197672
+ timestamp: 1759972155030
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvulkan-loader-1.4.328.1-h8b8848b_0.conda
+ sha256: f1b32481c65008087c64dec21cc141dec9b80921ff2a3f5571c24c8f531b18ea
+ md5: e5a3ff3a266b68398bd28ed1d4363e65
depends:
- - libcxx >=21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 1142192
- timestamp: 1761043981792
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
- sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
- md5: c277e0a4d549b03ac1e9d6cbbe3d017b
+ - libstdcxx >=14
+ - libgcc >=14
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ constrains:
+ - libvulkan-headers 1.4.328.1.*
+ license: Apache-2.0
+ license_family: APACHE
+ size: 214593
+ timestamp: 1759972148472
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b
+ md5: aea31d2e5b1091feca96fcfe945c3cf9
depends:
- - ncurses
- __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - ncurses >=6.5,<7.0a0
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 134676
- timestamp: 1738479519902
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda
- sha256: c0b27546aa3a23d47919226b3a1635fccdb4f24b94e72e206a751b33f46fd8d6
- md5: fb640d776fc92b682a14e001980825b1
- depends:
- - ncurses
- - libgcc >=13
- - ncurses >=6.5,<7.0a0
- license: BSD-2-Clause
+ - libgcc >=14
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 148125
- timestamp: 1738479808948
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libedit-3.1.20250104-pl5321h9a3a893_0.conda
- sha256: 8ddc5017e56342533918a29e6b7c3fec1f5bfea0179ff38e28847bb0f31ab6cd
- md5: 400d6bad03602d8cffb296be3506c9d8
+ size: 429011
+ timestamp: 1752159441324
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.6.0-ha2e29f5_0.conda
+ sha256: b03700a1f741554e8e5712f9b06dd67e76f5301292958cd3cb1ac8c6fdd9ed25
+ md5: 24e92d0942c799db387f5c9d7b81f1af
depends:
- - ncurses
- - libgcc >=13
- - ncurses >=6.5,<7.0a0
- license: BSD-2-Clause
+ - libgcc >=14
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 159964
- timestamp: 1738479802403
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda
- sha256: 6cc49785940a99e6a6b8c6edbb15f44c2dd6c789d9c283e5ee7bdfedd50b4cd6
- md5: 1f4ed31220402fcddc083b4bff406868
+ size: 359496
+ timestamp: 1752160685488
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda
+ sha256: 00dbfe574b5d9b9b2b519acb07545380a6bc98d1f76a02695be4995d4ec91391
+ md5: 7bb6608cf1f83578587297a158a6630b
depends:
- - ncurses
- __osx >=10.13
- - ncurses >=6.5,<7.0a0
- license: BSD-2-Clause
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 115563
- timestamp: 1738479554273
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda
- sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631
- md5: 44083d2d2c2025afca315c7a172eab2b
+ size: 365086
+ timestamp: 1752159528504
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda
+ sha256: a4de3f371bb7ada325e1f27a4ef7bcc81b2b6a330e46fac9c2f78ac0755ea3dd
+ md5: e5e7d467f80da752be17796b87fe6385
depends:
- - ncurses
- __osx >=11.0
- - ncurses >=6.5,<7.0a0
- license: BSD-2-Clause
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 107691
- timestamp: 1738479560845
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
- md5: 172bf1cd1ff8629f2b1179945ed45055
+ size: 294974
+ timestamp: 1752159906788
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
+ md5: 92ed62436b625154323d40d5f2f11dd7
depends:
- - libgcc-ng >=12
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 112766
- timestamp: 1702146165126
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- sha256: 973af77e297f1955dd1f69c2cbdc5ab9dfc88388a5576cd152cda178af0fd006
- md5: a9a13cb143bbaa477b1ebaefbe47a302
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 395888
+ timestamp: 1727278577118
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
+ sha256: 461cab3d5650ac6db73a367de5c8eca50363966e862dcf60181d693236b1ae7b
+ md5: cd14ee5cca2464a425b1dbfc24d90db2
depends:
- - libgcc-ng >=12
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 115123
- timestamp: 1702146237623
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libev-4.33-ha17a0cc_2.conda
- sha256: 72bf90f8c467a886406a9eca37865e238f4ffd8c07a214535a474736c9b41a19
- md5: 68e44432ab45e0787868e0d8d0ffaa97
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 397493
+ timestamp: 1727280745441
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda
+ sha256: 8896cd5deff6f57d102734f3e672bc17120613647288f9122bec69098e839af7
+ md5: bbeca862892e2898bdb45792a61c4afc
depends:
- - libgcc-ng >=12
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 116586
- timestamp: 1702146272869
-- conda: 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
- purls: []
- size: 106663
- timestamp: 1702146352558
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f
- md5: 36d33e440c31857372a72137f78bacf5
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 107458
- timestamp: 1702146414478
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131
- md5: a1cfcc585f0c42bf8d5546bb1dfb668d
+ - __osx >=10.13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 323770
+ timestamp: 1727278927545
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
+ sha256: bd3816218924b1e43b275863e21a3e13a5db4a6da74cca8e60bc3c213eb62f71
+ md5: af523aae2eca6dfa1c8eec693f5b9a79
depends:
- - libgcc-ng >=12
- - openssl >=3.1.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 427426
- timestamp: 1685725977222
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- sha256: 01333cc7d6e6985dd5700b43660d90e9e58049182017fd24862088ecbe1458e4
- md5: 96ae6083cd1ac9f6bc81631ac835b317
+ - __osx >=11.0
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 323658
+ timestamp: 1727278733917
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
+ md5: 5aa797f8787fe7a17d1b0821485b5adc
depends:
- libgcc-ng >=12
- - openssl >=3.1.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 438992
- timestamp: 1685726046519
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libevent-2.1.12-h3507d20_1.conda
- sha256: 686dc1c4cdb519d6870c5c30e406119e0ba072980f1be271011c2a142b14da78
- md5: 1c71f37dde91397b0c0250959a497f76
+ license: LGPL-2.1-or-later
+ size: 100393
+ timestamp: 1702724383534
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
+ sha256: 6b46c397644091b8a26a3048636d10b989b1bf266d4be5e9474bf763f828f41f
+ md5: b4df5d7d4b63579d081fd3a4cf99740e
depends:
- libgcc-ng >=12
- - openssl >=3.1.3,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 445192
- timestamp: 1695276243684
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda
- sha256: e0bd9af2a29f8dd74309c0ae4f17a7c2b8c4b89f875ff1d6540c941eefbd07fb
- md5: e38e467e577bd193a7d5de7c2c540b04
+ license: LGPL-2.1-or-later
+ size: 114269
+ timestamp: 1702724369203
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.13.0-hca5e8e5_0.conda
+ sha256: 576ce5378cc6a2b722ff33d2359ccb74dea1e6465daa45116e57550f1eb4ba7e
+ md5: aa65b4add9574bb1d23c76560c5efd4c
depends:
- - openssl >=3.1.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 372661
- timestamp: 1685726378869
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- sha256: 8c136d7586259bb5c0d2b913aaadc5b9737787ae4f40e3ad1beaf96c80b919b7
- md5: 1a109764bff3bdc7bdd84088347d71dc
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - xkeyboard-config
+ - xorg-libxau >=1.0.12,<2.0a0
+ license: MIT/X11 Derivative
+ license_family: MIT
+ size: 843995
+ timestamp: 1762341607312
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.13.0-h3c6a4c8_0.conda
+ sha256: c197e58ba06fa9ac73fcbdc20f9a78ba0164f61879d127bb2f7d0d4be346216a
+ md5: a7c78be36bf59b4ba44ad2f2f8b92b37
depends:
- - openssl >=3.1.1,<4.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 368167
- timestamp: 1685726248899
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
- sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2
- md5: 4211416ecba1866fab0c6470986c22d6
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - xkeyboard-config
+ - xorg-libxau >=1.0.12,<2.0a0
+ license: MIT/X11 Derivative
+ license_family: MIT
+ size: 862682
+ timestamp: 1762341934465
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h031cc0b_0.conda
+ sha256: ee64e507b37b073e0bdad739e35330933dd5be7c639600a096551a6968f1035d
+ md5: a67cd8f7b0369bbf2c40411f05a62f3b
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 hf2a90c1_0
+ - libzlib >=1.3.1,<2.0a0
constrains:
- - expat 2.7.1.*
+ - icu <0.0a0
license: MIT
license_family: MIT
- purls: []
- size: 74811
- timestamp: 1752719572741
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda
- sha256: 378cabff44ea83ce4d9f9c59f47faa8d822561d39166608b3e65d1e06c927415
- md5: f75d19f3755461db2eb69401f5514f4c
+ size: 45292
+ timestamp: 1761015784683
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h26afc86_0.conda
+ sha256: ec0735ae56c3549149eebd7dc22c0bed91fd50c02eaa77ff418613ddda190aa8
+ md5: e512be7dc1f84966d50959e900ca121f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 ha9997c6_0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 45283
+ timestamp: 1761015644057
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.15.1-h788dabe_0.conda
+ sha256: db0a568e0853ee38b7a4db1cb4ee76e57fe7c32ccb1d5b75f6618a1041d3c6e4
+ md5: a0e7779b7625b88e37df9bd73f0638dc
depends:
+ - icu >=75.1,<76.0a0
- libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 h8591a01_0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 47192
+ timestamp: 1761015739999
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h23bb396_0.conda
+ sha256: a40ec252d9c50fee7cb0b15be7e358a10888c89dadb23deac254789fcb047de7
+ md5: 65dd26de1eea407dda59f0da170aed22
+ depends:
+ - __osx >=10.13
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 h0ad03eb_0
+ - libzlib >=1.3.1,<2.0a0
constrains:
- - expat 2.7.1.*
+ - icu <0.0a0
license: MIT
license_family: MIT
- purls: []
- size: 74309
- timestamp: 1752719762749
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libexpat-2.7.1-hf512061_0.conda
- sha256: b1f7af630a5cfdfa55dbb87ad1d70edb6a6fef390aab8abcb95eeebd2ed866e6
- md5: a3b5d4db649c2cc3f27677482f7219f8
+ size: 40433
+ timestamp: 1761016207984
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h7b7ecba_0.conda
+ sha256: ddf87bf05955d7870a41ca6f0e9fbd7b896b5a26ec1a98cd990883ac0b4f99bb
+ md5: e7ed73b34f9d43d80b7e80eba9bce9f3
depends:
- - libgcc >=14
- constrains:
- - expat 2.7.1.*
+ - __osx >=10.13
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 ha1d9b0f_0
+ - libzlib >=1.3.1,<2.0a0
license: MIT
license_family: MIT
- purls: []
- size: 83977
- timestamp: 1752719722295
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.7.1-h21dd04a_0.conda
- sha256: 689862313571b62ee77ee01729dc093f2bf25a2f99415fcfe51d3a6cd31cce7b
- md5: 9fdeae0b7edda62e989557d645769515
+ size: 39985
+ timestamp: 1761015935429
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-h9329255_0.conda
+ sha256: c409e384ddf5976a42959265100d6b2c652017d250171eb10bae47ef8166193f
+ md5: fb5ce61da27ee937751162f86beba6d1
depends:
- - __osx >=10.13
- constrains:
- - expat 2.7.1.*
+ - __osx >=11.0
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 h0ff4647_0
+ - libzlib >=1.3.1,<2.0a0
license: MIT
license_family: MIT
- purls: []
- size: 72450
- timestamp: 1752719744781
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
- sha256: 8fbb17a56f51e7113ed511c5787e0dec0d4b10ef9df921c4fd1cccca0458f648
- md5: b1ca5f21335782f71a8bd69bdc093f67
+ size: 40607
+ timestamp: 1761016108361
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-hba2cd1d_0.conda
+ sha256: fa01101fe7d95085846c16825f0e7dc0efe1f1c7438a96fe7395c885d6179495
+ md5: a53d5f7fff38853ddb6bdc8fb609c039
depends:
- __osx >=11.0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.1 h8eac4d7_0
+ - libzlib >=1.3.1,<2.0a0
constrains:
- - expat 2.7.1.*
+ - icu <0.0a0
license: MIT
license_family: MIT
- purls: []
- size: 65971
- timestamp: 1752719657566
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric-2.3.1-ha770c72_0.conda
- sha256: 4b9ebd84f12ace23361ba238c1accf20c627fab2e621ab4a0eb7f9cccc70a4aa
- md5: d39c917e8eb1f2222ea7a6947f6c189a
- depends:
- - libfabric1 2.3.1 h3ff6011_0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 14074
- timestamp: 1761196003247
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric-2.3.1-h8af1aa0_0.conda
- sha256: 1d3c6e230f9db73a6af913dbb094f37236ebb29d092c83901b97551f84335122
- md5: 5421a909139bfd2eaece14d7b0b7bc23
- depends:
- - libfabric1 2.3.1 hb8d9d8c_0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 14129
- timestamp: 1761196166895
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libfabric-2.3.1-ha3edaa6_0.conda
- sha256: 041524f613ed4721f13149bddc58f07af005ffd8dd3fb9d9ccde8f1668a2500d
- md5: c4b42bb688e1da7d4bd8f435becf8a4c
- depends:
- - libfabric1 2.3.1 hb6e87a1_0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 14152
- timestamp: 1761196188204
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric-2.3.1-h694c41f_0.conda
- sha256: dcb1a0be91afdd12c2ca41b359eb56ea2a3825dc8798ca8afc53fb825a22ead7
- md5: e11307dfb0fae06186be30df40a9b718
- depends:
- - libfabric1 2.3.1 h8616949_0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 14140
- timestamp: 1761196414595
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric-2.3.1-hce30654_0.conda
- sha256: ce0ad8ae9af6ba95598b8e44530b50146123eeb73e0383bde27fd958c6129be8
- md5: f3922485ab64f0407644d22ca4083035
- depends:
- - libfabric1 2.3.1 hc919400_0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 14172
- timestamp: 1761196766392
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libfabric1-2.3.1-h3ff6011_0.conda
- sha256: d06f19f37f448b5604b663ec9dab43c923f8faa4ea9a72ab6dbfb77a5c002696
- md5: 635a1fb6aaf99737e3b300b9846708be
+ size: 40611
+ timestamp: 1761016283558
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-ha9997c6_0.conda
+ sha256: 71436e72a286ef8b57d6f4287626ff91991eb03c7bdbe835280521791efd1434
+ md5: e7733bc6785ec009e47a224a71917e84
depends:
- __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
- libgcc >=14
- - libnl >=3.11.0,<4.0a0
- - rdma-core >=59.0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 701568
- timestamp: 1761196002557
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libfabric1-2.3.1-hb8d9d8c_0.conda
- sha256: 6a0e848ff7e7c7683808a8c07e8ce0d0b9fc97d47ece267c139782db6e15cb15
- md5: 4333417cf9b54ef4ead0f8a03743412b
- depends:
- - libgcc >=14
- - libnl >=3.11.0,<4.0a0
- - rdma-core >=59.0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 771455
- timestamp: 1761196165378
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libfabric1-2.3.1-hb6e87a1_0.conda
- sha256: 474e4c0f21fe96090fc2c5e60cd678a09c41eab151299bc7f8b455340b557fd2
- md5: 46f52ed81cb46b17590a8988a7b65afd
- depends:
- - libgcc >=14
- - libnl >=3.11.0,<4.0a0
- - rdma-core >=59.0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 679055
- timestamp: 1761196186599
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libfabric1-2.3.1-h8616949_0.conda
- sha256: c6e710bc61cefcb4e480d73916d280899dcd4538c973a33fe4392cd9fecd4150
- md5: e4eef52b974086a2d94fa309da4bd084
- depends:
- - __osx >=10.13
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 363424
- timestamp: 1761196412746
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfabric1-2.3.1-hc919400_0.conda
- sha256: 2620ac025d4e5fc87f802ceed6a64f37842c55f85404fb52ab4c0702063e2a50
- md5: f3bf890addf107fd680aa3bdf882d127
- depends:
- - __osx >=11.0
- license: BSD-2-Clause OR GPL-2.0-only
- license_family: BSD
- purls: []
- size: 330207
- timestamp: 1761196762425
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda
- sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54
- md5: 35f29eec58405aaf55e01cb470d8c26a
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - libxml2 2.15.1
+ license: MIT
+ license_family: MIT
+ size: 556302
+ timestamp: 1761015637262
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-hf2a90c1_0.conda
+ sha256: f5220ff49efc31431279859049199b9250e79f98c1dee1da12feb74bda2d9cf1
+ md5: 23720d17346b21efb08d68c2255c8431
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - libxml2 2.15.1
+ - icu <0.0a0
license: MIT
license_family: MIT
- purls: []
- size: 57821
- timestamp: 1760295480630
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.5.2-hd65408f_0.conda
- sha256: 6c3332e78a975e092e54f87771611db81dcb5515a3847a3641021621de76caea
- md5: 0c5ad486dcfb188885e3cf8ba209b97b
+ size: 554734
+ timestamp: 1761015772672
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-16-2.15.1-h8591a01_0.conda
+ sha256: 7a13450bce2eeba8f8fb691868b79bf0891377b707493a527bd930d64d9b98af
+ md5: e7177c6fbbf815da7b215b4cc3e70208
depends:
+ - icu >=75.1,<76.0a0
- libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - libxml2 2.15.1
license: MIT
license_family: MIT
- purls: []
- size: 55586
- timestamp: 1760295405021
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libffi-3.5.2-h4197a55_0.conda
- sha256: a8b6f65b8099dfbf1b25df0799d65c672c50d513a1d99a0942c2219a91a4ba76
- md5: 7c07fd6d0b8421b055e6ea20c8688cda
+ size: 597078
+ timestamp: 1761015734476
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-h0ad03eb_0.conda
+ sha256: 00ddbcfbd0318f3c5dbf2b1e1bc595915efe2a61e73b844df422b11fec39d7d8
+ md5: 8487998051f3d300fef701a49c27f282
depends:
- - libgcc >=14
+ - __osx >=10.13
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - icu <0.0a0
+ - libxml2 2.15.1
license: MIT
license_family: MIT
- purls: []
- size: 61860
- timestamp: 1760295405894
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-h750e83c_0.conda
- sha256: 277dc89950f5d97f1683f26e362d6dca3c2efa16cb2f6fdb73d109effa1cd3d0
- md5: d214916b24c625bcc459b245d509f22e
+ size: 493432
+ timestamp: 1761016183078
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-ha1d9b0f_0.conda
+ sha256: e23c5ac1da7b9b65bd18bf32b68717cd9da0387941178cb4d8cc5513eb69a0a9
+ md5: 453807a4b94005e7148f89f9327eb1b7
depends:
- __osx >=10.13
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - libxml2 2.15.1
license: MIT
license_family: MIT
- purls: []
- size: 52573
- timestamp: 1760295626449
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-he5f378a_0.conda
- sha256: 9b8acdf42df61b7bfe8bdc545c016c29e61985e79748c64ad66df47dbc2e295f
- md5: 411ff7cd5d1472bba0f55c0faf04453b
+ size: 494318
+ timestamp: 1761015899881
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h0ff4647_0.conda
+ sha256: ebe2dd9da94280ad43da936efa7127d329b559f510670772debc87602b49b06d
+ md5: 438c97d1e9648dd7342f86049dd44638
depends:
- __osx >=11.0
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - libxml2 2.15.1
license: MIT
license_family: MIT
- purls: []
- size: 40251
- timestamp: 1760295839166
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
- sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45
- md5: c0374badb3a5d4b1372db28d19462c53
- depends:
- - __glibc >=2.17,<3.0.a0
- - _openmp_mutex >=4.5
- constrains:
- - libgomp 15.2.0 h767d61c_7
- - libgcc-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 822552
- timestamp: 1759968052178
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-15.2.0-he277a41_7.conda
- sha256: 616f5960930ad45b48c57f49c3adddefd9423674b331887ef0e69437798c214b
- md5: afa05d91f8d57dd30985827a09c21464
- depends:
- - _openmp_mutex >=4.5
- constrains:
- - libgomp 15.2.0 he277a41_7
- - libgcc-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 510719
- timestamp: 1759967448307
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-15.2.0-h0d7acf9_7.conda
- sha256: a27b8434b9e20ad79ea1c676a25155d6a72d85456999d5b3375d05cd6aab4bc7
- md5: eaa50622eb4d40bcc9a5393bd91bea49
+ size: 464952
+ timestamp: 1761016087733
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h8eac4d7_0.conda
+ sha256: 3f3f9ba64a3fca15802d4eaf2a97696e6dcd916effa6a683756fd9f11245df5a
+ md5: cf7291a970b93fe3bb726879f2037af8
depends:
- - _openmp_mutex >=4.5
+ - __osx >=11.0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
constrains:
- - libgomp 15.2.0 h0d7acf9_7
- - libgcc-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 737745
- timestamp: 1759971060439
-- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-h73f6952_107.conda
- sha256: 67323768cddb87e744d0e593f92445cd10005e04259acd3e948c7ba3bcb03aed
- md5: 85fce551e54a1e81b69f9ffb3ade6aee
- depends:
- - __unix
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 2728965
- timestamp: 1759967882886
-- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h1ed5458_107.conda
- sha256: 79aba324fac4fcdd95f1f634c04c63daaf290f86416504204c6ac20ec512ff40
- md5: f21f14e320717eb16ed8739258dbfad0
- depends:
- - __unix
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 2112340
- timestamp: 1759967371861
-- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-ppc64le-15.2.0-ha42e3bc_107.conda
- sha256: fcb1e0712a8691106bb092cd5c3a9fa9bdc27e8f9919ae31d440863ee7573944
- md5: 1196318ebfe49eba0b9639166f022030
- depends:
- - __unix
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 626663
- timestamp: 1759970987443
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
- sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad
- md5: 280ea6eee9e2ddefde25ff799c4f0363
+ - libxml2 2.15.1
+ - icu <0.0a0
+ license: MIT
+ license_family: MIT
+ size: 464186
+ timestamp: 1761016258891
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.43-h711ed8c_1.conda
+ sha256: 0694760a3e62bdc659d90a14ae9c6e132b525a7900e59785b18a08bb52a5d7e5
+ md5: 87e6096ec6d542d1c1f8b33245fe8300
depends:
- - libgcc 15.2.0 h767d61c_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29313
- timestamp: 1759968065504
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-15.2.0-he9431aa_7.conda
- sha256: 7d98979b2b5698330007b0146b8b4b95b3790378de12129ce13c9fc88c1ef45a
- md5: a5ce1f0a32f02c75c11580c5b2f9258a
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ license: MIT
+ license_family: MIT
+ size: 245434
+ timestamp: 1757963724977
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.43-h6700d25_1.conda
+ sha256: 8a816572a4650149d28c0b8b44e294380de18787735d00c7cf5fad91dba8e286
+ md5: 0f31501ccd51a40f0a91381080ae7368
depends:
- - libgcc 15.2.0 he277a41_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29261
- timestamp: 1759967452303
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-15.2.0-hfdc3801_7.conda
- sha256: d192e42f73e05747664ac4788db532662b770e0c99258f5f1a912e3530336713
- md5: 41ffc26dfb2121054703109733c62ef2
+ - libgcc >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ license: MIT
+ license_family: MIT
+ size: 253367
+ timestamp: 1757964660396
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.43-h486b42e_1.conda
+ sha256: 00d6b5e92fc1c5d86e095b9b6840f793d9fc4c9b4a7753fa0f8197ab11d5eb90
+ md5: 367b8029352f3899fb76cc20f4d144b9
depends:
- - libgcc 15.2.0 h0d7acf9_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29175
- timestamp: 1759971065478
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
- sha256: dc9c7d7a6c0e6639deee6fde2efdc7e119e7739a6b229fa5f9049a449bae6109
- md5: 8504a291085c9fb809b66cabd5834307
+ - __osx >=10.13
+ - libxml2
+ - libxml2-16 >=2.14.6
+ license: MIT
+ license_family: MIT
+ size: 225660
+ timestamp: 1757964032926
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.43-hb2570ba_1.conda
+ sha256: 7a4d0676ab1407fecb24d4ada7fe31a98c8889f61f04612ea533599c22b8c472
+ md5: 90f7ed12bb3c164c758131b3d3c2ab0c
+ depends:
+ - __osx >=11.0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ license: MIT
+ license_family: MIT
+ size: 220345
+ timestamp: 1757964000982
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48
+ md5: a7b27c075c9b7f459f1c022090697cba
depends:
- __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
- libgcc >=13
- - libgpg-error >=1.55,<2.0a0
- license: LGPL-2.1-or-later
- purls: []
- size: 590353
- timestamp: 1747060639058
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda
- sha256: 5c572886ae3bf8f55fbc8f18275317679b559a9dd00cf1f128d24057dc6de70e
- md5: 50df370cbbbcfb4aa67556879e6643a1
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 109043
+ timestamp: 1730442108429
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda
+ sha256: 9ae7edbe6dcdaa0371736118a1e05ffa47c15c0118a092ff1b0a35cbb621ac2d
+ md5: faf7adbb1938c4aa7a312f110f46859b
depends:
+ - bzip2 >=1.0.8,<2.0a0
- libgcc >=13
- - libgpg-error >=1.55,<2.0a0
- license: LGPL-2.1-or-later
- purls: []
- size: 652592
- timestamp: 1747060671875
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcrypt-lib-1.11.1-h190368a_0.conda
- sha256: e6dc3542c82187dcf709bc3987f4b3f9bd458587bca92dd67e5375d6c858b64e
- md5: 68a3f0a992095e1bc881111abec73c25
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 117603
+ timestamp: 1730442215935
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda
+ sha256: 434a4d1ad23c1c8deb7ec2da94aca05e22bc29dee445b4f7642e1c2f20fc0b0b
+ md5: 3cf12c97a18312c9243a895580bf5be6
depends:
- - libgcc >=13
- - libgpg-error >=1.55,<2.0a0
- license: LGPL-2.1-or-later
- purls: []
- size: 857213
- timestamp: 1747060675720
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda
- sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02
- md5: 8621a450add4e231f676646880703f49
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 129542
+ timestamp: 1730442392952
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda
+ sha256: 507599a77c1ce823c2d3acaefaae4ead0686f183f3980467a4c4b8ba209eff40
+ md5: 7177414f275db66735a17d316b0a81d6
depends:
- - libgfortran5 15.2.0 hcd61629_7
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 125507
+ timestamp: 1730442214849
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
+ md5: edb0dca6bc32e4f4789199455a1dbeb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - libgfortran-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29275
- timestamp: 1759968110483
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-15.2.0-he9431aa_7.conda
- sha256: 78d958444dd41c4b590f030950a29b4278922147f36c2221c84175eedcbc13f1
- md5: ffe6ad135bd85bb594a6da1d78768f7c
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 60963
+ timestamp: 1727963148474
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
+ sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84
+ md5: 08aad7cbe9f5a6b460d0976076b6ae64
depends:
- - libgfortran5 15.2.0 h87db57e_7
+ - libgcc >=13
constrains:
- - libgfortran-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29294
- timestamp: 1759967474985
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-15.2.0-hfdc3801_7.conda
- sha256: 7c7e2528158bc58246b2cad06d471bcee6a2d38f79c900347a5f539dee0c2226
- md5: e739888d692ada7c76e5202d0e91e6e5
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 66657
+ timestamp: 1727963199518
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
+ sha256: 8412f96504fc5993a63edf1e211d042a1fd5b1d51dedec755d2058948fcced09
+ md5: 003a54a4e32b02f7355b50a837e699da
depends:
- - libgfortran5 15.2.0 h111d2ef_7
+ - __osx >=10.13
constrains:
- - libgfortran-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29130
- timestamp: 1759971092465
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h306097a_1.conda
- sha256: 97551952312cf4954a7ad6ba3fd63c739eac65774fe96ddd121c67b5196a8689
- md5: cd5393330bff47a00d37a117c65b65d0
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 57133
+ timestamp: 1727963183990
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
+ sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b
+ md5: 369964e85dc26bfe78f41399b366c435
depends:
- - libgfortran5 15.2.0 h336fb69_1
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 134506
- timestamp: 1759710031253
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-hfcf01ff_1.conda
- sha256: e9a5d1208b9dc0b576b35a484d527d9b746c4e65620e0d77c44636033b2245f0
- md5: f699348e3f4f924728e33551b1920f79
+ - __osx >=11.0
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 46438
+ timestamp: 1727963202283
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2
+ sha256: ff94f30b2e86cbad6296cf3e5804d442d9e881f7ba8080d92170981662528c6e
+ md5: c66fe2d123249af7651ebde8984c51c2
depends:
- - libgfortran5 15.2.0 h742603c_1
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 134016
- timestamp: 1759712902814
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_7.conda
- sha256: 63e1d1ce309e3f42a11637ecf0f29b5cf1550ca6d46412edf82e8e249b1917a1
- md5: beeb74a6fe5ff118451cf0581bfe2642
+ - libgcc-ng >=9.3.0
+ - libstdcxx-ng >=9.3.0
+ license: Apache-2.0
+ license_family: Apache
+ size: 168074
+ timestamp: 1607309189989
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzopfli-1.0.3-h01db608_0.tar.bz2
+ sha256: 56d57e2a1451e9d16b019e6edee8b545653bef3122b34c349dd3f52b9ffe59e8
+ md5: 1ee98b0c2d17d98c4730c3036a335eb2
+ depends:
+ - libgcc-ng >=9.3.0
+ - libstdcxx-ng >=9.3.0
+ license: Apache-2.0
+ license_family: Apache
+ size: 171299
+ timestamp: 1607309446885
+- conda: https://conda.anaconda.org/conda-forge/osx-64/libzopfli-1.0.3-h046ec9c_0.tar.bz2
+ sha256: 3f35f8adf997467699a01819aeabba153ef554e796618c446a9626c2173aee90
+ md5: 55f3f5c9bccca18d33cb3a4bcfe002d7
depends:
- - libgfortran 15.2.0 h69a702a_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29330
- timestamp: 1759968394141
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-15.2.0-he9431aa_7.conda
- sha256: 4afdfe0a1ac87a2c3b186232b9386bda3a51655e6779c0f75c7ad4352e58d3a5
- md5: e810efad68f395154237c4dce83aa482
+ - libcxx >=11.0.0
+ license: Apache-2.0
+ license_family: Apache
+ size: 162262
+ timestamp: 1607309210977
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzopfli-1.0.3-h9f76cd9_0.tar.bz2
+ sha256: e3003b8efe551902dc60b21c81d7164b291b26b7862704421368d26ba5c10fa0
+ md5: a0758d74f57741aa0d9ede13fd592e56
depends:
- - libgfortran 15.2.0 he9431aa_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29294
- timestamp: 1759967654179
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-ng-15.2.0-hfdc3801_7.conda
- sha256: abf2d966f87907ef0f8ce2dcbbcc9e893b5519ff8d30fa88a268c3d30fea2cb6
- md5: d854ba413b7a91229c1b1272b18e5a88
+ - libcxx >=11.0.0
+ license: Apache-2.0
+ license_family: Apache
+ size: 147901
+ timestamp: 1607309166373
+- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.5-h472b3d1_0.conda
+ sha256: 1139bbc6465515e328f63f6c3ef4c045c3159b8aa5b23050f4360c6f7e128805
+ md5: 5e486397a9547fbf4e454450389f7f18
depends:
- - libgfortran 15.2.0 hfdc3801_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29199
- timestamp: 1759971286482
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda
- sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34
- md5: f116940d825ffc9104400f0d7f1a4551
+ - __osx >=10.13
+ constrains:
+ - intel-openmp <0.0a0
+ - openmp 21.1.5|21.1.5.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 310792
+ timestamp: 1762315894069
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.5-h4a912ad_0.conda
+ sha256: a9707045db6a1b9dc2b196f02c3e31d72fe3dbab4ebc4976f3b913c26394dca0
+ md5: 9ae7847a3bef5e050f3921260032033c
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=15.2.0
+ - __osx >=11.0
constrains:
- - libgfortran 15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 1572758
- timestamp: 1759968082504
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-15.2.0-h87db57e_7.conda
- sha256: ae9a8290a7ff0fa28f540208906896460c62dcfbfa31ff9b8c2b398b5bbd34b1
- md5: dd7233e2874ea59e92f7d24d26bb341b
+ - intel-openmp <0.0a0
+ - openmp 21.1.5|21.1.5.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 285516
+ timestamp: 1762315951771
+- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21.1.4-hb0207f0_0.conda
+ sha256: 4b61b83875d9757cdac87bb60cf46bcb35e961c9013bc537137ae92cd786986c
+ md5: 1fab34d0e504fe6613d8dd624ac202ad
depends:
- - libgcc >=15.2.0
+ - __osx >=10.13
+ - libllvm21 21.1.4 h56e7563_0
+ - llvm-tools-21 21.1.4 h879f4bc_0
constrains:
- - libgfortran 15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 1145738
- timestamp: 1759967460371
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-15.2.0-h111d2ef_7.conda
- sha256: 9d3d96a164e99889518e29a337c32918d8817aa43414d812d39d9b2cd98c30d6
- md5: ce02ae86871357c50e42e0c4cee22ffa
+ - llvmdev 21.1.4
+ - clang 21.1.4
+ - clang-tools 21.1.4
+ - llvm 21.1.4
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 88129
+ timestamp: 1761079351969
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21.1.5-h855ad52_0.conda
+ sha256: 3c32c19d06d7ae6d1024055ef774e90e79842ac686282a19ef2975cc2c755d9e
+ md5: c7b7ea848bb9e5c19151a2863b138164
depends:
- - libgcc >=15.2.0
+ - __osx >=11.0
+ - libllvm21 21.1.5 h8e0c9ce_0
+ - llvm-tools-21 21.1.5 h91fd4e7_0
constrains:
- - libgfortran 15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 1295279
- timestamp: 1759971073958
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-h336fb69_1.conda
- sha256: 1d53bad8634127b3c51281ce6ad3fbf00f7371824187490a36e5182df83d6f37
- md5: b6331e2dcc025fc79cd578f4c181d6f2
+ - llvm 21.1.5
+ - llvmdev 21.1.5
+ - clang 21.1.5
+ - clang-tools 21.1.5
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 89204
+ timestamp: 1762285893036
+- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21-21.1.4-h879f4bc_0.conda
+ sha256: 99d3a4bbe96be5f8c957b1a37c23651b6f0e5e67cc39918213ba63b5c3cfd279
+ md5: 3b528c4ffc29ac23bb951dfc7f1980b5
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - libllvm21 21.1.4 h56e7563_0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 19876887
+ timestamp: 1761079261452
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21-21.1.5-h91fd4e7_0.conda
+ sha256: ad53f4f581d5e38c980316c2d6ba68432fd5803d23b2e1d7edb2b8bcf23e1e8b
+ md5: 338aac66c1b875db4cb28ccbfcb47bdc
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - libllvm21 21.1.5 h8e0c9ce_0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 18706676
+ timestamp: 1762285765810
+- conda: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
+ sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6
+ md5: 91e27ef3d05cc772ce627e51cff111c4
depends:
- - llvm-openmp >=8.0.0
- constrains:
- - libgfortran 15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 1236316
- timestamp: 1759709318982
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-h742603c_1.conda
- sha256: 18808697013a625ca876eeee3d86ee5b656f17c391eca4a4bc70867717cc5246
- md5: afccf412b03ce2f309f875ff88419173
+ - python >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 8250
+ timestamp: 1650660473123
+- conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ sha256: e4a07f357a4cf195a2345dabd98deab80f4d53574abe712a9cc7f22d3f2cc2c3
+ md5: 49647ac1de4d1e4b49124aedf3934e02
depends:
- - llvm-openmp >=8.0.0
- constrains:
- - libgfortran 15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 764028
- timestamp: 1759712189275
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
- sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca
- md5: f7b4d76975aac7e5d9e6ad13845f92fe
+ - __unix
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 59696
+ timestamp: 1746634858826
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.2-py314hae3bed6_2.conda
+ sha256: 4871db69d62586fa264373cb1fee0fd2e3bbed2cddeca66bc423ccc9836c2e45
+ md5: ddd2ee75713129777aa3e3339f899008
depends:
- __glibc >=2.17,<3.0.a0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 447919
- timestamp: 1759967942498
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-15.2.0-he277a41_7.conda
- sha256: 0a024f1e4796f5d90fb8e8555691dad1b3bdfc6ac3c2cd14d876e30f805fcac7
- md5: 34cef4753287c36441f907d5fdd78d42
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 450308
- timestamp: 1759967379407
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-15.2.0-h0d7acf9_7.conda
- sha256: f9f76b73988083230f7d31ff119e66c397b8ed45a9e0c23b3d847037212052b2
- md5: e610065e530b3ed9d81421e8289b901e
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 456232
- timestamp: 1759970993880
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
- sha256: 697334de4786a1067ea86853e520c64dd72b11a05137f5b318d8a444007b5e60
- md5: 2bd47db5807daade8500ed7ca4c512a4
+ - libgcc >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libxslt >=1.1.43,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause and MIT-CMU
+ size: 1616783
+ timestamp: 1762506575980
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-6.0.2-py314hc429ed8_2.conda
+ sha256: 6b8083a7c1cd4da70f77a754f5e5636d85b8295216806e6c9696839a71e1ce7d
+ md5: 8559c38ec631f92fa2d95a0958fe8737
+ depends:
+ - libgcc >=14
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libxslt >=1.1.43,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause and MIT-CMU
+ size: 1549565
+ timestamp: 1762506450786
+- conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.2-py314h787f955_2.conda
+ sha256: b76af19826dfe9fc7101fdeb3d96852d091a430b73fdf084fbd4bacd1e1a3210
+ md5: 5bedcfaa028960dc42499bbd8be83c16
+ depends:
+ - __osx >=10.13
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libxslt >=1.1.43,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause and MIT-CMU
+ size: 1428805
+ timestamp: 1762506862335
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.2-py314he05ef12_2.conda
+ sha256: b13cb4b556e1973c81aefef5709059251084f5c80fe9fe94981141d7932ceb74
+ md5: b53627cd79341966e489b2f8bc82f486
+ depends:
+ - __osx >=11.0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libxslt >=1.1.43,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause and MIT-CMU
+ size: 1388732
+ timestamp: 1762506892440
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346
+ md5: 9de5350a85c4a20c685259b889aa6393
depends:
- - libstdcxx >=13
- - libgcc >=13
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- license: LGPL-2.1-only
- purls: []
- size: 312184
- timestamp: 1745575272035
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgpg-error-1.55-h5ad3122_0.conda
- sha256: a744c0a137a084af7cee4a33de9bffb988182b5be4edb8a45d51d2a1efd3724c
- md5: 39f742598d0f18c8e1cb01712bc03ee8
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 167055
+ timestamp: 1733741040117
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda
+ sha256: 67e55058d275beea76c1882399640c37b5be8be4eb39354c94b610928e9a0573
+ md5: 6654e411da94011e8fbe004eacb8fe11
depends:
- libgcc >=13
- libstdcxx >=13
- - libgcc >=13
- license: LGPL-2.1-only
- purls: []
- size: 327973
- timestamp: 1745575312848
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libgpg-error-1.55-h2621725_0.conda
- sha256: c5a3054b24a30e4e2d5d4ee85d96068ae18b97317c0047b20f8c24f075ef2501
- md5: 6c46506b2adec64e8aa51bf0eb4a1d2a
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 184953
+ timestamp: 1733740984533
+- conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.10.0-h240833e_1.conda
+ sha256: 8da3c9d4b596e481750440c0250a7e18521e7f69a47e1c8415d568c847c08a1c
+ md5: d6b9bd7e356abd7e3a633d59b753495a
depends:
- - libstdcxx >=13
- - libgcc >=13
- license: LGPL-2.1-only
- purls: []
- size: 340642
- timestamp: 1745575312445
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.12.1-default_h7f8ec31_1002.conda
- sha256: f7fbc792dbcd04bf27219c765c10c239937b34c6c1a1f77a5827724753e02da1
- md5: c01021ae525a76fe62720c7346212d74
+ - __osx >=10.13
+ - libcxx >=18
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 159500
+ timestamp: 1733741074747
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda
+ sha256: 94d3e2a485dab8bdfdd4837880bde3dd0d701e2b97d6134b8806b7c8e69c8652
+ md5: 01511afc6cc1909c5303cf31be17b44f
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=14
- - libstdcxx >=14
- - libxml2
- - libxml2-16 >=2.14.6
- license: BSD-3-Clause
+ - __osx >=11.0
+ - libcxx >=18
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 2450642
- timestamp: 1757624375958
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h7949937_1002.conda
- sha256: 8cc272e76e06411ba1b9edf55a3049b010461c6f80b00e33baba1d168106287f
- md5: b94fcabb2d99e4372a59c6c600c9d1b7
+ size: 148824
+ timestamp: 1733741047892
+- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
+ sha256: 7b1da4b5c40385791dbc3cc85ceea9fad5da680a27d5d3cb8bfaa185e304a89e
+ md5: 5b5203189eb668f042ac2b0826244964
depends:
+ - mdurl >=0.1,<1
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 64736
+ timestamp: 1754951288511
+- conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.7-py314h1194b4b_0.conda
+ sha256: 67adff67711c73e328bc4ce1f06fe89a09a94c693330340f340beadef76e0c2f
+ md5: 247543c5a2bae8d60e7f8dd6f3a72bde
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
- libgcc >=14
- libstdcxx >=14
- - libxml2
- - libxml2-16 >=2.14.6
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 2468149
- timestamp: 1757623945604
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libhwloc-2.12.1-default_h9d94601_1002.conda
- sha256: 95bf83ed80cf2a8fb351bb15c97a2d1f26a74f268ba4c470f1d5aa68c02ec839
- md5: 3ba00ef560a747a7ceca9db08330dd16
- depends:
+ - numpy >=1.23
+ - numpy >=1.23,<3
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.14,<3.15.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.14.* *_cp314
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 8419114
+ timestamp: 1760560559162
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.10.7-py314h5be3d5a_0.conda
+ sha256: ed3ccdfa4bb377ac51107ca5b3f6dbc77c688aaded2c8f727dc61fb8c5702879
+ md5: 4d3915252866f5b5641511ba592ac926
+ depends:
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
- libgcc >=14
- libstdcxx >=14
- - libxml2
- - libxml2-16 >=2.14.6
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 2499343
- timestamp: 1757624011195
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.12.1-default_h094e1f9_1002.conda
- sha256: 11e49fcf5c38aad4a78f4b74843eccd610c0e86c424b701e3e87cac072049fb7
- md5: 4d9e9610b6a16291168144842cd9cae2
+ - numpy >=1.23
+ - numpy >=1.23,<3
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python-dateutil >=2.7
+ - python_abi 3.14.* *_cp314
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 8442927
+ timestamp: 1760560662667
+- conda: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.10.7-py314hd47142c_0.conda
+ sha256: 5dabe925c0b7c783fe224c66aca70020f316b03ef37d948c9878ead5794de8c8
+ md5: 28a65ed1cad5a165cba7e0b6c119de67
depends:
- __osx >=10.13
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
- libcxx >=19
- - libxml2
- - libxml2-16 >=2.14.6
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 2381331
- timestamp: 1757624131667
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.12.1-default_h48b22c3_1002.conda
- sha256: 90d3be72bfcb74541c6a8c48fdb3c903c2e7bf9ea66649d743c204a636e9e0bb
- md5: 39a1c6805c7a3d2d5ad304ac015d5124
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - numpy >=1.23
+ - numpy >=1.23,<3
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.14,<3.15.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.14.* *_cp314
+ - qhull >=2020.2,<2020.3.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 8302551
+ timestamp: 1760560995255
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.10.7-py314hd63e3f0_0.conda
+ sha256: 3f59d8d523028675e23c85029cb951263829005d6ecc384d1b0dd569ca49bdc1
+ md5: 9e056ad3de65f821431f608997f9d9a1
depends:
- __osx >=11.0
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
- libcxx >=19
- - libxml2
- - libxml2-16 >=2.14.6
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - numpy >=1.23
+ - numpy >=1.23,<3
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python-dateutil >=2.7
+ - python_abi 3.14.* *_cp314
+ - qhull >=2020.2,<2020.3.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 8210890
+ timestamp: 1760561429762
+- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
+ sha256: 9d690334de0cd1d22c51bc28420663f4277cfa60d34fa5cad1ce284a13f1d603
+ md5: 00e120ce3e40bad7bfc78861ce3c4a25
+ depends:
+ - python >=3.10
+ - traitlets
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 2355866
- timestamp: 1757624101657
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
- md5: 915f5995e94f60e9a4826e0b0920ee88
+ size: 15175
+ timestamp: 1761214578417
+- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
+ sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7
+ md5: 592132998493b3ff25fd7479396e8351
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=14
- license: LGPL-2.1-only
- purls: []
- size: 790176
- timestamp: 1754908768807
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
- sha256: 1473451cd282b48d24515795a595801c9b65b567fe399d7e12d50b2d6cdb04d9
- md5: 5a86bf847b9b926f3a4f203339748d78
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 14465
+ timestamp: 1733255681319
+- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
+ sha256: 8818467a7490dea7876e1c6d112af7c0e326a5a54cd829a384a493a152d8596a
+ md5: 2ea6ce24274096bf2df6c8c50f373d5b
depends:
- - libgcc >=14
- license: LGPL-2.1-only
- purls: []
- size: 791226
- timestamp: 1754910975665
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.18-h25553c4_2.conda
- sha256: 242e52d3a4c51a76c16e9fb76f9e08e44549a85e4206fdfea778fccf1209ea36
- md5: aa29367f5f5e1629a4c7a7e9d439a7e9
+ - h5py
+ - importlib_metadata
+ - netcdf4
+ - numpy
+ - python >=3.7
+ - rich
+ license: MIT
+ license_family: MIT
+ size: 383105
+ timestamp: 1706720749456
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mpc-1.3.1-h24ddda3_1.conda
+ sha256: 1bf794ddf2c8b3a3e14ae182577c624fa92dea975537accff4bc7e5fea085212
+ md5: aa14b9a5196a6d8dd364164b7ce56acf
depends:
- - libgcc >=14
- license: LGPL-2.1-only
- purls: []
- size: 798975
- timestamp: 1754910357848
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda
- sha256: a1c8cecdf9966921e13f0ae921309a1f415dfbd2b791f2117cf7e8f5e61a48b6
- md5: 210a85a1119f97ea7887188d176db135
+ - __glibc >=2.17,<3.0.a0
+ - gmp >=6.3.0,<7.0a0
+ - libgcc >=13
+ - mpfr >=4.2.1,<5.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 116777
+ timestamp: 1725629179524
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpc-1.3.1-h783934e_1.conda
+ sha256: b5b674f496ed28c0b2d08533c6f11eaf1840bf7d9c830655f51514f2f9d9a9c8
+ md5: d3758cd24507dc1bda3483ce051d48ac
depends:
- - __osx >=10.13
- license: LGPL-2.1-only
- purls: []
- size: 737846
- timestamp: 1754908900138
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda
- sha256: de0336e800b2af9a40bdd694b03870ac4a848161b35c8a2325704f123f185f03
- md5: 4d5a7445f0b25b6a3ddbb56e790f5251
+ - gmp >=6.3.0,<7.0a0
+ - libgcc >=13
+ - mpfr >=4.2.1,<5.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 132799
+ timestamp: 1725629168783
+- conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda
+ sha256: dcf91571da6c2f0db96d43a1b639047def05a0e1b6436d42c9129ab14af47b10
+ md5: 0520855aaae268ea413d6bc913f1384c
+ depends:
+ - __osx >=10.13
+ - gmp >=6.3.0,<7.0a0
+ - mpfr >=4.2.1,<5.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 107774
+ timestamp: 1725629348601
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda
+ sha256: 2700899ad03302a1751dbf2bca135407e470dd83ac897ab91dd8675d4300f158
+ md5: a5635df796b71f6ca400fc7026f50701
depends:
- __osx >=11.0
- license: LGPL-2.1-only
- purls: []
- size: 750379
- timestamp: 1754909073836
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
- sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4
- md5: 9fa334557db9f63da6c9285fd2a48638
+ - gmp >=6.3.0,<7.0a0
+ - mpfr >=4.2.1,<5.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 104766
+ timestamp: 1725629165420
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.2.1-h90cbb55_3.conda
+ sha256: f25d2474dd557ca66c6231c8f5ace5af312efde1ba8290a6ea5e1732a4e669c0
+ md5: 2eeb50cab6652538eee8fc0bc3340c81
depends:
- __glibc >=2.17,<3.0.a0
+ - gmp >=6.3.0,<7.0a0
- libgcc >=13
- constrains:
- - jpeg <0.0.0a
- license: IJG AND BSD-3-Clause AND Zlib
- purls: []
- size: 628947
- timestamp: 1745268527144
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.1.0-h86ecc28_0.conda
- sha256: c7e4f017eeadcabb30e2a95dae95aad27271d633835e55e5dae23c932ae7efab
- md5: a689388210d502364b79e8b19e7fa2cb
- depends:
- - libgcc >=13
- constrains:
- - jpeg <0.0.0a
- license: IJG AND BSD-3-Clause AND Zlib
- purls: []
- size: 653054
- timestamp: 1745268199701
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libjpeg-turbo-3.1.0-h190368a_0.conda
- sha256: 0d5026553d79c2129ad5f496035fb2bb24d89e8c29612f665226be08e7b010cc
- md5: 9545594bb6137533337b5906400f4972
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 634751
+ timestamp: 1725746740014
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpfr-4.2.1-h2305555_3.conda
+ sha256: abb35c37de2ec6c9ee89995142b1cfea9e6547202ba5578e5307834eca6d436f
+ md5: 65b21e8d5f0ec6a2f7e87630caed3318
depends:
+ - gmp >=6.3.0,<7.0a0
- libgcc >=13
- constrains:
- - jpeg <0.0.0a
- license: IJG AND BSD-3-Clause AND Zlib
- purls: []
- size: 751325
- timestamp: 1745268203352
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.0-h6e16a3a_0.conda
- sha256: 9c0009389c1439ec96a08e3bf7731ac6f0eab794e0a133096556a9ae10be9c27
- md5: 87537967e6de2f885a9fcebd42b7cb10
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 1841314
+ timestamp: 1725746723157
+- conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda
+ sha256: dddb6721dff05b8dfb654c532725330231fcb81ff1e27d885ee0cdcc9fccf1c4
+ md5: d511e58aaaabfc23136880d9956fa7a6
depends:
- __osx >=10.13
- constrains:
- - jpeg <0.0.0a
- license: IJG AND BSD-3-Clause AND Zlib
- purls: []
- size: 586456
- timestamp: 1745268522731
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.0-h5505292_0.conda
- sha256: 78df2574fa6aa5b6f5fc367c03192f8ddf8e27dc23641468d54e031ff560b9d4
- md5: 01caa4fbcaf0e6b08b3aef1151e91745
+ - gmp >=6.3.0,<7.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 373396
+ timestamp: 1725746891597
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda
+ sha256: 4463e4e2aba7668e37a1b8532859191b4477a6f3602a5d6b4d64ad4c4baaeac5
+ md5: 4e4ea852d54cc2b869842de5044662fb
depends:
- __osx >=11.0
- constrains:
- - jpeg <0.0.0a
- license: IJG AND BSD-3-Clause AND Zlib
- purls: []
- size: 553624
- timestamp: 1745268405713
-- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-37_h47877c9_openblas.conda
- build_number: 37
- sha256: e37125ad315464a927578bf6ba3455a30a7f319d5e60e54ccc860ddd218d516d
- md5: 8305e6a5ed432ad3e5a609e8024dbc17
- depends:
- - libblas 3.9.0 37_h4a7cf45_openblas
- constrains:
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
- - libcblas 3.9.0 37*_openblas
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 17470
- timestamp: 1760212744703
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-37_h88aeb00_openblas.conda
- build_number: 37
- sha256: 6830a8675454e2e27f90754a632b69f97634276a94986ef777a0c2e31626af0d
- md5: 8cda18154b6b1698b9bc5edb95f42339
- depends:
- - libblas 3.9.0 37_haddc8a3_openblas
- constrains:
- - libcblas 3.9.0 37*_openblas
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
+ - gmp >=6.3.0,<7.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 345517
+ timestamp: 1725746730583
+- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
+ sha256: e1698675ec83a2139c0b02165f47eaf0701bcab043443d9008fc0f8867b07798
+ md5: 78b827d2852c67c68cd5b2c55f31e376
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17503
- timestamp: 1760212922775
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblapack-3.9.0-37_h5422efa_openblas.conda
- build_number: 37
- sha256: 0c65230fd5dbe992143abd9c01d286e04a5b94086f618788000ab6b320a0837e
- md5: 0e35d7f19a742b7ce6c9aa3506c1810b
+ size: 6571
+ timestamp: 1727683130230
+- conda: https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda
+ sha256: 7d7aa3fcd6f42b76bd711182f3776a02bef09a68c5f117d66b712a6d81368692
+ md5: 3585aa87c43ab15b167b574cd73b057b
depends:
- - libblas 3.9.0 37_h75dcd6d_openblas
- constrains:
- - libcblas 3.9.0 37*_openblas
- - blas 2.137 openblas
- - liblapacke 3.9.0 37*_openblas
+ - python >=3.9
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 17541
- timestamp: 1760212833669
-- conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-37_h859234e_openblas.conda
- build_number: 37
- sha256: 80de4cf2bd27475ec36e5dc15fb408343bcf4833b6e4c74a1d48d87a56118fbc
- md5: abf96060ac52487961009e1fafec3e96
+ size: 439705
+ timestamp: 1733302781386
+- conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.2-py314h9891dd4_1.conda
+ sha256: d41c2734d314303e329680aeef282766fe399a0ce63297a68a2f8f9b43b1b68a
+ md5: c6752022dcdbf4b9ef94163de1ab7f03
depends:
- - libblas 3.9.0 37_he492b99_openblas
- constrains:
- - libcblas 3.9.0 37*_openblas
- - liblapacke 3.9.0 37*_openblas
- - blas 2.137 openblas
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 17704
- timestamp: 1760213576216
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-37_hd9741b5_openblas.conda
- build_number: 37
- sha256: 61a3f8928431f74c359669ea68b5abedbbd46efb06f15de1e5c7e5d40f545263
- md5: 53335fc42466f597d0bc6d66a9ed4468
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 103380
+ timestamp: 1762504077009
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.1.2-py314hd7d8586_1.conda
+ sha256: 124a778a7065d75d9d36d80563e75d3a13455b160a761cd38a5ce8f50f87705c
+ md5: e93c66201de71acb9e99d94f84f897b1
depends:
- - libblas 3.9.0 37_h51639a9_openblas
- constrains:
- - liblapacke 3.9.0 37*_openblas
- - blas 2.137 openblas
- - libcblas 3.9.0 37*_openblas
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 17633
- timestamp: 1760213604248
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm21-21.1.4-h56e7563_0.conda
- sha256: 9e01c5a864897c8f5459371ab3715190d2fa3a9cacd27b5c922d2bb616d1706c
- md5: c4d09f117ffafaaa64c950853daa87ee
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 100176
+ timestamp: 1762504193305
+- conda: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.2-py314h00ed6fe_1.conda
+ sha256: 1e82a903c5b5fb1555851ff1ef9068a538f4d8652eee2c31935d2d6d326a99f7
+ md5: 977962f6bb6f922ee0caabcb5a1b1d8c
depends:
- __osx >=10.13
- libcxx >=19
- - libxml2
- - libxml2-16 >=2.14.6
- - libzlib >=1.3.1,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: Apache-2.0 WITH LLVM-exception
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
license_family: Apache
- size: 31429419
- timestamp: 1761079041756
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm21-21.1.4-h8e0c9ce_0.conda
- sha256: 269fd7005a30958fccdbec91cb411e8277eb431af7b92b9005e08d28cedbd186
- md5: 8fd7e7215ff8e4f1900a8f07e08469b9
+ size: 92312
+ timestamp: 1762504434513
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.2-py314h784bc60_1.conda
+ sha256: 9dc4ebe88064cf96bb97a4de83be10fbc52a24d2ff48a4561fb0fed337b526f0
+ md5: 305227e4de261896033ad8081e8b52ae
depends:
- __osx >=11.0
- libcxx >=19
- - libxml2
- - libxml2-16 >=2.14.6
- - libzlib >=1.3.1,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: Apache-2.0 WITH LLVM-exception
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
license_family: Apache
- size: 29394614
- timestamp: 1761078970340
-- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
- sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
- md5: 1a580f7796c7bf6393fddb8bbbde58dc
- depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- constrains:
- - xz 5.8.1.*
- license: 0BSD
- purls: []
- size: 112894
- timestamp: 1749230047870
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda
- sha256: 498ea4b29155df69d7f20990a7028d75d91dbea24d04b2eb8a3d6ef328806849
- md5: 7d362346a479256857ab338588190da0
+ size: 92381
+ timestamp: 1762504601981
+- conda: https://conda.anaconda.org/conda-forge/noarch/msutils-0.1.0-pyhcf101f3_1.conda
+ sha256: bdc85dddf8788c440df89960abf44184bd07ad5b04fd5aec7ca09ac0402704b2
+ md5: 8614c2952acfda097185c6797064ce59
depends:
- - libgcc >=13
- constrains:
- - xz 5.8.1.*
- license: 0BSD
- purls: []
- size: 125103
- timestamp: 1749232230009
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/liblzma-5.8.1-h190368a_2.conda
- sha256: fe942fa6ba265000e6ea24c5077afcbea73fce7334a7cc9c1a3f414526e94883
- md5: 929da8524e7fad20d7ea269003bd7e50
+ - python >=3.10
+ - numpy
+ - h5py
+ - scipy
+ - matplotlib-base
+ - scikit-image
+ - lxml
+ - plotly
+ - sympy
+ - ipykernel
+ - quaternion
+ - beartype
+ - pyvista
+ - meshio
+ - nbformat
+ - pyrecest
+ - python
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 58587
+ timestamp: 1761834821388
+- conda: https://conda.anaconda.org/conda-forge/noarch/multidict-6.6.3-pyh62beb40_0.conda
+ sha256: c4257649d1be3d19a97213457032073737cd3179bd0ed3bd2b9885955d11f6b8
+ md5: 36b9579bd0896b224df0424e46efc1b5
depends:
- - libgcc >=13
- constrains:
- - xz 5.8.1.*
- license: 0BSD
- purls: []
- size: 140130
- timestamp: 1749232375654
-- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.1-hd471939_2.conda
- sha256: 7e22fd1bdb8bf4c2be93de2d4e718db5c548aa082af47a7430eb23192de6bb36
- md5: 8468beea04b9065b9807fc8b9cdc5894
+ - python >=3.9
+ - typing-extensions >=4.1.0
+ track_features:
+ - multidict_no_compile
+ license: Apache-2.0
+ license_family: APACHE
+ size: 37036
+ timestamp: 1751310675422
+- conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
+ md5: 37293a85a0f4f77bbd9cf7aaefc62609
depends:
- - __osx >=10.13
- constrains:
- - xz 5.8.1.*
- license: 0BSD
- purls: []
- size: 104826
- timestamp: 1749230155443
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
- sha256: 0cb92a9e026e7bd4842f410a5c5c665c89b2eb97794ffddba519a626b8ce7285
- md5: d6df911d4564d77c4374b02552cb17d1
+ - python >=3.9
+ license: Apache-2.0
+ license_family: Apache
+ size: 15851
+ timestamp: 1749895533014
+- conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.11.0-pyhcf101f3_0.conda
+ sha256: 08956ad8e26aa96301a242a46ef768a83de73ce764ee0afb8264aab1210fa2b1
+ md5: 5bf50f2d7bc9ee87a95ed3d1941664eb
depends:
- - __osx >=11.0
- constrains:
- - xz 5.8.1.*
- license: 0BSD
- purls: []
- size: 92286
- timestamp: 1749230283517
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
- sha256: 3aa92d4074d4063f2a162cd8ecb45dccac93e543e565c01a787e16a43501f7ee
- md5: c7e925f37e3b40d893459e625f6a53f1
+ - python >=3.10
+ - python
+ license: MIT
+ size: 266834
+ timestamp: 1762797637499
+- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
+ sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838
+ md5: bbe1963f1e47f594070ffe87cdf612ea
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- license: BSD-2-Clause
+ - jsonschema >=2.6
+ - jupyter_core >=4.12,!=5.0.*
+ - python >=3.9
+ - python-fastjsonschema >=2.15
+ - traitlets >=5.1
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 91183
- timestamp: 1748393666725
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmpdec-4.0.0-h86ecc28_0.conda
- sha256: ef8697f934c80b347bf9d7ed45650928079e303bad01bd064995b0e3166d6e7a
- md5: 78cfed3f76d6f3f279736789d319af76
+ size: 100945
+ timestamp: 1733402844974
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
+ md5: 47e340acb35de30501a76c7c799c41d7
depends:
+ - __glibc >=2.17,<3.0.a0
- libgcc >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 114064
- timestamp: 1748393729243
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libmpdec-4.0.0-h190368a_0.conda
- sha256: 2ec16e4f8b345193cc25e5bb3d2da5aec5aa19e1b828bca12ce9313bb838645f
- md5: 6b238bc5a287cba9cc73f10e49d3478b
+ license: X11 AND BSD-3-Clause
+ size: 891641
+ timestamp: 1738195959188
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda
+ sha256: 91cfb655a68b0353b2833521dc919188db3d8a7f4c64bea2c6a7557b24747468
+ md5: 182afabe009dc78d8b73100255ee6868
depends:
- libgcc >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 125783
- timestamp: 1748393720117
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-h6e16a3a_0.conda
- sha256: 98299c73c7a93cd4f5ff8bb7f43cd80389f08b5a27a296d806bdef7841cc9b9e
- md5: 18b81186a6adb43f000ad19ed7b70381
+ license: X11 AND BSD-3-Clause
+ size: 926034
+ timestamp: 1738196018799
+- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda
+ sha256: ea4a5d27ded18443749aefa49dc79f6356da8506d508b5296f60b8d51e0c4bd9
+ md5: ced34dd9929f491ca6dab6a2927aff25
depends:
- __osx >=10.13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 77667
- timestamp: 1748393757154
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
- sha256: 0a1875fc1642324ebd6c4ac864604f3f18f57fbcf558a8264f6ced028a3c75b2
- md5: 85ccccb47823dd9f7a99d2c7f530342f
+ license: X11 AND BSD-3-Clause
+ size: 822259
+ timestamp: 1738196181298
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
+ sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733
+ md5: 068d497125e4bf8a66bf707254fff5ae
depends:
- __osx >=11.0
+ license: X11 AND BSD-3-Clause
+ size: 797030
+ timestamp: 1738196177597
+- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
+ sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0
+ md5: 598fd7d4d0de2455fb74f56063969a97
+ depends:
+ - python >=3.9
license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 71829
- timestamp: 1748393749336
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.3-nompi_h11f7409_103.conda
- sha256: e9a8668212719a91a6b0348db05188dfc59de5a21888db13ff8510918a67b258
- md5: 3ccff1066c05a1e6c221356eecc40581
+ size: 11543
+ timestamp: 1733325673691
+- conda: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.7.3-nompi_py314hed328fd_100.conda
+ sha256: 81efd0668389cdc7c5bb758baf71f369d81daeb9fad2ae3370b73beb8d535f22
+ md5: d5cebea694ca987a64a93464ed7a844e
depends:
- __glibc >=2.17,<3.0.a0
- - attr >=2.5.2,<2.6.0a0
- - blosc >=1.21.6,<2.0a0
- - bzip2 >=1.0.8,<2.0a0
- - hdf4 >=4.2.15,<4.2.16.0a0
- - hdf5 >=1.14.6,<1.14.7.0a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libgcc >=14
- - libstdcxx >=14
- - libxml2
- - libxml2-16 >=2.14.6
- - libzip >=1.11.2,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
- - zlib
- - zstd >=1.5.7,<1.6.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 871447
- timestamp: 1757977084313
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.3-nompi_haeac333_103.conda
- sha256: 34fd25134e84d33880cab2ec729ee4d4b9596fd1640baf257088688c2a6164f9
- md5: 65cbd643e5e5c6f23566a0b9bef9333f
- depends:
- - attr >=2.5.1,<2.6.0a0
- - blosc >=1.21.6,<2.0a0
- - bzip2 >=1.0.8,<2.0a0
- - hdf4 >=4.2.15,<4.2.16.0a0
- - hdf5 >=1.14.6,<1.14.7.0a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libgcc >=14
- - libstdcxx >=14
- - libxml2
- - libxml2-16 >=2.14.6
- - libzip >=1.11.2,<2.0a0
+ - certifi
+ - cftime
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=14
+ - libnetcdf >=4.9.3,<4.9.4.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
- - zlib
- - zstd >=1.5.7,<1.6.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- purls: []
- size: 894959
- timestamp: 1757977882781
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnetcdf-4.9.3-nompi_h73fc212_103.conda
- sha256: 062239ed6e1fdee5965b72914099afc0e43725e90d68957aa274cc66c807aead
- md5: 75ccc4168b4ee90be74cc6f67328b1e5
+ size: 1119160
+ timestamp: 1760540716792
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/netcdf4-1.7.3-nompi_py314h35dd797_100.conda
+ sha256: ee1f42606827365f4eaa11488f4e126f4920168fc3fba96a5c475396aef22510
+ md5: c592ec3f8209e621004928b344c1b02b
depends:
- - attr >=2.5.2,<2.6.0a0
- - blosc >=1.21.6,<2.0a0
- - bzip2 >=1.0.8,<2.0a0
- - hdf4 >=4.2.15,<4.2.16.0a0
+ - certifi
+ - cftime
- hdf5 >=1.14.6,<1.14.7.0a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libstdcxx >=14
- - libxml2
- - libxml2-16 >=2.14.6
- - libzip >=1.11.2,<2.0a0
+ - libnetcdf >=4.9.3,<4.9.4.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
- - zlib
- - zstd >=1.5.7,<1.6.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- purls: []
- size: 953141
- timestamp: 1757977964497
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.3-nompi_habf9e57_103.conda
- sha256: 6e8bd953ce27e10d0c029badbe3a60510f6724b59ed63d79dd8fdd1a795719ea
- md5: 0c48ab0a8d7c3af9f592d33c3d99f7d6
+ size: 1077451
+ timestamp: 1760541927381
+- conda: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.7.3-nompi_py314hf60e252_100.conda
+ sha256: e7b462ccdb9085d5d864eee2f4c4312dcb968d18de7a358da7421bd060e60d7d
+ md5: cb8267fd6b2719b8ac44fd810acbcc1c
depends:
- __osx >=10.13
- - blosc >=1.21.6,<2.0a0
- - bzip2 >=1.0.8,<2.0a0
- - hdf4 >=4.2.15,<4.2.16.0a0
+ - certifi
+ - cftime
- hdf5 >=1.14.6,<1.14.7.0a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libcxx >=19
- - libxml2
- - libxml2-16 >=2.14.6
- - libzip >=1.11.2,<2.0a0
+ - libnetcdf >=4.9.3,<4.9.4.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
- - zlib
- - zstd >=1.5.7,<1.6.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- purls: []
- size: 728471
- timestamp: 1757977549393
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.3-nompi_h80c4520_103.conda
- sha256: 60b5eff8d2347b20d7c435ba9b8e724bafb3ea9cc21da99b4339c6458dc48328
- md5: 926f5ea75a8e4ad5e8c026c07eab75ba
+ size: 1019213
+ timestamp: 1760540858549
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf4-1.7.3-nompi_py314ha229517_100.conda
+ sha256: feaf70a8a04a77898b6c00f494d2ea1a1a1a5f18b09cd337890ed0c023eb3aa9
+ md5: c2e349b932ebd08123faef6e9ce2f2d7
depends:
- __osx >=11.0
- - blosc >=1.21.6,<2.0a0
- - bzip2 >=1.0.8,<2.0a0
- - hdf4 >=4.2.15,<4.2.16.0a0
+ - certifi
+ - cftime
- hdf5 >=1.14.6,<1.14.7.0a0
- - libaec >=1.1.4,<2.0a0
- - libcurl >=8.14.1,<9.0a0
- - libcxx >=19
- - libxml2
- - libxml2-16 >=2.14.6
- - libzip >=1.11.2,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
- - zlib
- - zstd >=1.5.7,<1.6.0a0
- license: MIT
- license_family: MIT
- purls: []
- size: 685237
- timestamp: 1757977534772
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
- sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690
- md5: b499ce4b026493a13774bcf0f4c33849
- depends:
- - __glibc >=2.17,<3.0.a0
- - c-ares >=1.34.5,<2.0a0
- - libev >=4.33,<4.34.0a0
- - libev >=4.33,<5.0a0
- - libgcc >=14
- - libstdcxx >=14
+ - libnetcdf >=4.9.3,<4.9.4.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- purls: []
- size: 666600
- timestamp: 1756834976695
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.67.0-ha888d0e_0.conda
- sha256: b03f406fd5c3f865a5e08c89b625245a9c4e026438fd1a445e45e6a0d69c2749
- md5: 981082c1cc262f514a5a2cf37cab9b81
+ size: 1007976
+ timestamp: 1760542005639
+- conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda
+ sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128
+ md5: 16bff3d37a4f99e3aa089c36c2b8d650
depends:
- - c-ares >=1.34.5,<2.0a0
- - libev >=4.33,<4.34.0a0
- - libev >=4.33,<5.0a0
- - libgcc >=14
- - libstdcxx >=14
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
+ - python >=3.11
+ - python
+ constrains:
+ - numpy >=1.25
+ - scipy >=1.11.2
+ - matplotlib >=3.8
+ - pandas >=2.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1564462
+ timestamp: 1749078300258
+- conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
+ sha256: fd2cbd8dfc006c72f45843672664a8e4b99b2f8137654eaae8c3d46dca776f63
+ md5: 16c2a0e9c4a166e53632cfca4f68d020
+ constrains:
+ - nlohmann_json-abi ==3.12.0
license: MIT
license_family: MIT
- purls: []
- size: 728661
- timestamp: 1756835019535
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnghttp2-1.67.0-he618a7b_0.conda
- sha256: 91bbe93f5e341ec3ecc0fb2a1e23e2922e2db0998141ecc7900290cfb9c70ca4
- md5: 359ab0c5cc24e16863afed7c0e3cfaaa
- depends:
- - c-ares >=1.34.5,<2.0a0
- - libev >=4.33,<4.34.0a0
- - libev >=4.33,<5.0a0
- - libgcc >=14
- - libstdcxx >=14
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
+ size: 136216
+ timestamp: 1758194284857
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h7ac5ae9_1.conda
+ sha256: 03b4ffbcd3c20276f6fd9743e2d7fc8c4bed2006ac4481d90ee8f2a5d74acd5d
+ md5: 6cbb2594cea5f2cc2907170655852ba9
+ constrains:
+ - nlohmann_json-abi ==3.12.0
license: MIT
license_family: MIT
- purls: []
- size: 769318
- timestamp: 1756835031552
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.67.0-h3338091_0.conda
- sha256: c48d7e1cc927aef83ff9c48ae34dd1d7495c6ccc1edc4a3a6ba6aff1624be9ac
- md5: e7630cef881b1174d40f3e69a883e55f
- depends:
- - __osx >=10.13
- - c-ares >=1.34.5,<2.0a0
- - libcxx >=19
- - libev >=4.33,<4.34.0a0
- - libev >=4.33,<5.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
+ size: 136931
+ timestamp: 1758194316834
+- conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.12.0-h53ec75d_1.conda
+ sha256: 186edb5fe84bddf12b5593377a527542f6ba42486ca5f49cd9dfeda378fb0fbe
+ md5: 5e9bee5fa11d91e1621e477c3cb9b9ba
+ constrains:
+ - nlohmann_json-abi ==3.12.0
license: MIT
license_family: MIT
- purls: []
- size: 605680
- timestamp: 1756835898134
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.67.0-hc438710_0.conda
- sha256: a07cb53b5ffa2d5a18afc6fd5a526a5a53dd9523fbc022148bd2f9395697c46d
- md5: a4b4dd73c67df470d091312ab87bf6ae
- depends:
- - __osx >=11.0
- - c-ares >=1.34.5,<2.0a0
- - libcxx >=19
- - libev >=4.33,<4.34.0a0
- - libev >=4.33,<5.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.2,<4.0a0
+ size: 136667
+ timestamp: 1758194361656
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.12.0-h248ca61_1.conda
+ sha256: f6aa432b073778c3970d3115d291267f32ae85adfa99d80ff1abdf0b806aa249
+ md5: 3ba9d0c21af2150cb92b2ab8bdad3090
+ constrains:
+ - nlohmann_json-abi ==3.12.0
license: MIT
license_family: MIT
- purls: []
- size: 575454
- timestamp: 1756835746393
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.11.0-hb9d3cd8_0.conda
- sha256: ba7c5d294e3d80f08ac5a39564217702d1a752e352e486210faff794ac5001b4
- md5: db63358239cbe1ff86242406d440e44a
- depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- license: LGPL-2.1-or-later
- license_family: LGPL
- purls: []
- size: 741323
- timestamp: 1731846827427
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnl-3.11.0-h86ecc28_0.conda
- sha256: 2e603bf640738511faf80de284daa031f0e67de66b77bed7d0da1045ef062abf
- md5: bb24d3dd7d028b70f0bb5f6d6e1329c0
- depends:
- - libgcc >=13
- license: LGPL-2.1-or-later
- license_family: LGPL
- purls: []
- size: 768716
- timestamp: 1731846931826
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libnl-3.11.0-h190368a_0.conda
- sha256: afbcd4dfa2a72eaadccf5ec5718ed7e0f88c34bef1d77e55e7d79e64d6f3a4db
- md5: ca6c033a8b8a62b483000cf695bdfa00
- depends:
- - libgcc >=13
- license: LGPL-2.1-or-later
- license_family: LGPL
- purls: []
- size: 842294
- timestamp: 1731847034137
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
- sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0
- md5: dfc5aae7b043d9f56ba99514d5e60625
+ size: 136912
+ timestamp: 1758194464430
+- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
+ sha256: 3636eec0e60466a00069b47ce94b6d88b01419b6577d8e393da44bb5bc8d3468
+ md5: 7ba3f09fceae6a120d664217e58fe686
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- constrains:
- - openblas >=0.3.30,<0.3.31.0a0
+ - python >=3.9
+ - setuptools
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 5938936
- timestamp: 1755474342204
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_2.conda
- sha256: 423cc9181b1518db5eb460d3055ac0ff5eb6d35f4f3d47688f914e88653230b3
- md5: e0aa272c985b320f56dd38c31eefde0e
+ size: 34574
+ timestamp: 1734112236147
+- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.3.4-py314h2b28147_0.conda
+ sha256: c440f429b2e217cb3afbda92eb65a8a768aaf1be90657a133cf02871caa89fc4
+ md5: 1a829816158b0129acfe809f2971c14e
depends:
+ - python
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libblas >=3.9.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - python_abi 3.14.* *_cp314
+ - libcblas >=3.9.0,<4.0a0
constrains:
- - openblas >=0.3.30,<0.3.31.0a0
+ - numpy-base <0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 4961416
- timestamp: 1755472037732
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libopenblas-0.3.30-pthreads_h8ac31f8_2.conda
- sha256: eb6057bdc0e7c0c7887de1acabee3b9538c92d3214bd6129477b8a6f3618b7af
- md5: 8a37195f37b916c66a6b9f498190aaa5
+ size: 8952104
+ timestamp: 1761162099395
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-2.3.4-py314haac167e_0.conda
+ sha256: a88d2da6f4aeffc9755c4948fc107516a20d7a1acfc4f115400e392a6e5f9ad7
+ md5: b032b59262e3ee3cc8452fcb36ec26cb
depends:
+ - python
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python 3.14.* *_cp314
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - python_abi 3.14.* *_cp314
+ - liblapack >=3.9.0,<4.0a0
constrains:
- - openblas >=0.3.30,<0.3.31.0a0
+ - numpy-base <0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 4899716
- timestamp: 1755471615030
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_h6006d49_2.conda
- sha256: 49b2938be415a210e2a3ca56666be81eae6533dc3692674ee549836aa124a285
- md5: 9b66105b30ae81dbdd37111e9a5784f1
+ size: 7782775
+ timestamp: 1761162096606
+- conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.3.4-py314hf08249b_0.conda
+ sha256: 6b9c236e59a4494b290807c17f0f631d8836cb7c1a8c5ddda9c924cd8d13e9e7
+ md5: 997a0a22d754b95696dfdb055e1075ba
depends:
+ - python
+ - libcxx >=19
- __osx >=10.13
- - libgfortran
- - libgfortran5 >=14.3.0
- - llvm-openmp >=19.1.7
+ - liblapack >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libblas >=3.9.0,<4.0a0
+ - python_abi 3.14.* *_cp314
constrains:
- - openblas >=0.3.30,<0.3.31.0a0
+ - numpy-base <0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 6267056
- timestamp: 1760596221719
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_ha158390_2.conda
- sha256: ddd201896c3f2d9d1911e8fb1aa34bf876795376f0fa5779c79b8998692f6800
- md5: e9f522513b5bbc6381f124f46e78fe36
+ size: 8098251
+ timestamp: 1761161570315
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.3.4-py314h5b5928d_0.conda
+ sha256: 9e28281e67a94e4efb25617247cfcc171b30277a3407cd75c8f64a18275eed60
+ md5: b61ad142f0d5978e98a4bb67cd5a4e22
depends:
+ - python
+ - python 3.14.* *_cp314
+ - libcxx >=19
- __osx >=11.0
- - libgfortran
- - libgfortran5 >=14.3.0
- - llvm-openmp >=19.1.7
+ - liblapack >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - python_abi 3.14.* *_cp314
+ - libblas >=3.9.0,<4.0a0
constrains:
- - openblas >=0.3.30,<0.3.31.0a0
+ - numpy-base <0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 4284271
- timestamp: 1760594266347
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libpmix-5.0.8-h4bd6b51_2.conda
- sha256: f36cbd91007f793654a4b7190622dbfba9e08f563faf1f6923867b4cf8e9cf97
- md5: a79391da87ae92920508c25b6c1a7e1c
+ size: 6818770
+ timestamp: 1761161593428
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
+ sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d
+ md5: 11b3379b191f63139e29c0d19dee24cd
depends:
- __glibc >=2.17,<3.0.a0
- - libevent >=2.1.12,<2.1.13.0a0
- - libgcc >=14
- - libhwloc >=2.12.1,<2.12.2.0a0
- - libzlib >=1.3.1,<2.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 730628
- timestamp: 1754762323076
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpmix-5.0.8-h8c64fbe_2.conda
- sha256: 40398382a7cf28ff2312dfdb0579d06127fe08a540cdc00912c23187a73d0e4f
- md5: 01814ffe926c90cd0cb7d78038bae87f
- depends:
- - libevent >=2.1.12,<2.1.13.0a0
- libgcc >=14
- - libhwloc >=2.12.1,<2.12.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
- libzlib >=1.3.1,<2.0a0
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 729241
- timestamp: 1754762485998
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libpmix-5.0.8-h8498fbb_2.conda
- sha256: 1fd5ae6441aa3da930f3e2c6fd33828db21802c817cc54b01ec789bb9c8e7428
- md5: 078415a9ed1e824afed5ccaca7f8ea93
+ size: 355400
+ timestamp: 1758489294972
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.4-h5da879a_0.conda
+ sha256: bd1bc8bdde5e6c5cbac42d462b939694e40b59be6d0698f668515908640c77b8
+ md5: cea962410e327262346d48d01f05936c
depends:
- - libevent >=2.1.12,<2.1.13.0a0
- libgcc >=14
- - libhwloc >=2.12.1,<2.12.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
- libzlib >=1.3.1,<2.0a0
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 751568
- timestamp: 1754762488091
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libpmix-5.0.8-h7a6afba_2.conda
- sha256: 0e13c10bebd07679a3b256c6877954e6d02874ed6523406309cd55cc2f29abc7
- md5: 9bdb741c8e2117a664cee070359df68f
+ size: 392636
+ timestamp: 1758489353577
+- conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.4-h87e8dc5_0.conda
+ sha256: fdf4708a4e45b5fd9868646dd0c0a78429f4c0b8be490196c975e06403a841d0
+ md5: a67d3517ebbf615b91ef9fdc99934e0c
depends:
- __osx >=10.13
- - libevent >=2.1.12,<2.1.13.0a0
- - libhwloc >=2.12.1,<2.12.2.0a0
+ - libcxx >=19
+ - libpng >=1.6.50,<1.7.0a0
+ - libtiff >=4.7.1,<4.8.0a0
- libzlib >=1.3.1,<2.0a0
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 589782
- timestamp: 1754762625434
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpmix-5.0.8-h3e7ebac_2.conda
- sha256: a6c5b390f6749dc4cd8019d11110a89314f19a5c75540985ea981d3f5fb85965
- md5: e2f08689293b74bc3b8be110b207e17b
+ size: 334875
+ timestamp: 1758489493148
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.4-hbfb3c88_0.conda
+ sha256: dd73e8f1da7dd6a5494c5586b835cbe2ec68bace55610b1c4bf927400fe9c0d7
+ md5: 6bf3d24692c157a41c01ce0bd17daeea
depends:
- __osx >=11.0
- - libevent >=2.1.12,<2.1.13.0a0
- - libhwloc >=2.12.1,<2.12.2.0a0
+ - libcxx >=19
+ - libpng >=1.6.50,<1.7.0a0
+ - libtiff >=4.7.1,<4.8.0a0
- libzlib >=1.3.1,<2.0a0
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 531117
- timestamp: 1754762553586
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-15.2.0-hb13aed2_7.conda
- sha256: 4d15a66e136fba55bc0e83583de603f46e972f3486e2689628dfd9729a5c3d78
- md5: 4ea6053660330c1bbd4635b945f7626d
+ size: 319967
+ timestamp: 1758489514651
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ sha256: cb0b07db15e303e6f0a19646807715d28f1264c6350309a559702f4f34f37892
+ md5: 2e5bf4f1da39c0b32778561c3c4e5878
depends:
- __glibc >=2.17,<3.0.a0
- - libgcc >=15.2.0
- - libstdcxx >=15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 5133768
- timestamp: 1759968130105
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-15.2.0-h8b511b7_7.conda
- sha256: b30b7f48e5045e03b0936480953a96d85724ad0e378c02aff1f62fc7199223c6
- md5: 129b1d275afc8ef30140e3a76108a40e
- depends:
- - libgcc >=15.2.0
- - libstdcxx >=15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 5171245
- timestamp: 1759967483213
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsanitizer-15.2.0-h1dd130c_7.conda
- sha256: 6e46cd724de3ecf3f911742ed27ffe069506d3e03ce90af310c3168c37cba1ad
- md5: f6aa52a9802ec1f1c08b7e55a8b7c9d9
- depends:
- - libgcc >=15.2.0
- - libstdcxx >=15.2.0
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 4421978
- timestamp: 1759971103755
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161
- md5: a587892d3c13b6621a6091be690dbca2
- depends:
- - libgcc-ng >=12
- license: ISC
- purls: []
- size: 205978
- timestamp: 1716828628198
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- sha256: 448df5ea3c5cf1af785aad46858d7a5be0522f4234a4dc9bb764f4d11ff3b981
- md5: 2e4a8f23bebdcb85ca8e5a0fbe75666a
- depends:
- - libgcc-ng >=12
- license: ISC
- purls: []
- size: 177394
- timestamp: 1716828514515
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsodium-1.0.20-h1f2b957_0.conda
- sha256: f535e7cba51ecfef8108bb0d58ef675f7c4b4ce5b303198f9e6a3dc632e527c0
- md5: 4e130aff990531e0573a8e67e938360f
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.5.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 780253
+ timestamp: 1748010165522
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openldap-2.6.10-h30c48ee_0.conda
+ sha256: 13c7ba058b6e151468111235218158083b9e867738e66a5afb96096c5c123348
+ md5: 48f31a61be512ec1929f4b4a9cedf4bd
depends:
- - libgcc-ng >=12
- license: ISC
- purls: []
- size: 193151
- timestamp: 1716831175827
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda
- sha256: d3975cfe60e81072666da8c76b993af018cf2e73fe55acba2b5ba0928efaccf5
- md5: 6af4b059e26492da6013e79cbcb4d069
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.5.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 902902
+ timestamp: 1748010210718
+- conda: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.10-hd8a590d_0.conda
+ sha256: 70b8c1ffc06629c3ef824d337ab75df28c50a05293a4c544b03ff41d82c37c73
+ md5: 60bd9b6c1e5208ff2f4a39ab3eabdee8
depends:
- __osx >=10.13
- license: ISC
- purls: []
- size: 210249
- timestamp: 1716828641383
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- sha256: fade8223e1e1004367d7101dd17261003b60aa576df6d7802191f8972f7470b1
- md5: a7ce36e284c5faaf93c220dfc39e3abd
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=18
+ - openssl >=3.5.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 777643
+ timestamp: 1748010635431
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda
+ sha256: 08d859836b81296c16f74336c3a9a455b23d57ce1d7c2b0b3e1b7a07f984c677
+ md5: 6fd5d73c63b5d37d9196efb4f044af76
depends:
- __osx >=11.0
- license: ISC
- purls: []
- size: 164972
- timestamp: 1716828607917
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
- sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da
- md5: 0b367fad34931cb79e0d6b7e5c06bb1c
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=18
+ - openssl >=3.5.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 843597
+ timestamp: 1748010484231
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-5.0.8-h2fe1745_108.conda
+ sha256: accf4b2776cffb2ce0fc05ac1a32e1a77bf058e4e76dd8e1684ca5fd440dc574
+ md5: 9bebb2e8ed891b184fdd2eec2d36709e
depends:
+ - mpi 1.0.* openmpi
- __glibc >=2.17,<3.0.a0
+ - libgfortran5 >=14.3.0
+ - libgfortran
- libgcc >=14
- - libzlib >=1.3.1,<2.0a0
- license: blessing
- purls: []
- size: 932581
- timestamp: 1753948484112
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.50.4-h022381a_0.conda
- sha256: a361dc926f232e7f3aa664dbd821f12817601c07d2c8751a0668c2fb07d0e202
- md5: 0ad1b73a3df7e3376c14efe6dabe6987
- depends:
+ - libstdcxx >=14
- libgcc >=14
+ - libfabric
+ - libfabric1 >=1.14.0
+ - ucc >=1.5.1,<2.0a0
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libnl >=3.11.0,<4.0a0
- libzlib >=1.3.1,<2.0a0
- license: blessing
- purls: []
- size: 931661
- timestamp: 1753948557036
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsqlite-3.50.4-h8cc42db_0.conda
- sha256: aa02b8bb23ede43499a6310aae551b2623512e153e2c30222407b23bb8f6fdb1
- md5: 88f35fa529b72ccf6d5cc959a1ac5ae0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libpmix >=5.0.8,<6.0a0
+ - ucx >=1.19.0,<1.20.0a0
+ constrains:
+ - __cuda >=12.0
+ - cuda-version >=12.0
+ - libprrte ==0.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3919723
+ timestamp: 1758650927798
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-5.0.8-h188d324_108.conda
+ sha256: 8a0c33c06f89341723e116fc32c9054e7679f58061760558bd49e21462809f87
+ md5: b14270b6c9f9a303ae631c7548e73f64
depends:
+ - mpi 1.0.* openmpi
+ - libstdcxx >=14
- libgcc >=14
+ - libgfortran5 >=14.3.0
+ - libgfortran
+ - libgcc >=14
+ - ucc >=1.5.1,<2.0a0
+ - ucx >=1.19.0,<1.20.0a0
+ - libevent >=2.1.12,<2.1.13.0a0
- libzlib >=1.3.1,<2.0a0
- license: blessing
- purls: []
- size: 1048398
- timestamp: 1753948514081
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.50.4-h39a8b3b_0.conda
- sha256: 466366b094c3eb4b1d77320530cbf5400e7a10ab33e4824c200147488eebf7a6
- md5: 156bfb239b6a67ab4a01110e6718cbc4
+ - libnl >=3.11.0,<4.0a0
+ - libpmix >=5.0.8,<6.0a0
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libfabric
+ - libfabric1 >=1.14.0
+ constrains:
+ - __cuda >=12.0
+ - cuda-version >=12.0
+ - libprrte ==0.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4136904
+ timestamp: 1758650937372
+- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-5.0.8-h0c582a8_108.conda
+ sha256: 88e5e4265aa9a83cf47cb80f609de7414d3755cc2f75b34928fa2a3eaf078697
+ md5: 6844501e4a5a7b6676b42119e700735b
depends:
+ - mpi 1.0.* openmpi
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
- __osx >=10.13
+ - libfabric
+ - libfabric1 >=1.14.0
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libpmix >=5.0.8,<6.0a0
+ - libevent >=2.1.12,<2.1.13.0a0
- libzlib >=1.3.1,<2.0a0
- license: blessing
- purls: []
- size: 980121
- timestamp: 1753948554003
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda
- sha256: 802ebe62e6bc59fc26b26276b793e0542cfff2d03c086440aeaf72fb8bbcec44
- md5: 1dcb0468f5146e38fae99aef9656034b
+ constrains:
+ - libprrte ==0.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2850818
+ timestamp: 1758651107727
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-5.0.8-h65ea042_108.conda
+ sha256: 43ab65ae9dfacb53d3413d5d6e646eb74cfe2d223fe4f5cea48bd9a06f16fafc
+ md5: 4eb169999f717b59ac53718f7f844d4d
depends:
+ - mpi 1.0.* openmpi
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
- __osx >=11.0
- - icu >=75.1,<76.0a0
- - libzlib >=1.3.1,<2.0a0
- license: blessing
- purls: []
- size: 902645
- timestamp: 1753948599139
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
- sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
- md5: eecce068c7e4eddeb169591baac20ac4
- depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
+ - libhwloc >=2.12.1,<2.12.2.0a0
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.0,<4.0a0
+ - libfabric
+ - libfabric1 >=1.14.0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libpmix >=5.0.8,<6.0a0
+ constrains:
+ - libprrte ==0.0.0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 304790
- timestamp: 1745608545575
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
- sha256: 1e289bcce4ee6a5817a19c66e296f3c644dcfa6e562e5c1cba807270798814e7
- md5: eecc495bcfdd9da8058969656f916cc2
+ size: 2585702
+ timestamp: 1758651049845
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-mpicxx-5.0.8-h62726db_108.conda
+ sha256: 6dbb4313991a680969b646cd9800ee16da888dbbf458423abe7f3f78c1bcd6fe
+ md5: 599131353ff0fad2825aeee1e7c121bf
depends:
- - libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.0,<4.0a0
+ - openmpi ==5.0.8 h2fe1745_108
+ - gxx_linux-64 >=14
+ - __glibc >=2.17,<3.0.a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 311396
- timestamp: 1745609845915
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libssh2-1.11.1-h50e65aa_0.conda
- sha256: f63719113b17f9eb4a9fa561a3671b3234e32e28fdd00ee9d32d16c5f8f30710
- md5: 81f94a4e548e69bb3910d4d9b982462b
+ size: 12776
+ timestamp: 1758650927798
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-mpicxx-5.0.8-hc2320a1_108.conda
+ sha256: efe211c39f509292121bead396e22ae8ca9070e75ae4ed1c8844bed0f4874b59
+ md5: 56e24179db0bb2a4bb9e73a2aea63586
depends:
- - libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.0,<4.0a0
+ - openmpi ==5.0.8 h188d324_108
+ - gxx_linux-aarch64 >=14
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 331459
- timestamp: 1745608520077
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda
- sha256: 00654ba9e5f73aa1f75c1f69db34a19029e970a4aeb0fa8615934d8e9c369c3c
- md5: a6cb15db1c2dc4d3a5f6cf3772e09e81
+ size: 12731
+ timestamp: 1758650937372
+- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-mpicxx-5.0.8-heb29b40_108.conda
+ sha256: 6015a53cc510db3aab070b793286863ad890e89fc98da5ce1a2cf989cdae3ed1
+ md5: 961776eb33a02a3e159c9efe1662b2b5
depends:
+ - openmpi ==5.0.8 h0c582a8_108
+ - clangxx_osx-64 >=19
- __osx >=10.13
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.0,<4.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 284216
- timestamp: 1745608575796
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda
- sha256: 8bfe837221390ffc6f111ecca24fa12d4a6325da0c8d131333d63d6c37f27e0a
- md5: b68e8f66b94b44aaa8de4583d3d4cc40
+ size: 12492
+ timestamp: 1758651107728
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-mpicxx-5.0.8-h8e08746_108.conda
+ sha256: 4a2f70f22f1cd94ee11d2ce8eebdd476d78d64536697334140b8321dd343b88e
+ md5: 8843fe06fe5a5a8257cd0c2f1cc19c0e
depends:
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.5.0,<4.0a0
+ - openmpi ==5.0.8 h65ea042_108
+ - clangxx_osx-arm64 >=19
+ - __osx >=11.0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 279193
- timestamp: 1745608793272
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
- sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3
- md5: 5b767048b1b3ee9a954b06f4084f93dc
+ size: 12481
+ timestamp: 1758651049846
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.0-h26f9b46_0.conda
+ sha256: a47271202f4518a484956968335b2521409c8173e123ab381e775c358c67fe6d
+ md5: 9ee58d5c534af06558933af3c845a780
depends:
- __glibc >=2.17,<3.0.a0
- - libgcc 15.2.0 h767d61c_7
- constrains:
- - libstdcxx-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 3898269
- timestamp: 1759968103436
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-15.2.0-h3f4de04_7.conda
- sha256: 4c6d1a2ae58044112233a57103bbf06000bd4c2aad44a0fd3b464b05fa8df514
- md5: 6a2f0ee17851251a85fbebafbe707d2d
- depends:
- - libgcc 15.2.0 he277a41_7
- constrains:
- - libstdcxx-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 3831785
- timestamp: 1759967470295
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-15.2.0-h262982c_7.conda
- sha256: 9236043ab112252bbb9cefcb564f8584f50908d6cdb44315315bd54d4e2c516f
- md5: d07436f87916518d28e1f3a94f8839ec
- depends:
- - libgcc 15.2.0 h0d7acf9_7
- constrains:
- - libstdcxx-ng ==15.2.0=*_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 4053806
- timestamp: 1759971086532
-- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-h73f6952_107.conda
- sha256: ae5f609b3df4f4c3de81379958898cae2d9fc5d633518747c01d148605525146
- md5: a888a479d58f814ee9355524cc94edf3
- depends:
- - __unix
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 13677243
- timestamp: 1759967967095
-- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-h1ed5458_107.conda
- sha256: d52fdadaf51fabc713bb607d37c4c81ee097b13f44318c72832f7ee2bb2ed25b
- md5: c3244b394665d837dc5d703a09fe8202
- depends:
- - __unix
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 12363653
- timestamp: 1759967400932
-- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-ppc64le-15.2.0-ha42e3bc_107.conda
- sha256: 223c9041bf93e5459f3ffcf0e9a9e1df7344e532dae13814cf771c4ba1fb814c
- md5: 15744bffbfa2cac6e9863d6af17f6ceb
- depends:
- - __unix
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- size: 12801108
- timestamp: 1759971006648
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
- sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f
- md5: f627678cf829bd70bccf141a19c3ad3e
+ - ca-certificates
+ - libgcc >=14
+ license: Apache-2.0
+ license_family: Apache
+ size: 3165399
+ timestamp: 1762839186699
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.6.0-h8e36d6e_0.conda
+ sha256: 8dd3b4c31fe176a3e51c5729b2c7f4c836a2ce3bd5c82082dc2a503ba9ee0af3
+ md5: 7624c6e01aecba942e9115e0f5a2af9d
depends:
- - libstdcxx 15.2.0 h8f9b012_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29343
- timestamp: 1759968157195
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-15.2.0-hf1166c9_7.conda
- sha256: 26fc1bdb39042f27302b363785fea6f6b9607f9c2f5eb949c6ae0bdbb8599574
- md5: 9e5deec886ad32f3c6791b3b75c78681
+ - ca-certificates
+ - libgcc >=14
+ license: Apache-2.0
+ license_family: Apache
+ size: 3705625
+ timestamp: 1762841024958
+- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.0-h230baf5_0.conda
+ sha256: 36fe9fb316be22fcfb46d5fa3e2e85eec5ef84f908b7745f68f768917235b2d5
+ md5: 3f50cdf9a97d0280655758b735781096
depends:
- - libstdcxx 15.2.0 h3f4de04_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29341
- timestamp: 1759967498023
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-15.2.0-hf27a640_7.conda
- sha256: 80b312a3f25a9d322d37036fd0961a812cca548ae3068f4d3d16c3840d12ab13
- md5: 861b44f074fa1a25a400dce196c33563
+ - __osx >=10.13
+ - ca-certificates
+ license: Apache-2.0
+ license_family: Apache
+ size: 2778996
+ timestamp: 1762840724922
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.0-h5503f6c_0.conda
+ sha256: ebe93dafcc09e099782fe3907485d4e1671296bc14f8c383cb6f3dfebb773988
+ md5: b34dc4172653c13dcf453862f251af2b
depends:
- - libstdcxx 15.2.0 h262982c_7
- license: GPL-3.0-only WITH GCC-exception-3.1
- license_family: GPL
- purls: []
- size: 29201
- timestamp: 1759971118756
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.9-h996ca69_0.conda
- sha256: 6b063df2d13dc9cedeae7b1591b1917ced7f4e1b04f7246e66cc7fb0088dea07
- md5: b6d222422c17dc11123e63fae4ad4178
+ - __osx >=11.0
+ - ca-certificates
+ license: Apache-2.0
+ license_family: Apache
+ size: 3108371
+ timestamp: 1762839712322
+- conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.2.1-hd747db4_0.conda
+ sha256: 8d91d6398fc63a94d238e64e4983d38f6f9555460f11bed00abb2da04dbadf7c
+ md5: ddab8b2af55b88d63469c040377bd37e
depends:
- __glibc >=2.17,<3.0.a0
- - libcap >=2.76,<2.77.0a0
- libgcc >=14
- - libgcrypt-lib >=1.11.1,<2.0a0
- - liblzma >=5.8.1,<6.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - tzdata
- zstd >=1.5.7,<1.6.0a0
- license: LGPL-2.1-or-later
- purls: []
- size: 492733
- timestamp: 1757520335407
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.9-hd926fa8_0.conda
- sha256: 98ac09c139bbffbe4f6448924a8f3f1fca16f4ac8816b39d629a22f7fd66ad5f
- md5: 6751bb1ae9b58008862a0c3a1340e17e
+ license: Apache-2.0
+ license_family: Apache
+ size: 1316445
+ timestamp: 1759424644934
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.2.1-h59c2525_0.conda
+ sha256: 7dbd119113964447076e43c24a4ab89b68a8ca8fdb0fa38a015a08494ce3f346
+ md5: 1d54655f990d6bf798c08f14cd06cfd7
depends:
- - libcap >=2.76,<2.77.0a0
- libgcc >=14
- - libgcrypt-lib >=1.11.1,<2.0a0
- - liblzma >=5.8.1,<6.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - tzdata
- zstd >=1.5.7,<1.6.0a0
- license: LGPL-2.1-or-later
- purls: []
- size: 513685
- timestamp: 1757520434211
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libsystemd0-257.7-h8c97658_1.conda
- sha256: 9be879917dbe7e7a59d5dc4f870fd91ad1dba6e940e54ce8f6cb58ce9617f76d
- md5: 9efac30e0b499bbeeb2dd15d535d7b49
+ license: Apache-2.0
+ license_family: Apache
+ size: 1296828
+ timestamp: 1759424730242
+- conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.2.1-hd1b02dc_0.conda
+ sha256: a00d48750d2140ea97d92b32c171480b76b2632dbb9d19d1ae423999efcc825f
+ md5: b4646b6ddcbcb3b10e9879900c66ed48
depends:
- - libcap >=2.76,<2.77.0a0
- - libgcc >=14
- - libgcrypt-lib >=1.11.1,<2.0a0
- - liblzma >=5.8.1,<6.0a0
+ - __osx >=11.0
+ - libcxx >=19
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - tzdata
- zstd >=1.5.7,<1.6.0a0
- license: LGPL-2.1-or-later
- purls: []
- size: 548890
- timestamp: 1757439037460
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.9-h085a93f_0.conda
- sha256: 1c8f0b02c400617a9f2ea8429c604b28e25a10f51b3c8d73ce127b4e7b462297
- md5: 973f365f19c1d702bda523658a77de26
+ license: Apache-2.0
+ license_family: Apache
+ size: 521463
+ timestamp: 1759424838652
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.2.1-h4fd0076_0.conda
+ sha256: f0a31625a647cb8d55a7016950c11f8fabc394df5054d630e9c9b526bf573210
+ md5: b5dea50c77ab3cc18df48bdc9994ac44
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.2,<1.3.0a0
+ - tzdata
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 487298
+ timestamp: 1759424875005
+- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991
+ md5: 58335b26c38bf4a20f399384c33cbcf9
+ depends:
+ - python >=3.8
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ size: 62477
+ timestamp: 1745345660407
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.3-py314ha0b5721_1.conda
+ sha256: 8e4d81448484f3ae2ef54202a49bda0365093ac459045d43f3d151f88cfe4c23
+ md5: 4e72e31689d2141ac77fd6a6dcb740d8
depends:
- __glibc >=2.17,<3.0.a0
- - libcap >=2.76,<2.77.0a0
- libgcc >=14
- license: LGPL-2.1-or-later
- purls: []
- size: 144265
- timestamp: 1757520342166
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-257.9-hf39d17c_0.conda
- sha256: e1f1824646a997bb3c82162291092631c2bccb15e9f07b386bb89434293f531a
- md5: de668d7632a3107a1652ca9f4b9d1118
+ - libstdcxx >=14
+ - numpy >=1.22.4
+ - numpy >=1.23,<3
+ - python >=3.14.0rc3,<3.15.0a0
+ - python-dateutil >=2.8.2
+ - python-tzdata >=2022.7
+ - python_abi 3.14.* *_cp314
+ - pytz >=2020.1
+ constrains:
+ - psycopg2 >=2.9.6
+ - blosc >=1.21.3
+ - beautifulsoup4 >=4.11.2
+ - pyreadstat >=1.2.0
+ - gcsfs >=2022.11.0
+ - s3fs >=2022.11.0
+ - pyxlsb >=1.0.10
+ - xlsxwriter >=3.0.5
+ - matplotlib >=3.6.3
+ - openpyxl >=3.1.0
+ - sqlalchemy >=2.0.0
+ - numexpr >=2.8.4
+ - xarray >=2022.12.0
+ - pyqt5 >=5.15.9
+ - xlrd >=2.0.1
+ - zstandard >=0.19.0
+ - pytables >=3.8.0
+ - odfpy >=1.4.1
+ - lxml >=4.9.2
+ - pyarrow >=10.0.1
+ - bottleneck >=1.3.6
+ - html5lib >=1.1
+ - scipy >=1.10.0
+ - fsspec >=2022.11.0
+ - fastparquet >=2022.12.0
+ - tabulate >=0.9.0
+ - python-calamine >=0.1.7
+ - qtpy >=2.3.0
+ - numba >=0.56.4
+ - tzdata >=2022.7
+ - pandas-gbq >=0.19.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15395500
+ timestamp: 1759266072181
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.3.3-py314h91eeaa4_1.conda
+ sha256: a9ea97c45bc5ce6c4f9bdb6c17b2a7042681944550de568840ecefd891a36bd9
+ md5: 5afded986bab0b0e5a3b27019449d1d9
depends:
- - libcap >=2.76,<2.77.0a0
- libgcc >=14
- license: LGPL-2.1-or-later
- purls: []
- size: 155898
- timestamp: 1757520441677
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libudev1-257.7-hd59efbf_1.conda
- sha256: 30482af16bfca21bac44cce96021e7abd9017ebf9d874507fbc338f9e751c5d7
- md5: c565a92f7b2527d18a6cfa27390057d8
+ - libstdcxx >=14
+ - numpy >=1.22.4
+ - numpy >=1.23,<3
+ - python >=3.14.0rc3,<3.15.0a0
+ - python >=3.14.0rc3,<3.15.0a0 *_cp314
+ - python-dateutil >=2.8.2
+ - python-tzdata >=2022.7
+ - python_abi 3.14.* *_cp314
+ - pytz >=2020.1
+ constrains:
+ - matplotlib >=3.6.3
+ - xlrd >=2.0.1
+ - xarray >=2022.12.0
+ - pyreadstat >=1.2.0
+ - qtpy >=2.3.0
+ - psycopg2 >=2.9.6
+ - odfpy >=1.4.1
+ - sqlalchemy >=2.0.0
+ - pyqt5 >=5.15.9
+ - numba >=0.56.4
+ - gcsfs >=2022.11.0
+ - bottleneck >=1.3.6
+ - openpyxl >=3.1.0
+ - pyxlsb >=1.0.10
+ - pandas-gbq >=0.19.0
+ - html5lib >=1.1
+ - numexpr >=2.8.4
+ - fsspec >=2022.11.0
+ - beautifulsoup4 >=4.11.2
+ - blosc >=1.21.3
+ - lxml >=4.9.2
+ - pytables >=3.8.0
+ - python-calamine >=0.1.7
+ - scipy >=1.10.0
+ - tzdata >=2022.7
+ - tabulate >=0.9.0
+ - xlsxwriter >=3.0.5
+ - zstandard >=0.19.0
+ - s3fs >=2022.11.0
+ - pyarrow >=10.0.1
+ - fastparquet >=2022.12.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15083364
+ timestamp: 1759266247361
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.3.3-py314hc4308db_1.conda
+ sha256: dc0b1248949925e3e7c116404d95ba543c26eb0fb75582171d08516619db7be5
+ md5: 21a858b49f91ac1f5a7b8d0ab61f8e7d
depends:
- - libcap >=2.76,<2.77.0a0
- - libgcc >=14
- license: LGPL-2.1-or-later
- purls: []
- size: 177309
- timestamp: 1757439044560
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda
- sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808
- md5: 80c07c68d2f6870250959dcc95b209d1
+ - __osx >=10.13
+ - libcxx >=19
+ - numpy >=1.22.4
+ - numpy >=1.23,<3
+ - python >=3.14.0rc3,<3.15.0a0
+ - python-dateutil >=2.8.2
+ - python-tzdata >=2022.7
+ - python_abi 3.14.* *_cp314
+ - pytz >=2020.1
+ constrains:
+ - pyqt5 >=5.15.9
+ - qtpy >=2.3.0
+ - numba >=0.56.4
+ - fastparquet >=2022.12.0
+ - pyreadstat >=1.2.0
+ - xarray >=2022.12.0
+ - pandas-gbq >=0.19.0
+ - fsspec >=2022.11.0
+ - s3fs >=2022.11.0
+ - xlrd >=2.0.1
+ - xlsxwriter >=3.0.5
+ - beautifulsoup4 >=4.11.2
+ - psycopg2 >=2.9.6
+ - pyxlsb >=1.0.10
+ - tabulate >=0.9.0
+ - numexpr >=2.8.4
+ - pytables >=3.8.0
+ - gcsfs >=2022.11.0
+ - openpyxl >=3.1.0
+ - blosc >=1.21.3
+ - bottleneck >=1.3.6
+ - matplotlib >=3.6.3
+ - html5lib >=1.1
+ - python-calamine >=0.1.7
+ - sqlalchemy >=2.0.0
+ - odfpy >=1.4.1
+ - pyarrow >=10.0.1
+ - lxml >=4.9.2
+ - zstandard >=0.19.0
+ - tzdata >=2022.7
+ - scipy >=1.10.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 14491023
+ timestamp: 1759266245568
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.3.3-py314ha3d490a_1.conda
+ sha256: 48b32ef03a360c6365efd3799a1f65fd510a1a0c22ac364fa07e79369db0daba
+ md5: 9ddeb938ece18b5d9b534494cfe0facd
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - numpy >=1.22.4
+ - numpy >=1.23,<3
+ - python >=3.14.0rc3,<3.15.0a0
+ - python >=3.14.0rc3,<3.15.0a0 *_cp314
+ - python-dateutil >=2.8.2
+ - python-tzdata >=2022.7
+ - python_abi 3.14.* *_cp314
+ - pytz >=2020.1
+ constrains:
+ - html5lib >=1.1
+ - pyarrow >=10.0.1
+ - gcsfs >=2022.11.0
+ - xlrd >=2.0.1
+ - matplotlib >=3.6.3
+ - tabulate >=0.9.0
+ - zstandard >=0.19.0
+ - bottleneck >=1.3.6
+ - lxml >=4.9.2
+ - python-calamine >=0.1.7
+ - pyxlsb >=1.0.10
+ - xarray >=2022.12.0
+ - qtpy >=2.3.0
+ - fastparquet >=2022.12.0
+ - s3fs >=2022.11.0
+ - pyreadstat >=1.2.0
+ - sqlalchemy >=2.0.0
+ - numba >=0.56.4
+ - pandas-gbq >=0.19.0
+ - scipy >=1.10.0
+ - odfpy >=1.4.1
+ - pyqt5 >=5.15.9
+ - numexpr >=2.8.4
+ - blosc >=1.21.3
+ - openpyxl >=3.1.0
+ - tzdata >=2022.7
+ - psycopg2 >=2.9.6
+ - pytables >=3.8.0
+ - beautifulsoup4 >=4.11.2
+ - xlsxwriter >=3.0.5
+ - fsspec >=2022.11.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 14227769
+ timestamp: 1759267028292
+- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
+ sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f
+ md5: a110716cdb11cf51482ff4000dc253d7
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ size: 81562
+ timestamp: 1755974222274
+- conda: 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
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.46-h1321c63_0.conda
+ sha256: 5c7380c8fd3ad5fc0f8039069a45586aa452cf165264bc5a437ad80397b32934
+ md5: 7fa07cb0fb1b625a089ccc01218ee5b1
depends:
- __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
- libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 37135
- timestamp: 1758626800002
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.41.2-h3e4203c_0.conda
- sha256: 7aed28ac04e0298bf8f7ad44a23d6f8ee000aa0445807344b16fceedc67cce0f
- md5: 3a68e44fdf2a2811672520fdd62996bd
+ size: 1209177
+ timestamp: 1756742976157
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.46-h15761aa_0.conda
+ sha256: 75800e60e0e44d957c691a964085f56c9ac37dcd75e6c6904809d7b68f39e4ea
+ md5: 5128cb5188b630a58387799ea1366e37
depends:
+ - bzip2 >=1.0.8,<2.0a0
- libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 39172
- timestamp: 1758626850999
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libuuid-2.41.2-h10e6d09_0.conda
- sha256: 502a62a2afb550d1bb9971d49c0dbcb4a8ea1ae6a68e3fefea59e7e34900eadf
- md5: 9d43bc8f8fcff45edb68ade23dd071d4
+ size: 1161914
+ timestamp: 1756742893031
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.46-ha3e7e28_0.conda
+ sha256: cb262b7f369431d1086445ddd1f21d40003bb03229dfc1d687e3a808de2663a6
+ md5: 3b504da3a4f6d8b2b1f969686a0bf0c0
depends:
- - libgcc >=14
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1097626
+ timestamp: 1756743061564
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.46-h7125dd6_0.conda
+ sha256: 5bf2eeaa57aab6e8e95bea6bd6bb2a739f52eb10572d8ed259d25864d3528240
+ md5: 0e6e82c3cc3835f4692022e9b9cd5df8
+ depends:
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 43881
- timestamp: 1758626898884
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda
- sha256: c180f4124a889ac343fc59d15558e93667d894a966ec6fdb61da1604481be26b
- md5: 0f03292cc56bf91a077a134ea8747118
+ size: 835080
+ timestamp: 1756743041908
+- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
+ sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a
+ md5: d0d408b1f18883a944376da5cf8101ea
+ depends:
+ - ptyprocess >=0.5
+ - python >=3.9
+ license: ISC
+ size: 53561
+ timestamp: 1733302019362
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-12.0.0-py314h72745e2_0.conda
+ sha256: 1dec7a825154fce8705892a4cc178f8edfa78253c56de06000b409f6cfe2cea9
+ md5: 47fdb59e9753d0af064c25247ab4f47c
depends:
+ - python
+ - libgcc >=14
- __glibc >=2.17,<3.0.a0
+ - openjpeg >=2.5.4,<3.0a0
+ - lcms2 >=2.17,<3.0a0
+ - python_abi 3.14.* *_cp314
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libwebp-base >=1.6.0,<2.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libxcb >=1.17.0,<2.0a0
+ license: HPND
+ size: 1071171
+ timestamp: 1761655794835
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-12.0.0-py314h1883709_0.conda
+ sha256: ccdecf31c632b3e3bdbe068f2fb016ee165de5340dfe28406f1f928608c5cdf4
+ md5: 01527c435780db43c7ea1f5d3c7b1d32
+ depends:
+ - python
- libgcc >=14
- license: MIT
- license_family: MIT
- size: 895108
- timestamp: 1753948278280
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.51.0-he30d5cf_1.conda
- sha256: 7a0fb5638582efc887a18b7d270b0c4a6f6e681bf401cab25ebafa2482569e90
- md5: 8e62bf5af966325ee416f19c6f14ffa3
+ - openjpeg >=2.5.4,<3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - python_abi 3.14.* *_cp314
+ - lcms2 >=2.17,<3.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libwebp-base >=1.6.0,<2.0a0
+ license: HPND
+ size: 1044696
+ timestamp: 1761655964164
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-12.0.0-py314h0a84944_0.conda
+ sha256: 8e6363473eed6aec39b1bead8885a451bfac6ce7e5f2111cf77c9b91a238f932
+ md5: 95252d1cf079f62c4d0ea90eb5cd7219
+ depends:
+ - python
+ - __osx >=10.13
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - lcms2 >=2.17,<3.0a0
+ - openjpeg >=2.5.4,<3.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - python_abi 3.14.* *_cp314
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ license: HPND
+ size: 1002083
+ timestamp: 1761655892836
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-12.0.0-py314h73456f9_0.conda
+ sha256: 688b0d8d2860e3dd02fc6783200fa0b7dc5a2f6c5b373cec3bcfd10168c6f3a1
+ md5: 010b484f18a2dc253972adff3281c12f
+ depends:
+ - python
+ - __osx >=11.0
+ - python 3.14.* *_cp314
+ - openjpeg >=2.5.4,<3.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - zlib-ng >=2.2.5,<2.3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - lcms2 >=2.17,<3.0a0
+ - python_abi 3.14.* *_cp314
+ - libxcb >=1.17.0,<2.0a0
+ license: HPND
+ size: 992758
+ timestamp: 1761655970284
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda
+ sha256: 43d37bc9ca3b257c5dd7bf76a8426addbdec381f6786ff441dc90b1a49143b6a
+ md5: c01af13bdc553d1a8fbfff6e8db075f0
depends:
- libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
license: MIT
license_family: MIT
- size: 629238
- timestamp: 1753948296190
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libuv-1.51.0-hfc7e52b_1.conda
- sha256: 0d18c05ec324cb7d19b16805ea651736b9db55188affbacbf9fa51566396d7b7
- md5: b64b62e73d7e6aad828999300f101c68
+ size: 450960
+ timestamp: 1754665235234
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.46.4-h7ac5ae9_1.conda
+ sha256: e6b0846a998f2263629cfeac7bca73565c35af13251969f45d385db537a514e4
+ md5: 1587081d537bd4ae77d1c0635d465ba5
depends:
- libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
license: MIT
license_family: MIT
- size: 656430
- timestamp: 1753948250222
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda
- sha256: d90dd0eee6f195a5bd14edab4c5b33be3635b674b0b6c010fb942b956aa2254c
- md5: fbfc6cf607ae1e1e498734e256561dc3
+ size: 357913
+ timestamp: 1754665583353
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda
+ sha256: ff8b679079df25aa3ed5daf3f4e3a9c7ee79e7d4b2bd8a21de0f8e7ec7207806
+ md5: 742a8552e51029585a32b6024e9f57b4
depends:
- __osx >=10.13
+ - libcxx >=19
license: MIT
license_family: MIT
- size: 422612
- timestamp: 1753948458902
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda
- sha256: 042c7488ad97a5629ec0a991a8b2a3345599401ecc75ad6a5af73b60e6db9689
- md5: c0d87c3c8e075daf1daf6c31b53e8083
+ size: 390942
+ timestamp: 1754665233989
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda
+ sha256: 29c9b08a9b8b7810f9d4f159aecfd205fce051633169040005c0b7efad4bc718
+ md5: 17c3d745db6ea72ae2fce17e7338547f
depends:
- __osx >=11.0
+ - libcxx >=19
license: MIT
license_family: MIT
- size: 421195
- timestamp: 1753948426421
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h031cc0b_0.conda
- sha256: ee64e507b37b073e0bdad739e35330933dd5be7c639600a096551a6968f1035d
- md5: a67cd8f7b0369bbf2c40411f05a62f3b
+ size: 248045
+ timestamp: 1754665282033
+- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
+ sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888
+ md5: 5c7a868f8241e64e1cf5fdf4962f23e2
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=14
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libxml2-16 2.15.1 hf2a90c1_0
- - libzlib >=1.3.1,<2.0a0
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ size: 23625
+ timestamp: 1759953252315
+- conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.4.0-pyhd8ed1ab_0.conda
+ sha256: 508cdfc0cf7e6ce28c6c0db3d46fd8f82303354d5e9a08db01bce69ce5fc3b9d
+ md5: 5c4026a217618967eee6493097930768
+ depends:
+ - narwhals >=1.15.1
+ - packaging
+ - python >=3.10
constrains:
- - icu <0.0a0
+ - ipywidgets >=7.6
license: MIT
license_family: MIT
- purls: []
- size: 45292
- timestamp: 1761015784683
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.15.1-h788dabe_0.conda
- sha256: db0a568e0853ee38b7a4db1cb4ee76e57fe7c32ccb1d5b75f6618a1041d3c6e4
- md5: a0e7779b7625b88e37df9bd73f0638dc
+ size: 5159327
+ timestamp: 1762283633713
+- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc
+ md5: 7da7ccd349dbf6487a7778579d2bb971
depends:
- - icu >=75.1,<76.0a0
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 24246
+ timestamp: 1747339794916
+- conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda
+ sha256: 032405adb899ba7c7cc24d3b4cd4e7f40cf24ac4f253a8e385a4f44ccb5e0fc6
+ md5: d2bbbd293097e664ffb01fc4cdaf5729
+ depends:
+ - packaging >=20.0
+ - platformdirs >=2.5.0
+ - python >=3.9
+ - requests >=2.19.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 55588
+ timestamp: 1754941801129
+- conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.4.0-pyha770c72_0.conda
+ sha256: 5eee94ab06bb74ad164862d15c18e932493c5b959928e7889b91dee73f550152
+ md5: c130573bb7a166e93d5bd01c94ae38e1
+ depends:
+ - cfgv >=2.0.0
+ - identify >=1.0.0
+ - nodeenv >=0.11.1
+ - python >=3.10
+ - pyyaml >=5.1
+ - virtualenv >=20.10.0
+ license: MIT
+ license_family: MIT
+ size: 200293
+ timestamp: 1762692428418
+- conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.7.0-hb72c0af_0.conda
+ sha256: f1c5e1cc0de088fd3458009be68095f561fa74b5ca6293dcca266f1854d859df
+ md5: 438e75abf4d8c9c1d9e483b6c3f36282
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libxml2-16 2.15.1 h8591a01_0
- - libzlib >=1.3.1,<2.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
license: MIT
license_family: MIT
- purls: []
- size: 47192
- timestamp: 1761015739999
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-2.15.1-h485e107_0.conda
- sha256: 93d5e5f2ad4f5a185ac774ceac9e13c98726258b12c8238c98fb63364ae64a9a
- md5: 0b583dee1167bc33d0d352eac6883420
+ size: 3259440
+ timestamp: 1757929968903
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.7.0-hfc38104_0.conda
+ sha256: 8de463a17daf0940b283c0ce715a094b860e45056411d01f559da0f7bfb2310c
+ md5: e32629bcde914c911a9f9e1fd557b57c
depends:
- - icu >=75.1,<76.0a0
+ - libcurl >=8.14.1,<9.0a0
- libgcc >=14
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libxml2-16 2.15.1 h83eeafb_0
- - libzlib >=1.3.1,<2.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
license: MIT
license_family: MIT
- purls: []
- size: 49374
- timestamp: 1761015728397
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h23bb396_0.conda
- sha256: a40ec252d9c50fee7cb0b15be7e358a10888c89dadb23deac254789fcb047de7
- md5: 65dd26de1eea407dda59f0da170aed22
+ size: 3177611
+ timestamp: 1757930683723
+- conda: https://conda.anaconda.org/conda-forge/osx-64/proj-9.7.0-h3124640_0.conda
+ sha256: f8d45ec8e2a6ea58181a399a58f5e2f6ab6d25f772ba63ac08091e887498ab83
+ md5: c952a9e5ecd52f6dfdb1b4e43e033893
depends:
- __osx >=10.13
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libxml2-16 2.15.1 h0ad03eb_0
- - libzlib >=1.3.1,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libsqlite >=3.50.4,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
constrains:
- - icu <0.0a0
+ - proj4 ==999999999999
license: MIT
license_family: MIT
- purls: []
- size: 40433
- timestamp: 1761016207984
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-h9329255_0.conda
- sha256: c409e384ddf5976a42959265100d6b2c652017d250171eb10bae47ef8166193f
- md5: fb5ce61da27ee937751162f86beba6d1
+ size: 2918228
+ timestamp: 1757930204492
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.7.0-hf83150c_0.conda
+ sha256: 350695d177ebc924ec1269fbb1c529734ee18584d19aa04061e7978c2a8a9fea
+ md5: 2022111c3d1d4ce1aaedb5fff3a247cf
depends:
- __osx >=11.0
- - icu >=75.1,<76.0a0
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libxml2-16 2.15.1 h0ff4647_0
- - libzlib >=1.3.1,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libcxx >=19
+ - libsqlite >=3.50.4,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
license: MIT
license_family: MIT
- purls: []
- size: 40607
- timestamp: 1761016108361
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-hba2cd1d_0.conda
- sha256: fa01101fe7d95085846c16825f0e7dc0efe1f1c7438a96fe7395c885d6179495
- md5: a53d5f7fff38853ddb6bdc8fb609c039
+ size: 2792592
+ timestamp: 1757930357072
+- conda: https://conda.anaconda.org/conda-forge/linux-64/prometheus-cpp-1.3.0-ha5d0236_0.conda
+ sha256: 013669433eb447548f21c3c6b16b2ed64356f726b5f77c1b39d5ba17a8a4b8bc
+ md5: a83f6a2fdc079e643237887a37460668
depends:
- - __osx >=11.0
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libxml2-16 2.15.1 h8eac4d7_0
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- constrains:
- - icu <0.0a0
+ - zlib
license: MIT
license_family: MIT
- size: 40611
- timestamp: 1761016283558
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-hf2a90c1_0.conda
- sha256: f5220ff49efc31431279859049199b9250e79f98c1dee1da12feb74bda2d9cf1
- md5: 23720d17346b21efb08d68c2255c8431
+ size: 199544
+ timestamp: 1730769112346
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/prometheus-cpp-1.3.0-h7938499_0.conda
+ sha256: 9350d7bbc3982a732ff13a7fd17b585509e3b7d0191ac7b810cc3224868e3648
+ md5: 10f4301290e51c49979ff98d1bdf2556
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=14
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- constrains:
- - libxml2 2.15.1
- - icu <0.0a0
+ - zlib
license: MIT
license_family: MIT
- purls: []
- size: 554734
- timestamp: 1761015772672
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-16-2.15.1-h8591a01_0.conda
- sha256: 7a13450bce2eeba8f8fb691868b79bf0891377b707493a527bd930d64d9b98af
- md5: e7177c6fbbf815da7b215b4cc3e70208
+ size: 211335
+ timestamp: 1730769181127
+- conda: https://conda.anaconda.org/conda-forge/osx-64/prometheus-cpp-1.3.0-h7802330_0.conda
+ sha256: af754a477ee2681cb7d5d77c621bd590d25fe1caf16741841fc2d176815fc7de
+ md5: f36107fa2557e63421a46676371c4226
depends:
- - icu >=75.1,<76.0a0
- - libgcc >=14
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
+ - __osx >=10.13
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
- constrains:
- - libxml2 2.15.1
+ - zlib
license: MIT
license_family: MIT
- purls: []
- size: 597078
- timestamp: 1761015734476
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-16-2.15.1-h83eeafb_0.conda
- sha256: f9f6ab84657542b46660e2a967f2589a3b6d119a0e6610e2ce004f291d1be73b
- md5: 61c0e4b7fda900caf7521b144ef6d784
+ size: 179103
+ timestamp: 1730769223221
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/prometheus-cpp-1.3.0-h0967b3e_0.conda
+ sha256: 851a77ae1a8e90db9b9f3c4466abea7afb52713c3d98ceb0d37ba6ff27df2eff
+ md5: 7172339b49c94275ba42fec3eaeda34f
depends:
- - icu >=75.1,<76.0a0
- - libgcc >=14
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
+ - __osx >=11.0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
+ - zlib
+ license: MIT
+ license_family: MIT
+ size: 173220
+ timestamp: 1730769371051
+- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
+ sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae
+ md5: edb16f14d920fb3faf17f5ce582942d6
+ depends:
+ - python >=3.10
+ - wcwidth
constrains:
- - libxml2 2.15.1
+ - prompt_toolkit 3.0.52
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 273927
+ timestamp: 1756321848365
+- conda: https://conda.anaconda.org/conda-forge/noarch/propcache-0.3.1-pyhe1237c8_0.conda
+ sha256: d8927d64b35e1fb82285791444673e47d3729853be962c7045e75fc0fd715cec
+ md5: b1cda654f58d74578ac9786909af84cd
+ depends:
+ - python >=3.9
+ track_features:
+ - propcache_no_compile
+ license: Apache-2.0
+ license_family: APACHE
+ size: 17693
+ timestamp: 1744525054494
+- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.1.3-py314h0f05182_0.conda
+ sha256: 7c5d69ad61fe4e0d3657185f51302075ef5b9e34686238c6b3bde102344d4390
+ md5: aee1c9aecc66339ea6fd89e6a143a282
+ depends:
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 509226
+ timestamp: 1762092897605
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-7.1.3-py314h2e8dab5_0.conda
+ sha256: f3d9d6cefd7b0a38463dbf4a177cd8931facf87fc74449c56308030ca7109ae1
+ md5: 0bb7bbcb8d57609933ffe16873d15944
+ depends:
+ - python
+ - python 3.14.* *_cp314
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 514916
+ timestamp: 1762092930631
+- conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.1.3-py314hd1e8ddb_0.conda
+ sha256: 444a73838eff6d7d35e22a684c1774dacd191500c3e27a828ec1ed0f96d5f70d
+ md5: 3156552ec761b34da86aeb273e725a25
+ depends:
+ - python
+ - __osx >=10.13
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 520432
+ timestamp: 1762093042719
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.1.3-py314h9d33bd4_0.conda
+ sha256: e69d9bdc482596abb10a7d54094e3f6a80ccba5b710353e9bda7d3313158985f
+ md5: 7259e501bb4288143582312017bb1e44
+ depends:
+ - python
+ - python 3.14.* *_cp314
+ - __osx >=11.0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 523325
+ timestamp: 1762093068430
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
+ md5: b3c17d95b5a10c6e64a21fa17573e70e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- purls: []
- size: 675781
- timestamp: 1761015722959
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-h0ad03eb_0.conda
- sha256: 00ddbcfbd0318f3c5dbf2b1e1bc595915efe2a61e73b844df422b11fec39d7d8
- md5: 8487998051f3d300fef701a49c27f282
+ size: 8252
+ timestamp: 1726802366959
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
+ sha256: 977dfb0cb3935d748521dd80262fe7169ab82920afd38ed14b7fee2ea5ec01ba
+ md5: bb5a90c93e3bac3d5690acf76b4a6386
depends:
- - __osx >=10.13
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libzlib >=1.3.1,<2.0a0
- constrains:
- - icu <0.0a0
- - libxml2 2.15.1
+ - libgcc >=13
license: MIT
license_family: MIT
- purls: []
- size: 493432
- timestamp: 1761016183078
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h0ff4647_0.conda
- sha256: ebe2dd9da94280ad43da936efa7127d329b559f510670772debc87602b49b06d
- md5: 438c97d1e9648dd7342f86049dd44638
+ size: 8342
+ timestamp: 1726803319942
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda
+ sha256: 05944ca3445f31614f8c674c560bca02ff05cb51637a96f665cb2bbe496099e5
+ md5: 8bcf980d2c6b17094961198284b8e862
depends:
- - __osx >=11.0
- - icu >=75.1,<76.0a0
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libzlib >=1.3.1,<2.0a0
- constrains:
- - libxml2 2.15.1
+ - __osx >=10.13
license: MIT
license_family: MIT
- purls: []
- size: 464952
- timestamp: 1761016087733
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h8eac4d7_0.conda
- sha256: 3f3f9ba64a3fca15802d4eaf2a97696e6dcd916effa6a683756fd9f11245df5a
- md5: cf7291a970b93fe3bb726879f2037af8
+ size: 8364
+ timestamp: 1726802331537
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
+ sha256: 8ed65e17fbb0ca944bfb8093b60086e3f9dd678c3448b5de212017394c247ee3
+ md5: 415816daf82e0b23a736a069a75e9da7
depends:
- __osx >=11.0
- - libiconv >=1.18,<2.0a0
- - liblzma >=5.8.1,<6.0a0
- - libzlib >=1.3.1,<2.0a0
- constrains:
- - libxml2 2.15.1
- - icu <0.0a0
license: MIT
license_family: MIT
- size: 464186
- timestamp: 1761016258891
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.43-h711ed8c_1.conda
- sha256: 0694760a3e62bdc659d90a14ae9c6e132b525a7900e59785b18a08bb52a5d7e5
- md5: 87e6096ec6d542d1c1f8b33245fe8300
+ size: 8381
+ timestamp: 1726802424786
+- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83
+ md5: 7d9daffbb8d8e0af0f769dbbcd173a54
+ depends:
+ - python >=3.9
+ license: ISC
+ size: 19457
+ timestamp: 1733302371990
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
+ sha256: 23c98a5000356e173568dc5c5770b53393879f946f3ace716bbdefac2a8b23d2
+ md5: b11a4c6bf6f6f44e5e143f759ffa2087
depends:
- __glibc >=2.17,<3.0.a0
- - libgcc >=14
- - libxml2
- - libxml2-16 >=2.14.6
+ - libgcc >=13
+ - libstdcxx >=13
license: MIT
license_family: MIT
- purls: []
- size: 245434
- timestamp: 1757963724977
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.43-h6700d25_1.conda
- sha256: 8a816572a4650149d28c0b8b44e294380de18787735d00c7cf5fad91dba8e286
- md5: 0f31501ccd51a40f0a91381080ae7368
+ size: 118488
+ timestamp: 1736601364156
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda
+ sha256: adc17205a87e064508d809fe5542b7cf49f9b9a458418f8448e2fc895fcd04f3
+ md5: 53e14f45d38558aa2b9a15b07416e472
depends:
- - libgcc >=14
- - libxml2
- - libxml2-16 >=2.14.6
+ - libgcc >=13
+ - libstdcxx >=13
license: MIT
license_family: MIT
- purls: []
- size: 253367
- timestamp: 1757964660396
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libxslt-1.1.43-h823012b_1.conda
- sha256: 5980c9332247ba9f675e173253387e00b898eae54d5597662b60662562d46c45
- md5: 1ae274391e2a325110fc2de7a25233c9
+ size: 113424
+ timestamp: 1737355438448
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.15-h46091d4_0.conda
+ sha256: d22fd205d2db21c835e233c30e91e348735e18418c35327b0406d2d917e39a90
+ md5: 7a1ad34efe728093c36a76afeaf30586
depends:
- - libgcc >=14
- - libxml2
- - libxml2-16 >=2.14.6
+ - __osx >=10.13
+ - libcxx >=18
license: MIT
license_family: MIT
- purls: []
- size: 264766
- timestamp: 1757964504919
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.43-h486b42e_1.conda
- sha256: 00d6b5e92fc1c5d86e095b9b6840f793d9fc4c9b4a7753fa0f8197ab11d5eb90
- md5: 367b8029352f3899fb76cc20f4d144b9
+ size: 97559
+ timestamp: 1736601483485
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda
+ sha256: 5ad8d036040b095f85d23c70624d3e5e1e4c00bc5cea97831542f2dcae294ec9
+ md5: b9a4004e46de7aeb005304a13b35cb94
depends:
- - __osx >=10.13
- - libxml2
- - libxml2-16 >=2.14.6
+ - __osx >=11.0
+ - libcxx >=18
license: MIT
license_family: MIT
- purls: []
- size: 225660
- timestamp: 1757964032926
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.43-hb2570ba_1.conda
- sha256: 7a4d0676ab1407fecb24d4ada7fe31a98c8889f61f04612ea533599c22b8c472
- md5: 90f7ed12bb3c164c758131b3d3c2ab0c
+ size: 91283
+ timestamp: 1736601509593
+- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0
+ md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04
depends:
- - __osx >=11.0
- - libxml2
- - libxml2-16 >=2.14.6
+ - python >=3.9
license: MIT
license_family: MIT
- purls: []
- size: 220345
- timestamp: 1757964000982
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
- sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48
- md5: a7b27c075c9b7f459f1c022090697cba
+ size: 16668
+ timestamp: 1733569518868
+- conda: https://conda.anaconda.org/conda-forge/noarch/py2vega-0.6.1-pyhd8ed1ab_0.tar.bz2
+ sha256: 1637e850576b0cc1fda0fb2f4a4396bb30b140888e83787de2c8746af3df675e
+ md5: 07594783f950301f5943e6d080ffb4eb
+ depends:
+ - gast >=0.4,<0.5
+ - python >=3.6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16798
+ timestamp: 1614765686812
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-22.0.0-py314hdafbbf9_0.conda
+ sha256: c10ea8100848236cda04307a00cdeba5a86358fc537132ffcc5cac8cc27f5547
+ md5: ecb1085032bfa2bbd310807ca6c0c7f6
+ depends:
+ - libarrow-acero 22.0.0.*
+ - libarrow-dataset 22.0.0.*
+ - libarrow-substrait 22.0.0.*
+ - libparquet 22.0.0.*
+ - pyarrow-core 22.0.0 *_0_*
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: APACHE
+ size: 26193
+ timestamp: 1761648748916
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-22.0.0-py314ha42fa4b_0.conda
+ sha256: 34757e08223cb25599fce988dc1fc25110f73a1a6d34f6027264eb3046bdd77a
+ md5: c343d9c3283a46766538fc02b6e7fb2e
+ depends:
+ - libarrow-acero 22.0.0.*
+ - libarrow-dataset 22.0.0.*
+ - libarrow-substrait 22.0.0.*
+ - libparquet 22.0.0.*
+ - pyarrow-core 22.0.0 *_0_*
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: APACHE
+ size: 26357
+ timestamp: 1761649010569
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-22.0.0-py314hee6578b_0.conda
+ sha256: dd884207ed4c43d566a0fb6d46135669932dafce3f646f287b2c1347b1cb7391
+ md5: 13fdbf20848018c21129b27b696c4e90
+ depends:
+ - libarrow-acero 22.0.0.*
+ - libarrow-dataset 22.0.0.*
+ - libarrow-substrait 22.0.0.*
+ - libparquet 22.0.0.*
+ - pyarrow-core 22.0.0 *_0_*
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: APACHE
+ size: 26271
+ timestamp: 1761648628782
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-22.0.0-py314he55896b_0.conda
+ sha256: 1c15052ed5cdd0478964ea0b0f73bbc5db1c49f9b6923a378ba4b8dd2d9b802d
+ md5: 27b21816e9427b5bb9f5686c122b8730
+ depends:
+ - libarrow-acero 22.0.0.*
+ - libarrow-dataset 22.0.0.*
+ - libarrow-substrait 22.0.0.*
+ - libparquet 22.0.0.*
+ - pyarrow-core 22.0.0 *_0_*
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: APACHE
+ size: 26356
+ timestamp: 1761649037869
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-22.0.0-py314h52d6ec5_0_cpu.conda
+ sha256: 89d1fdb21ca6488c2e7a262d84eaf3ab4fbdd555a3ce91915869d9bfe640b92e
+ md5: 3c690d2816c2fe6e8d02a0f60549a393
depends:
- __glibc >=2.17,<3.0.a0
- - bzip2 >=1.0.8,<2.0a0
- - libgcc >=13
+ - libarrow 22.0.0.* *cpu
+ - libarrow-compute 22.0.0.* *cpu
+ - libgcc >=14
+ - libstdcxx >=14
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - apache-arrow-proc * cpu
+ - numpy >=1.21,<3
+ license: Apache-2.0
+ license_family: APACHE
+ size: 4814230
+ timestamp: 1761648682122
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-22.0.0-py314h74722e0_0_cpu.conda
+ sha256: bce06d04c1817a57d9ceae327b49552c8f769f6475c5335ea48fcf7d8621f0f5
+ md5: 1a1489c9ba12122afe576de051839470
+ depends:
+ - libarrow 22.0.0.* *cpu
+ - libarrow-compute 22.0.0.* *cpu
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - apache-arrow-proc * cpu
+ - numpy >=1.21,<3
+ license: Apache-2.0
+ license_family: APACHE
+ size: 5034590
+ timestamp: 1761648647897
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-core-22.0.0-py314h35e0213_0_cpu.conda
+ sha256: c502d7118b4b5fd59e38f5e8b5ac702ab2923f4c3f0fbbd71a8310fa47aef00b
+ md5: d46aeaef96eb344a170c178dc7f40a2d
+ depends:
+ - __osx >=10.13
+ - libarrow 22.0.0.* *cpu
+ - libarrow-compute 22.0.0.* *cpu
+ - libcxx >=18
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - apache-arrow-proc * cpu
+ - numpy >=1.21,<3
+ license: Apache-2.0
+ license_family: APACHE
+ size: 4792989
+ timestamp: 1761648579819
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-22.0.0-py314hf20a12a_0_cpu.conda
+ sha256: d06476026a96d93bc44b0269e8b9abcc2b18adb56d82cd69d2f33e8cc0b47299
+ md5: e02b151500dcd291ab7cd8f2bd46fef3
+ depends:
+ - __osx >=11.0
+ - libarrow 22.0.0.* *cpu
+ - libarrow-compute 22.0.0.* *cpu
+ - libcxx >=18
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - numpy >=1.21,<3
+ - apache-arrow-proc * cpu
+ license: Apache-2.0
+ license_family: APACHE
+ size: 3912295
+ timestamp: 1761648977007
+- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
+ md5: 12c566707c80111f9799308d9e265aef
+ depends:
+ - python >=3.9
+ - python
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 109043
- timestamp: 1730442108429
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda
- sha256: 9ae7edbe6dcdaa0371736118a1e05ffa47c15c0118a092ff1b0a35cbb621ac2d
- md5: faf7adbb1938c4aa7a312f110f46859b
+ size: 110100
+ timestamp: 1733195786147
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyerfa-2.0.1.5-py310h32771cd_2.conda
+ noarch: python
+ sha256: a3f25f921be09e15ed6ff46a1ec99ce9cca6affa4a086f6f39ad630e21e48fb7
+ md5: e6efd9593a25d093b4ce9dd8053c4af7
depends:
- - bzip2 >=1.0.8,<2.0a0
- - libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.21,<3
+ - python
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 117603
- timestamp: 1730442215935
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzip-1.11.2-h4282fc3_0.conda
- sha256: 1d11960551d265665f1c9e9c6256d18a7ffc425a1dc6fbc814c6efc66b24b473
- md5: 7f7e2101a3fc2978b4774e7fec9d0501
+ size: 295617
+ timestamp: 1756821497270
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyerfa-2.0.1.5-py310hf07f68b_2.conda
+ noarch: python
+ sha256: 680cb0293e9a540ecfb0924c2d809cdd34f5df49bfa6ba48356e1e9dec3ccf14
+ md5: 8d3ba7c21a27fbe8666c036b22771195
depends:
- - bzip2 >=1.0.8,<2.0a0
- - libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - libgcc >=14
+ - numpy >=1.21,<3
+ - python
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 123660
- timestamp: 1730442181046
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda
- sha256: 434a4d1ad23c1c8deb7ec2da94aca05e22bc29dee445b4f7642e1c2f20fc0b0b
- md5: 3cf12c97a18312c9243a895580bf5be6
+ size: 294921
+ timestamp: 1756821504931
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pyerfa-2.0.1.5-py310hcbffc5d_2.conda
+ noarch: python
+ sha256: 06beb9ed2f6df706b5bd050e42819e49606d6256fe66dc7255c577a0140a2379
+ md5: cd854c208de8cd3e2a6a878500021633
depends:
- __osx >=10.13
- - bzip2 >=1.0.8,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - numpy >=1.21,<3
+ - python
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 129542
- timestamp: 1730442392952
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda
- sha256: 507599a77c1ce823c2d3acaefaae4ead0686f183f3980467a4c4b8ba209eff40
- md5: 7177414f275db66735a17d316b0a81d6
+ size: 270277
+ timestamp: 1756821799013
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyerfa-2.0.1.5-py310hbb12772_2.conda
+ noarch: python
+ sha256: ec2a947d95ffb46ca3a818272c8594f195b1e74369164c46f4512b2d66f7f4c4
+ md5: 51a8f8137ff9e55513e5e722c86fb9f8
depends:
- __osx >=11.0
- - bzip2 >=1.0.8,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - numpy >=1.21,<3
+ - python
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 125507
- timestamp: 1730442214849
-- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
- md5: edb0dca6bc32e4f4789199455a1dbeb8
- depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- constrains:
- - zlib 1.3.1 *_2
- license: Zlib
- license_family: Other
- purls: []
- size: 60963
- timestamp: 1727963148474
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
- sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84
- md5: 08aad7cbe9f5a6b460d0976076b6ae64
- depends:
- - libgcc >=13
- constrains:
- - zlib 1.3.1 *_2
- license: Zlib
- license_family: Other
- purls: []
- size: 66657
- timestamp: 1727963199518
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.3.1-h190368a_2.conda
- sha256: 05216f74566f6ede1161c99fc4fbbcc9ca9095069c81c937e6384582cefe49c9
- md5: 4ac019aac4dbff4728ef133b8ec3a913
+ size: 271352
+ timestamp: 1756821964759
+- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
+ md5: 6b6ece66ebcae2d5f326c77ef2c5a066
depends:
- - libgcc >=13
- constrains:
- - zlib 1.3.1 *_2
- license: Zlib
- license_family: Other
- purls: []
- size: 69388
- timestamp: 1727963207653
-- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
- sha256: 8412f96504fc5993a63edf1e211d042a1fd5b1d51dedec755d2058948fcced09
- md5: 003a54a4e32b02f7355b50a837e699da
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 889287
+ timestamp: 1750615908735
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.5-pyhcf101f3_0.conda
+ sha256: 6814b61b94e95ffc45ec539a6424d8447895fef75b0fec7e1be31f5beee883fb
+ md5: 6c8979be6d7a17692793114fa26916e8
depends:
- - __osx >=10.13
- constrains:
- - zlib 1.3.1 *_2
- license: Zlib
- license_family: Other
- purls: []
- size: 57133
- timestamp: 1727963183990
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b
- md5: 369964e85dc26bfe78f41399b366c435
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ size: 104044
+ timestamp: 1758436411254
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyrecest-0.9.0-pyhcf101f3_0.conda
+ sha256: a4890ab58d7b674bc3eb2ab017590d072d4d990734b88afd3413b1849114411d
+ md5: a7291a4d868253df0ab26a2684a701a0
depends:
- - __osx >=11.0
- constrains:
- - zlib 1.3.1 *_2
- license: Zlib
- license_family: Other
- purls: []
- size: 46438
- timestamp: 1727963202283
-- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.4-h472b3d1_0.conda
- sha256: fe28e94eeab77587efe0b3c4ee9d539ad8ce1613c1d4e5f57858e9de2d821317
- md5: 8c18393582f6e0750ece3fd3bb913101
+ - python >=3.10
+ - numpy
+ - scipy >=1.14.1
+ - matplotlib-base
+ - mpmath
+ - filterpy
+ - pyshtools
+ - beartype
+ - quaternion
+ - shapely
+ - python
+ license: MIT
+ size: 169792
+ timestamp: 1762690404320
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyshtools-4.13.1-py314h797cafe_3.conda
+ sha256: 3bed3ef16566d489bde498690e0a164b6c90f24baf18dd7a5c83281946b9f0cd
+ md5: a288cbf687e0fb56a358b42153f77e02
depends:
- - __osx >=10.13
+ - __glibc >=2.17,<3.0.a0
+ - astropy
+ - ducc0
+ - fftw >=3.3.10,<4.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - matplotlib-base
+ - numpy >=1.23,<3
+ - pooch
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - requests
+ - scipy
+ - tqdm
+ - xarray
constrains:
- - intel-openmp <0.0a0
- - openmp 21.1.4|21.1.4.*
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- purls: []
- size: 311042
- timestamp: 1761131057691
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.4-h4a912ad_0.conda
- sha256: 3f977e96f4c87d00c2f37e74609ac1f897a27d7a31d49078afe415f1d7c063bf
- md5: 8e3ed09e85fd3f3ff3496b2a04f88e21
- depends:
- - __osx >=11.0
+ - gmt >=6.3.0
+ - cartopy >=0.18
+ - pygmt >=0.7.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 37655965
+ timestamp: 1761660059870
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyshtools-4.13.1-py314h2f9a9d6_3.conda
+ sha256: 2fb64c5ea5868add3364733c0eae44c704b3d49fcdeb2760e413b3fe2f304614
+ md5: 7f396d378fe5386424c11b2934c726da
+ depends:
+ - astropy
+ - ducc0
+ - fftw >=3.3.10,<4.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - matplotlib-base
+ - numpy >=1.23,<3
+ - pooch
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - requests
+ - scipy
+ - tqdm
+ - xarray
constrains:
- - openmp 21.1.4|21.1.4.*
- - intel-openmp <0.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: APACHE
- purls: []
- size: 286030
- timestamp: 1761131615697
-- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21.1.4-hb0207f0_0.conda
- sha256: 4b61b83875d9757cdac87bb60cf46bcb35e961c9013bc537137ae92cd786986c
- md5: 1fab34d0e504fe6613d8dd624ac202ad
+ - cartopy >=0.18
+ - pygmt >=0.7.0
+ - gmt >=6.3.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 37448411
+ timestamp: 1761663449095
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pyshtools-4.13.1-py314h0594fbe_3.conda
+ sha256: aee8af57ff6118e7070ea8dedbec52972bafa26845ec4579d2e839c9ab0eb6ec
+ md5: 35c6ffae59f7ffdf8d7e7de82a86df4a
depends:
- __osx >=10.13
- - libllvm21 21.1.4 h56e7563_0
- - llvm-tools-21 21.1.4 h879f4bc_0
+ - astropy
+ - ducc0
+ - fftw >=3.3.10,<4.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.2.0
+ - liblapack >=3.9.0,<4.0a0
+ - matplotlib-base
+ - numpy >=1.23,<3
+ - pooch
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - requests
+ - scipy
+ - tqdm
+ - xarray
constrains:
- - llvmdev 21.1.4
- - clang 21.1.4
- - clang-tools 21.1.4
- - llvm 21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 88129
- timestamp: 1761079351969
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21.1.4-h855ad52_0.conda
- sha256: d29107e364e4c77390771a754e99a3a7fc99f086b200937d23fe51b972fa0fbe
- md5: 7086d0fc224f1be40deff89a172c042f
+ - cartopy >=0.18
+ - pygmt >=0.7.0
+ - gmt >=6.3.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 37770596
+ timestamp: 1761660335320
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyshtools-4.13.1-py314hff548eb_3.conda
+ sha256: 87442435492c3a8202c4f04ecfdaf74aa97f072d3d88ead108346d7f1b48c1db
+ md5: 96bd04b8a7a66c0779394f830b3a236e
depends:
- __osx >=11.0
- - libllvm21 21.1.4 h8e0c9ce_0
- - llvm-tools-21 21.1.4 h91fd4e7_0
+ - astropy
+ - ducc0
+ - fftw >=3.3.10,<4.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.2.0
+ - liblapack >=3.9.0,<4.0a0
+ - matplotlib-base
+ - numpy >=1.23,<3
+ - pooch
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - requests
+ - scipy
+ - tqdm
+ - xarray
constrains:
- - llvm 21.1.4
- - llvmdev 21.1.4
- - clang 21.1.4
- - clang-tools 21.1.4
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 89084
- timestamp: 1761079364169
-- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21-21.1.4-h879f4bc_0.conda
- sha256: 99d3a4bbe96be5f8c957b1a37c23651b6f0e5e67cc39918213ba63b5c3cfd279
- md5: 3b528c4ffc29ac23bb951dfc7f1980b5
+ - cartopy >=0.18
+ - gmt >=6.3.0
+ - pygmt >=0.7.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 37458943
+ timestamp: 1761660702978
+- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8
+ md5: 461219d1a5bd61342293efa2c0c90eac
depends:
- - __osx >=10.13
- - libcxx >=19
- - libllvm21 21.1.4 h56e7563_0
- - libzlib >=1.3.1,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 19876887
- timestamp: 1761079261452
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-21-21.1.4-h91fd4e7_0.conda
- sha256: 42ef7f816207f04a45546656ffe92e489d2720905ff51b1017d1af81a663629c
- md5: 34d8f863b5e1484a7138320d273cb2f4
+ - __unix
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21085
+ timestamp: 1733217331982
+- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda
+ sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d
+ md5: 499e8e2df95ad3d263bee8d41cc3d475
depends:
- - __osx >=11.0
- - libcxx >=19
- - libllvm21 21.1.4 h8e0c9ce_0
- - libzlib >=1.3.1,<2.0a0
- - zstd >=1.5.7,<1.6.0a0
- license: Apache-2.0 WITH LLVM-exception
- license_family: Apache
- size: 18004280
- timestamp: 1761079233836
-- conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.2-py314hae3bed6_1.conda
- sha256: ff47edd9dc3963ae55e4c9f232424649c14bdb33ce4926e20ddb7d5f7ba3c217
- md5: db968862599da6aa5da94f44fb177353
+ - pygments >=2.7.2
+ - python >=3.10
+ - iniconfig >=1.0.1
+ - packaging >=22
+ - pluggy >=1.5,<2
+ - tomli >=1
+ - colorama >=0.4
+ - exceptiongroup >=1
+ - python
+ constrains:
+ - pytest-faulthandler >=2
+ license: MIT
+ size: 298822
+ timestamp: 1762632428892
+- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.0-h32b2ec7_102_cp314.conda
+ build_number: 102
+ sha256: 76d750045b94fded676323bfd01975a26a474023635735773d0e4d80aaa72518
+ md5: 0a19d2cc6eb15881889b0c6fa7d6a78d
depends:
- __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
- libgcc >=14
- - libxml2
- - libxml2-16 >=2.14.6
- - libxslt >=1.1.43,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - python >=3.14.0rc3,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: BSD-3-Clause and MIT-CMU
- purls:
- - pkg:pypi/lxml?source=hash-mapping
- size: 1613975
- timestamp: 1759294814223
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-6.0.2-py314hc429ed8_1.conda
- sha256: 3a06b92fde58282e42dd035af3dcd9c9b2af953669deea3000a1071452da915f
- md5: ce41b539520dcb7b384563941aedcab3
- depends:
- - libgcc >=14
- - libxml2
- - libxml2-16 >=2.14.6
- - libxslt >=1.1.43,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libmpdec >=4.0.0,<5.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libuuid >=2.41.2,<3.0a0
- libzlib >=1.3.1,<2.0a0
- - python >=3.14.0rc3,<3.15.0a0
- - python >=3.14.0rc3,<3.15.0a0 *_cp314
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.4,<4.0a0
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause and MIT-CMU
- purls:
- - pkg:pypi/lxml?source=hash-mapping
- size: 1550729
- timestamp: 1759294898463
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lxml-6.0.2-py314h5a27059_1.conda
- sha256: 7dc739f1c405df333c6d5a9d832dba95425dc4cbfc66e3eafe53935b20a8fb46
- md5: 8f3676db73c32723aa1a53912798cb84
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - zstd >=1.5.7,<1.6.0a0
+ license: Python-2.0
+ size: 36681389
+ timestamp: 1761176838143
+ python_site_packages_path: lib/python3.14/site-packages
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.14.0-hb06a95a_102_cp314.conda
+ build_number: 102
+ sha256: a930ea81356110d84993527772577276af034d689e7333f937005ee527bd11bf
+ md5: c2bbf19a6b366d492f9137257ad19416
depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-aarch64 >=2.36.1
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
- libgcc >=14
- - libxml2
- - libxml2-16 >=2.14.6
- - libxslt >=1.1.43,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libmpdec >=4.0.0,<5.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libuuid >=2.41.2,<3.0a0
- libzlib >=1.3.1,<2.0a0
- - python >=3.14.0rc3,<3.15.0a0
- - python >=3.14.0rc3,<3.15.0a0 *_cp314
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.4,<4.0a0
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause and MIT-CMU
- purls:
- - pkg:pypi/lxml?source=hash-mapping
- size: 1582964
- timestamp: 1759295035931
-- conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.2-py314h787f955_1.conda
- sha256: 536205d81113279b46e311a22986f87ff51bd88578f7578fa13ed1bb76945e04
- md5: e49450dfabbff1e6b3914c606c1a55cf
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - zstd >=1.5.7,<1.6.0a0
+ license: Python-2.0
+ size: 37128758
+ timestamp: 1761175738259
+ python_site_packages_path: lib/python3.14/site-packages
+- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.0-hf88997e_102_cp314.conda
+ build_number: 102
+ sha256: 2470866eee70e75d6be667aa537424b63f97c397a0a90f05f2bab347b9ed5a51
+ md5: 7917d1205eed3e72366a3397dca8a2af
depends:
- __osx >=10.13
- - libxml2
- - libxml2-16 >=2.14.6
- - libxslt >=1.1.43,<2.0a0
- - libzlib >=1.3.1,<2.0a0
- - python >=3.14.0rc3,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: BSD-3-Clause and MIT-CMU
- purls:
- - pkg:pypi/lxml?source=hash-mapping
- size: 1426338
- timestamp: 1759295059208
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.2-py314he05ef12_1.conda
- sha256: e9dda43cb1def42d3cd757e328a4937f50dc91c9887aa1484f9aea1b46e512bf
- md5: 2411a1560479a02e481ec9272245096f
- depends:
- - __osx >=11.0
- - libxml2
- - libxml2-16 >=2.14.6
- - libxslt >=1.1.43,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libmpdec >=4.0.0,<5.0a0
+ - libsqlite >=3.50.4,<4.0a0
- libzlib >=1.3.1,<2.0a0
- - python >=3.14.0rc3,<3.15.0a0
- - python >=3.14.0rc3,<3.15.0a0 *_cp314
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.4,<4.0a0
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause and MIT-CMU
- purls:
- - pkg:pypi/lxml?source=hash-mapping
- size: 1383585
- timestamp: 1759295250768
-- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
- sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346
- md5: 9de5350a85c4a20c685259b889aa6393
- depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 167055
- timestamp: 1733741040117
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda
- sha256: 67e55058d275beea76c1882399640c37b5be8be4eb39354c94b610928e9a0573
- md5: 6654e411da94011e8fbe004eacb8fe11
- depends:
- - libgcc >=13
- - libstdcxx >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 184953
- timestamp: 1733740984533
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/lz4-c-1.10.0-h2621725_1.conda
- sha256: c496e8a9ee1755ca8099b33234e5410ffe0d6e0c8aa927f4c9b0356502c2b836
- md5: 37dc0f99a7bcd4715a077c94f05f921a
- depends:
- - libgcc >=13
- - libstdcxx >=13
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 201246
- timestamp: 1733741483520
-- conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.10.0-h240833e_1.conda
- sha256: 8da3c9d4b596e481750440c0250a7e18521e7f69a47e1c8415d568c847c08a1c
- md5: d6b9bd7e356abd7e3a633d59b753495a
- depends:
- - __osx >=10.13
- - libcxx >=18
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 159500
- timestamp: 1733741074747
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda
- sha256: 94d3e2a485dab8bdfdd4837880bde3dd0d701e2b97d6134b8806b7c8e69c8652
- md5: 01511afc6cc1909c5303cf31be17b44f
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - zstd >=1.5.7,<1.6.0a0
+ license: Python-2.0
+ size: 14427639
+ timestamp: 1761177864469
+ python_site_packages_path: lib/python3.14/site-packages
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.0-h40d2674_102_cp314.conda
+ build_number: 102
+ sha256: 3ca1da026fe5df8a479d60e1d3ed02d9bc50fcbafd5f125d86abe70d21a34cc7
+ md5: a9ff09231c555da7e30777747318321b
depends:
- __osx >=11.0
- - libcxx >=18
- license: BSD-2-Clause
- license_family: BSD
- purls: []
- size: 148824
- timestamp: 1733741047892
-- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda
- sha256: 7b1da4b5c40385791dbc3cc85ceea9fad5da680a27d5d3cb8bfaa185e304a89e
- md5: 5b5203189eb668f042ac2b0826244964
- depends:
- - mdurl >=0.1,<1
- - python >=3.10
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/markdown-it-py?source=hash-mapping
- size: 64736
- timestamp: 1754951288511
-- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.1-pyhd8ed1ab_0.conda
- sha256: 9d690334de0cd1d22c51bc28420663f4277cfa60d34fa5cad1ce284a13f1d603
- md5: 00e120ce3e40bad7bfc78861ce3c4a25
- depends:
- - python >=3.10
- - traitlets
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/matplotlib-inline?source=compressed-mapping
- size: 15175
- timestamp: 1761214578417
-- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
- sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7
- md5: 592132998493b3ff25fd7479396e8351
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libmpdec >=4.0.0,<5.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.4,<4.0a0
+ - python_abi 3.14.* *_cp314
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - zstd >=1.5.7,<1.6.0a0
+ license: Python-2.0
+ size: 13590581
+ timestamp: 1761177195716
+ python_site_packages_path: lib/python3.14/site-packages
+- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
+ sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
+ md5: 5b8d21249ff20967101ffa321cab24e8
depends:
- python >=3.9
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/mdurl?source=hash-mapping
- size: 14465
- timestamp: 1733255681319
-- conda: https://conda.anaconda.org/conda-forge/noarch/meshio-5.3.5-pyhd8ed1ab_0.conda
- sha256: 8818467a7490dea7876e1c6d112af7c0e326a5a54cd829a384a493a152d8596a
- md5: 2ea6ce24274096bf2df6c8c50f373d5b
+ - six >=1.5
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ size: 233310
+ timestamp: 1751104122689
+- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
+ sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8
+ md5: 23029aae904a2ba587daba708208012f
depends:
- - h5py
- - importlib_metadata
- - netcdf4
- - numpy
- - python >=3.7
- - rich
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/meshio?source=hash-mapping
- size: 383105
- timestamp: 1706720749456
-- conda: https://conda.anaconda.org/conda-forge/noarch/mpi-1.0.1-openmpi.conda
- sha256: e1698675ec83a2139c0b02165f47eaf0701bcab043443d9008fc0f8867b07798
- md5: 78b827d2852c67c68cd5b2c55f31e376
+ - python >=3.9
+ - python
license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 6571
- timestamp: 1727683130230
-- pypi: git+https://github.com/DataAnalyticsEngineering/MSUtils.git#7b1ba38863ca28fc2928a45a8f77941efdde0cee
- name: msutils
- version: 0.1.0
-- conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.9.0-pyhcf101f3_0.conda
- sha256: 34efcfb45aedb7d5d358ea737d348ea5b31c4c0da95ab556360700329f1942d1
- md5: 62c40a82e4357b854a5cac728ada2fef
+ size: 244628
+ timestamp: 1755304154927
+- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
+ sha256: e68c9796fba0825ebc1338ceb94496683ab7d45dcd281b378ec2a56365d3c555
+ md5: d152e423d80848fe95f0f4b43448030e
depends:
- - python >=3.10
- - python
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/narwhals?source=compressed-mapping
- size: 264221
- timestamp: 1760972947172
-- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838
- md5: bbe1963f1e47f594070ffe87cdf612ea
+ - cpython 3.14.0.*
+ - python_abi * *_cp314
+ license: Python-2.0
+ size: 48968
+ timestamp: 1761175555295
+- conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda
+ sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0
+ md5: 88476ae6ebd24f39261e0854ac244f33
depends:
- - jsonschema >=2.6
- - jupyter_core >=4.12,!=5.0.*
- python >=3.9
- - python-fastjsonschema >=2.15
- - traitlets >=5.1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 144160
+ timestamp: 1742745254292
+- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
+ build_number: 8
+ sha256: ad6d2e9ac39751cc0529dd1566a26751a0bf2542adb0c232533d32e176e21db5
+ md5: 0539938c55b6b1a59b560e843ad864a4
+ constrains:
+ - python 3.14.* *_cp314
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/nbformat?source=hash-mapping
- size: 100945
- timestamp: 1733402844974
-- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
- sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
- md5: 47e340acb35de30501a76c7c799c41d7
- depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- license: X11 AND BSD-3-Clause
- purls: []
- size: 891641
- timestamp: 1738195959188
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda
- sha256: 91cfb655a68b0353b2833521dc919188db3d8a7f4c64bea2c6a7557b24747468
- md5: 182afabe009dc78d8b73100255ee6868
- depends:
- - libgcc >=13
- license: X11 AND BSD-3-Clause
- purls: []
- size: 926034
- timestamp: 1738196018799
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.5-h8645e7e_3.conda
- sha256: fe3d7c90f92104825a19a6fdc430b1c86ae981dc488a68f2aabd28daaa0c6649
- md5: 067fcb7ea11d75689d22574783decfd2
- depends:
- - libgcc >=13
- license: X11 AND BSD-3-Clause
- purls: []
- size: 981675
- timestamp: 1738195995596
-- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda
- sha256: ea4a5d27ded18443749aefa49dc79f6356da8506d508b5296f60b8d51e0c4bd9
- md5: ced34dd9929f491ca6dab6a2927aff25
- depends:
- - __osx >=10.13
- license: X11 AND BSD-3-Clause
- purls: []
- size: 822259
- timestamp: 1738196181298
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
- sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733
- md5: 068d497125e4bf8a66bf707254fff5ae
- depends:
- - __osx >=11.0
- license: X11 AND BSD-3-Clause
- purls: []
- size: 797030
- timestamp: 1738196177597
-- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0
- md5: 598fd7d4d0de2455fb74f56063969a97
+ size: 6989
+ timestamp: 1752805904792
+- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0
+ md5: bc8e3267d44011051f2eb14d22fb0960
depends:
- python >=3.9
- license: BSD-2-Clause
- license_family: BSD
- purls:
- - pkg:pypi/nest-asyncio?source=hash-mapping
- size: 11543
- timestamp: 1733325673691
-- conda: https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.7.3-nompi_py314hed328fd_100.conda
- sha256: 81efd0668389cdc7c5bb758baf71f369d81daeb9fad2ae3370b73beb8d535f22
- md5: d5cebea694ca987a64a93464ed7a844e
+ license: MIT
+ license_family: MIT
+ size: 189015
+ timestamp: 1742920947249
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyvista-0.46.4-pyhd8ed1ab_0.conda
+ sha256: cf7342ece36673f8431407d3109357c80e0e152acccdb6e92383bf81f984adf2
+ md5: 89f80194003ce06e6bdf25fba539d9b1
depends:
- - __glibc >=2.17,<3.0.a0
- - certifi
- - cftime
- - hdf5 >=1.14.6,<1.14.7.0a0
- - libgcc >=14
- - libnetcdf >=4.9.3,<4.9.4.0a0
- - libzlib >=1.3.1,<2.0a0
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ - matplotlib-base >=3.0.1
+ - numpy
+ - pillow
+ - pooch
+ - python >=3.10
+ - scooby >=0.5.1
+ - typing-extensions
+ - vtk-base !=9.4.0,!=9.4.1,<9.6.0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/netcdf4?source=hash-mapping
- size: 1119160
- timestamp: 1760540716792
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/netcdf4-1.7.3-nompi_py314h35dd797_100.conda
- sha256: ee1f42606827365f4eaa11488f4e126f4920168fc3fba96a5c475396aef22510
- md5: c592ec3f8209e621004928b344c1b02b
+ size: 2140536
+ timestamp: 1761848152147
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.9.0-py314hc02f841_2.conda
+ sha256: df4a7c8da55c64443ee0d23199e77f77e4d45a34bf2565ffcef1fb2a57ccca6b
+ md5: 5be92985870940eac3f3b8cda57002cc
depends:
- - certifi
- - cftime
- - hdf5 >=1.14.6,<1.14.7.0a0
+ - __glibc >=2.17,<3.0.a0
- libgcc >=14
- - libnetcdf >=4.9.3,<4.9.4.0a0
- - libzlib >=1.3.1,<2.0a0
- numpy >=1.23,<3
+ - numpy >=1.25,<3
- python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/netcdf4?source=hash-mapping
- size: 1077451
- timestamp: 1760541927381
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/netcdf4-1.7.3-nompi_py314h7e16b28_100.conda
- sha256: 9ac3eaf426d234238c2a23c3f1619f27e5225f91dcc0463a896e7bfd68c3d2a8
- md5: 19526495b02237fce6309f7246d22253
+ size: 3694152
+ timestamp: 1762595072736
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pywavelets-1.9.0-py314hc2f71db_2.conda
+ sha256: fcdea456112e03e508d3d4cbdcc5fde9f0b7726c227a92a2d6da258a27a1e76a
+ md5: 68d84efaebfb3f8173103f94731e9eb7
depends:
- - certifi
- - cftime
- - hdf5 >=1.14.6,<1.14.7.0a0
- libgcc >=14
- - libnetcdf >=4.9.3,<4.9.4.0a0
- - libzlib >=1.3.1,<2.0a0
- numpy >=1.23,<3
+ - numpy >=1.25,<3
- python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/netcdf4?source=hash-mapping
- size: 1087714
- timestamp: 1760542922701
-- conda: https://conda.anaconda.org/conda-forge/osx-64/netcdf4-1.7.3-nompi_py314hf60e252_100.conda
- sha256: e7b462ccdb9085d5d864eee2f4c4312dcb968d18de7a358da7421bd060e60d7d
- md5: cb8267fd6b2719b8ac44fd810acbcc1c
+ size: 3671073
+ timestamp: 1762595156592
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.9.0-py314hd1ec8a2_2.conda
+ sha256: f01d0d8055484fc963b4dacb3879d074683fd38decc8fc72d27b914a150a3496
+ md5: a097e2c4ee683d8fa5466510d5e323df
depends:
- __osx >=10.13
- - certifi
- - cftime
- - hdf5 >=1.14.6,<1.14.7.0a0
- - libnetcdf >=4.9.3,<4.9.4.0a0
- - libzlib >=1.3.1,<2.0a0
- numpy >=1.23,<3
+ - numpy >=1.25,<3
- python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/netcdf4?source=hash-mapping
- size: 1019213
- timestamp: 1760540858549
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf4-1.7.3-nompi_py314ha229517_100.conda
- sha256: feaf70a8a04a77898b6c00f494d2ea1a1a1a5f18b09cd337890ed0c023eb3aa9
- md5: c2e349b932ebd08123faef6e9ce2f2d7
+ size: 3619744
+ timestamp: 1762595247952
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.9.0-py314hdcf55e8_2.conda
+ sha256: 462afc9a600603bb0128ebbb23e0628bef5feb75b49f95f47bd8a7c489016851
+ md5: cee9ba4ac48fe6405f6c3b098f441129
depends:
- - __osx >=11.0
- - certifi
- - cftime
- - hdf5 >=1.14.6,<1.14.7.0a0
- - libnetcdf >=4.9.3,<4.9.4.0a0
- - libzlib >=1.3.1,<2.0a0
- - numpy >=1.23,<3
- - python >=3.14,<3.15.0a0
- - python >=3.14,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/netcdf4?source=hash-mapping
- size: 1007976
- timestamp: 1760542005639
-- conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
- sha256: fd2cbd8dfc006c72f45843672664a8e4b99b2f8137654eaae8c3d46dca776f63
- md5: 16c2a0e9c4a166e53632cfca4f68d020
- constrains:
- - nlohmann_json-abi ==3.12.0
- license: MIT
- license_family: MIT
- size: 136216
- timestamp: 1758194284857
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h7ac5ae9_1.conda
- sha256: 03b4ffbcd3c20276f6fd9743e2d7fc8c4bed2006ac4481d90ee8f2a5d74acd5d
- md5: 6cbb2594cea5f2cc2907170655852ba9
- constrains:
- - nlohmann_json-abi ==3.12.0
- license: MIT
- license_family: MIT
- size: 136931
- timestamp: 1758194316834
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/nlohmann_json-3.12.0-hc0fcfcc_1.conda
- sha256: 06b420e345a5fef898eccb26b67bb8f2d9e1ae284d980c328a038f2f50f7f038
- md5: 5436a506fb046371a8be49b9daff05dc
- constrains:
- - nlohmann_json-abi ==3.12.0
- license: MIT
- license_family: MIT
- size: 136945
- timestamp: 1758194275970
-- conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.12.0-h53ec75d_1.conda
- sha256: 186edb5fe84bddf12b5593377a527542f6ba42486ca5f49cd9dfeda378fb0fbe
- md5: 5e9bee5fa11d91e1621e477c3cb9b9ba
- constrains:
- - nlohmann_json-abi ==3.12.0
+ - __osx >=11.0
+ - numpy >=1.23,<3
+ - numpy >=1.25,<3
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
license: MIT
- license_family: MIT
- size: 136667
- timestamp: 1758194361656
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.12.0-h248ca61_1.conda
- sha256: f6aa432b073778c3970d3115d291267f32ae85adfa99d80ff1abdf0b806aa249
- md5: 3ba9d0c21af2150cb92b2ab8bdad3090
- constrains:
- - nlohmann_json-abi ==3.12.0
+ size: 3618379
+ timestamp: 1762595928794
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
+ sha256: 828af2fd7bb66afc9ab1c564c2046be391aaf66c0215f05afaf6d7a9a270fe2a
+ md5: b12f41c0d7fb5ab81709fcc86579688f
+ depends:
+ - python >=3.10.*
+ - yaml
+ track_features:
+ - pyyaml_no_compile
license: MIT
license_family: MIT
- size: 136912
- timestamp: 1758194464430
-- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_1.conda
- sha256: 3636eec0e60466a00069b47ce94b6d88b01419b6577d8e393da44bb5bc8d3468
- md5: 7ba3f09fceae6a120d664217e58fe686
- depends:
- - python >=3.9
- - setuptools
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/nodeenv?source=hash-mapping
- size: 34574
- timestamp: 1734112236147
-- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.3.4-py314h2b28147_0.conda
- sha256: c440f429b2e217cb3afbda92eb65a8a768aaf1be90657a133cf02871caa89fc4
- md5: 1a829816158b0129acfe809f2971c14e
+ size: 45223
+ timestamp: 1758891992558
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hfb55c3c_0.conda
+ noarch: python
+ sha256: a00a41b66c12d9c60e66b391e9a4832b7e28743348cf4b48b410b91927cd7819
+ md5: 3399d43f564c905250c1aea268ebb935
depends:
- python
- - libgcc >=14
- __glibc >=2.17,<3.0.a0
- libstdcxx >=14
- libgcc >=14
- - libblas >=3.9.0,<4.0a0
- - liblapack >=3.9.0,<4.0a0
- - python_abi 3.14.* *_cp314
- - libcblas >=3.9.0,<4.0a0
- constrains:
- - numpy-base <0a0
+ - _python_abi3_support 1.*
+ - cpython >=3.12
+ - zeromq >=4.3.5,<4.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/numpy?source=hash-mapping
- size: 8952104
- timestamp: 1761162099395
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-2.3.4-py314haac167e_0.conda
- sha256: a88d2da6f4aeffc9755c4948fc107516a20d7a1acfc4f115400e392a6e5f9ad7
- md5: b032b59262e3ee3cc8452fcb36ec26cb
+ size: 212218
+ timestamp: 1757387023399
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-27.1.0-py312h4552c38_0.conda
+ noarch: python
+ sha256: 54e4ce37719ae513c199b8ab06ca89f8c4a0945b0c51d60ec952f5866ae1687e
+ md5: c9aadf2edd39b56ad34dc5f775626d5b
depends:
- python
- - libgcc >=14
- libstdcxx >=14
- libgcc >=14
- - python 3.14.* *_cp314
- - libblas >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
- - python_abi 3.14.* *_cp314
- - liblapack >=3.9.0,<4.0a0
- constrains:
- - numpy-base <0a0
+ - zeromq >=4.3.5,<4.4.0a0
+ - _python_abi3_support 1.*
+ - cpython >=3.12
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/numpy?source=compressed-mapping
- size: 7782775
- timestamp: 1761162096606
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/numpy-2.3.4-py314h66217d6_0.conda
- sha256: 2b366b80b863db0f12b2aa87e5c26e2e042a69436fe5a8c0bd3635ed66c435d5
- md5: 038268547290c772d6fd8e83c67359ea
+ size: 213723
+ timestamp: 1757387032833
+- conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312hb7d603e_0.conda
+ noarch: python
+ sha256: 4e052fa3c4ed319e7bcc441fca09dee4ee4006ac6eb3d036a8d683fceda9304b
+ md5: 81511d0be03be793c622c408c909d6f9
depends:
- python
- - libstdcxx >=14
- - libgcc >=14
- - python 3.14.* *_cp314
- - libgcc >=14
- - libblas >=3.9.0,<4.0a0
- - python_abi 3.14.* *_cp314
- - libcblas >=3.9.0,<4.0a0
- - liblapack >=3.9.0,<4.0a0
- constrains:
- - numpy-base <0a0
+ - __osx >=10.13
+ - libcxx >=19
+ - _python_abi3_support 1.*
+ - cpython >=3.12
+ - zeromq >=4.3.5,<4.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/numpy?source=hash-mapping
- size: 8211201
- timestamp: 1761162029272
-- conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.3.4-py314hf08249b_0.conda
- sha256: 6b9c236e59a4494b290807c17f0f631d8836cb7c1a8c5ddda9c924cd8d13e9e7
- md5: 997a0a22d754b95696dfdb055e1075ba
+ size: 191697
+ timestamp: 1757387104297
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312hd65ceae_0.conda
+ noarch: python
+ sha256: ef33812c71eccf62ea171906c3e7fc1c8921f31e9cc1fbc3f079f3f074702061
+ md5: bbd22b0f0454a5972f68a5f200643050
depends:
- python
+ - __osx >=11.0
- libcxx >=19
- - __osx >=10.13
- - liblapack >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
- - libblas >=3.9.0,<4.0a0
- - python_abi 3.14.* *_cp314
- constrains:
- - numpy-base <0a0
+ - _python_abi3_support 1.*
+ - cpython >=3.12
+ - zeromq >=4.3.5,<4.4.0a0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/numpy?source=hash-mapping
- size: 8098251
- timestamp: 1761161570315
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.3.4-py314h5b5928d_0.conda
- sha256: 9e28281e67a94e4efb25617247cfcc171b30277a3407cd75c8f64a18275eed60
- md5: b61ad142f0d5978e98a4bb67cd5a4e22
+ size: 191115
+ timestamp: 1757387128258
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc
+ md5: 353823361b1d27eb3960efb076dfcaf6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LicenseRef-Qhull
+ size: 552937
+ timestamp: 1720813982144
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda
+ sha256: 49f777bdf3c5e030a8c7b24c58cdfe9486b51d6ae0001841079a3228bdf9fb51
+ md5: bb138086d938e2b64f5f364945793ebf
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LicenseRef-Qhull
+ size: 554571
+ timestamp: 1720813941183
+- conda: https://conda.anaconda.org/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda
+ sha256: 79d804fa6af9c750e8b09482559814ae18cd8df549ecb80a4873537a5a31e06e
+ md5: dd1ea9ff27c93db7c01a7b7656bd4ad4
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: LicenseRef-Qhull
+ size: 528122
+ timestamp: 1720814002588
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda
+ sha256: 873ac689484262a51fd79bc6103c1a1bedbf524924d7f0088fb80703042805e4
+ md5: 6483b1f59526e05d7d894e466b5b6924
depends:
- - python
- - python 3.14.* *_cp314
- - libcxx >=19
- __osx >=11.0
- - liblapack >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
- - python_abi 3.14.* *_cp314
- - libblas >=3.9.0,<4.0a0
- constrains:
- - numpy-base <0a0
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/numpy?source=compressed-mapping
- size: 6818770
- timestamp: 1761161593428
-- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-5.0.8-h2fe1745_108.conda
- sha256: accf4b2776cffb2ce0fc05ac1a32e1a77bf058e4e76dd8e1684ca5fd440dc574
- md5: 9bebb2e8ed891b184fdd2eec2d36709e
+ - libcxx >=16
+ license: LicenseRef-Qhull
+ size: 516376
+ timestamp: 1720814307311
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.9.3-h5c1c036_1.conda
+ sha256: 51537408ce1493d267b375b33ec02a060d77c4e00c7bef5e2e1c6724e08a23e3
+ md5: 762af6d08fdfa7a45346b1466740bacd
depends:
- - mpi 1.0.* openmpi
- __glibc >=2.17,<3.0.a0
- - libgfortran5 >=14.3.0
- - libgfortran
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - dbus >=1.16.2,<2.0a0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - harfbuzz >=12.1.0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp21.1 >=21.1.4,<21.2.0a0
+ - libclang13 >=21.1.4
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.125,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
- libgcc >=14
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.86.0,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm21 >=21.1.4,<21.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libpq >=18.0,<19.0a0
+ - libsqlite >=3.50.4,<4.0a0
- libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
+ - libvulkan-loader >=1.4.328.1,<2.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.12.2,<2.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ - wayland >=1.24.0,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 6.9.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 54785664
+ timestamp: 1761308850008
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qt6-main-6.9.3-h224e339_1.conda
+ sha256: 99819c9516821aff3aa973834d85edc84bdbae80b25baea2a33faaf91d6bae23
+ md5: ffcc8b87dd0a6315f231e690a7d7b6f2
+ depends:
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - dbus >=1.16.2,<2.0a0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - harfbuzz >=12.1.0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp21.1 >=21.1.4,<21.2.0a0
+ - libclang13 >=21.1.4
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.125,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
- libgcc >=14
- - libfabric
- - libfabric1 >=1.14.0
- - ucc >=1.5.1,<2.0a0
- - libhwloc >=2.12.1,<2.12.2.0a0
- - libnl >=3.11.0,<4.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.86.0,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm21 >=21.1.4,<21.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libpq >=18.0,<19.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
+ - libvulkan-loader >=1.4.328.1,<2.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.12.2,<2.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
- libzlib >=1.3.1,<2.0a0
- - libevent >=2.1.12,<2.1.13.0a0
- - libpmix >=5.0.8,<6.0a0
- - ucx >=1.19.0,<1.20.0a0
+ - openssl >=3.5.4,<4.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ - wayland >=1.24.0,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
constrains:
- - __cuda >=12.0
- - cuda-version >=12.0
- - libprrte ==0.0.0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 3919723
- timestamp: 1758650927798
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-5.0.8-h188d324_108.conda
- sha256: 8a0c33c06f89341723e116fc32c9054e7679f58061760558bd49e21462809f87
- md5: b14270b6c9f9a303ae631c7548e73f64
+ - qt 6.9.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 57313719
+ timestamp: 1761310229955
+- conda: https://conda.anaconda.org/conda-forge/osx-64/qt6-main-6.9.3-hac9256e_1.conda
+ sha256: fd16afe100c4ffc3de9d022b3f842444b9a8c439b8bb9ca279c001fa45c8f300
+ md5: 5ff973c17fe891de8bede9cb964284b8
depends:
- - mpi 1.0.* openmpi
- - libstdcxx >=14
+ - __osx >=11.0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - harfbuzz >=12.1.0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp19.1 >=19.1.7,<19.2.0a0
+ - libclang13 >=19.1.7
+ - libcxx >=19
+ - libglib >=2.86.0,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm19 >=19.1.7,<19.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libpq >=18.0,<19.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 6.9.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 48114929
+ timestamp: 1761310910590
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/qt6-main-6.9.3-hb266e41_0.conda
+ sha256: d00722613930f7b048417dcd8335b7525d105350376976f60c734385ad11e854
+ md5: 9c4c7c477173f43b4239d85bcf1df658
+ depends:
+ - __osx >=11.0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - harfbuzz >=12.0.0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp19.1 >=19.1.7,<19.2.0a0
+ - libclang13 >=19.1.7
+ - libcxx >=19
+ - libglib >=2.86.0,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm19 >=19.1.7,<19.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libpq >=18.0,<19.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.3,<4.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 6.9.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 45982348
+ timestamp: 1759266212707
+- conda: https://conda.anaconda.org/conda-forge/linux-64/quaternion-2024.0.12-py314hc02f841_0.conda
+ sha256: 95a2830d4310bcba02548d0608496ff09475df24dfb21940cb886a943a02eb0f
+ md5: 4dd31585a189927f2876dd3f657e472d
+ depends:
+ - __glibc >=2.17,<3.0.a0
- libgcc >=14
- - libgfortran5 >=14.3.0
- - libgfortran
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 101725
+ timestamp: 1757403422287
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/quaternion-2024.0.12-py314hc2f71db_0.conda
+ sha256: 932e358560775c96c8afc49536a8984b6592a666b436d3c86dffe4e33aa8e748
+ md5: 3f0163e74748e13b4ed7c14e165778d0
+ depends:
- libgcc >=14
- - ucc >=1.5.1,<2.0a0
- - ucx >=1.19.0,<1.20.0a0
- - libevent >=2.1.12,<2.1.13.0a0
- - libzlib >=1.3.1,<2.0a0
- - libnl >=3.11.0,<4.0a0
- - libpmix >=5.0.8,<6.0a0
- - libhwloc >=2.12.1,<2.12.2.0a0
- - libfabric
- - libfabric1 >=1.14.0
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 98487
+ timestamp: 1757403442282
+- conda: https://conda.anaconda.org/conda-forge/osx-64/quaternion-2024.0.12-py314hd1ec8a2_0.conda
+ sha256: dc657cd4b300cf792c9df8be3181d42e30d6620649571123da19722eaca0ff4e
+ md5: de6b9d846cabe6f6676367d789369c0e
+ depends:
+ - __osx >=10.13
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 86473
+ timestamp: 1757403542480
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/quaternion-2024.0.12-py314hdcf55e8_0.conda
+ sha256: 28c5bc5e37d92504f09859814ff6a50e79dd1601512a08efea680fddbbe1c0cc
+ md5: 352570793661ea5f44bab89149d0e693
+ depends:
+ - __osx >=11.0
+ - numpy >=1.23,<3
+ - python >=3.14.0rc2,<3.15.0a0
+ - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 79479
+ timestamp: 1757403676433
+- conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4
+ md5: 2c42649888aac645608191ffdc80d13a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - __cuda >=12.0
- - cuda-version >=12.0
- - libprrte ==0.0.0
- license: BSD-3-Clause
+ - __glibc >=2.17
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 4136904
- timestamp: 1758650937372
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openmpi-5.0.8-h53e8d90_108.conda
- sha256: 7f308d6cade54ffcb605a2e77b5b6b1128ce75cf86675fb14db78e2e3b98f9f1
- md5: 6f1f0d6b4c08e053620e286754ea2f98
+ size: 5176669
+ timestamp: 1746622023242
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda
+ sha256: f1631eb0be7391b0f470fdd7c902741551eb00381efd52b234ceadfccf34588b
+ md5: 0a6e034273782e6e863d46f1d2a5078b
depends:
- - mpi 1.0.* openmpi
- - libgfortran5 >=12.4.0
- - libgfortran
- - libgcc >=12
- - libstdcxx >=12
- - libgcc >=12
- - libhwloc >=2.12.1,<2.12.2.0a0
- - libnl >=3.11.0,<4.0a0
- - libevent >=2.1.12,<2.1.13.0a0
- - libpmix >=5.0.8,<6.0a0
- - libzlib >=1.3.1,<2.0a0
- - libfabric
- - libfabric1 >=1.14.0
+ - libgcc >=13
constrains:
- - __cuda >=12.0
- - cuda-version >=12.0
- - libprrte ==0.0.0
- license: BSD-3-Clause
+ - __glibc >=2.17
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 3629259
- timestamp: 1758650963171
-- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-5.0.8-h0c582a8_108.conda
- sha256: 88e5e4265aa9a83cf47cb80f609de7414d3755cc2f75b34928fa2a3eaf078697
- md5: 6844501e4a5a7b6676b42119e700735b
+ size: 4822159
+ timestamp: 1746621943955
+- conda: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.7.1-h371c88c_3.conda
+ sha256: d86b9631d6237f5a62957f9461d321d9bd2fef0807fb60de823b8dea2028501b
+ md5: 30e2344bbe29f60bb535ec0bfff31008
depends:
- - mpi 1.0.* openmpi
- - libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- __osx >=10.13
- - libfabric
- - libfabric1 >=1.14.0
- - libhwloc >=2.12.1,<2.12.2.0a0
- - libpmix >=5.0.8,<6.0a0
- - libevent >=2.1.12,<2.1.13.0a0
- - libzlib >=1.3.1,<2.0a0
constrains:
- - libprrte ==0.0.0
- license: BSD-3-Clause
+ - __osx >=10.13
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 2850818
- timestamp: 1758651107727
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-5.0.8-h65ea042_108.conda
- sha256: 43ab65ae9dfacb53d3413d5d6e646eb74cfe2d223fe4f5cea48bd9a06f16fafc
- md5: 4eb169999f717b59ac53718f7f844d4d
+ size: 1093718
+ timestamp: 1746622590144
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda
+ sha256: 65f862b2b31ef2b557990a82015cbd41e5a66041c2f79b4451dd14b4595d4c04
+ md5: 7b37f30516100b86ea522350c8cab44c
depends:
- - mpi 1.0.* openmpi
- - libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- __osx >=11.0
- - libhwloc >=2.12.1,<2.12.2.0a0
- - libzlib >=1.3.1,<2.0a0
- - libfabric
- - libfabric1 >=1.14.0
- - libevent >=2.1.12,<2.1.13.0a0
- - libpmix >=5.0.8,<6.0a0
constrains:
- - libprrte ==0.0.0
- license: BSD-3-Clause
+ - __osx >=11.0
+ license: BSD-2-Clause
license_family: BSD
- purls: []
- size: 2585702
- timestamp: 1758651049845
-- conda: https://conda.anaconda.org/conda-forge/linux-64/openmpi-mpicxx-5.0.8-h62726db_108.conda
- sha256: 6dbb4313991a680969b646cd9800ee16da888dbbf458423abe7f3f78c1bcd6fe
- md5: 599131353ff0fad2825aeee1e7c121bf
+ size: 856271
+ timestamp: 1746622200646
+- conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-60.0-hecca717_0.conda
+ sha256: 5c09b833b698ecd19da14f5ff903063cf174382d6b32c86166984a93d427d681
+ md5: fe7412835a65cd99eacf3afbb124c7ac
depends:
- - openmpi ==5.0.8 h2fe1745_108
- - gxx_linux-64 >=14
- __glibc >=2.17,<3.0.a0
- license: BSD-3-Clause
+ - libgcc >=14
+ - libnl >=3.11.0,<4.0a0
+ - libstdcxx >=14
+ - libsystemd0 >=257.9
+ - libudev1 >=257.9
+ license: Linux-OpenIB
license_family: BSD
- size: 12776
- timestamp: 1758650927798
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-mpicxx-5.0.8-hc2320a1_108.conda
- sha256: efe211c39f509292121bead396e22ae8ca9070e75ae4ed1c8844bed0f4874b59
- md5: 56e24179db0bb2a4bb9e73a2aea63586
+ size: 1244282
+ timestamp: 1761557737114
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-60.0-he839754_0.conda
+ sha256: c6ebff176e112940a7a9f269b671a51bc83708e6846fa0d7be451b74e18b9b4b
+ md5: 9e7498e2faf70daf30bd982c50038ffc
depends:
- - openmpi ==5.0.8 h188d324_108
- - gxx_linux-aarch64 >=14
- license: BSD-3-Clause
+ - libgcc >=14
+ - libnl >=3.11.0,<4.0a0
+ - libstdcxx >=14
+ - libsystemd0 >=257.9
+ - libudev1 >=257.9
+ license: Linux-OpenIB
license_family: BSD
- size: 12731
- timestamp: 1758650937372
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openmpi-mpicxx-5.0.8-ha335248_108.conda
- sha256: b83cd2dbc1f35e0dd72d3123b9d4811d5fc0d8cb6841b7ddda6d86b59d2be16d
- md5: cf98fe3095b185328b14d135578db104
+ size: 1313626
+ timestamp: 1761557755128
+- conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2025.11.05-h5301d42_0.conda
+ sha256: 2f225ddf4a274743045aded48053af65c31721e797a45beed6774fdc783febfb
+ md5: 0227d04521bc3d28c7995c7e1f99a721
depends:
- - openmpi ==5.0.8 h53e8d90_108
- - gxx_linux-ppc64le >=12
+ - libre2-11 2025.11.05 h7b12aa8_0
license: BSD-3-Clause
license_family: BSD
- size: 12742
- timestamp: 1758650963171
-- conda: https://conda.anaconda.org/conda-forge/osx-64/openmpi-mpicxx-5.0.8-heb29b40_108.conda
- sha256: 6015a53cc510db3aab070b793286863ad890e89fc98da5ce1a2cf989cdae3ed1
- md5: 961776eb33a02a3e159c9efe1662b2b5
+ size: 27316
+ timestamp: 1762397780316
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2025.11.05-he0da282_0.conda
+ sha256: 59f085857a708fce57ca616828c04cb2d71e12e1fa92061e6ff1c3153db21432
+ md5: 9ce2f3497f09b86aedada51b8214c22c
depends:
- - openmpi ==5.0.8 h0c582a8_108
- - clangxx_osx-64 >=19
- - __osx >=10.13
+ - libre2-11 2025.11.05 h6983b43_0
license: BSD-3-Clause
license_family: BSD
- size: 12492
- timestamp: 1758651107728
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-mpicxx-5.0.8-h8e08746_108.conda
- sha256: 4a2f70f22f1cd94ee11d2ce8eebdd476d78d64536697334140b8321dd343b88e
- md5: 8843fe06fe5a5a8257cd0c2f1cc19c0e
+ size: 27422
+ timestamp: 1762397651208
+- conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2025.11.05-h7df6414_0.conda
+ sha256: cd892b6b571fc6aaf9132a859e5ef0fae9e9ff980337ce7284798fa1d24bee5d
+ md5: 13dc8eedbaa30b753546e3d716f51816
depends:
- - openmpi ==5.0.8 h65ea042_108
- - clangxx_osx-arm64 >=19
- - __osx >=11.0
+ - libre2-11 2025.11.05 h554ac88_0
license: BSD-3-Clause
license_family: BSD
- size: 12481
- timestamp: 1758651049846
-- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda
- sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549
- md5: 14edad12b59ccbfa3910d42c72adc2a0
+ size: 27381
+ timestamp: 1762398153069
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2025.11.05-h64b956e_0.conda
+ sha256: 29c4bceb6b4530bac6820c30ba5a2f53fd26ed3e7003831ecf394e915b975fbc
+ md5: 1b35e663ed321840af65e7c5cde419f2
depends:
- - __glibc >=2.17,<3.0.a0
- - ca-certificates
- - libgcc >=14
- license: Apache-2.0
- license_family: Apache
- purls: []
- size: 3119624
- timestamp: 1759324353651
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.5.4-h8e36d6e_0.conda
- sha256: a24b318733c98903e2689adc7ef73448e27cbb10806852032c023f0ea4446fc5
- md5: 9303e8887afe539f78517951ce25cd13
+ - libre2-11 2025.11.05 h91c62da_0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27422
+ timestamp: 1762398340843
+- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c
+ md5: 283b96675859b20a825f8fa30f311446
depends:
- - ca-certificates
- - libgcc >=14
- license: Apache-2.0
- license_family: Apache
- purls: []
- size: 3644584
- timestamp: 1759326000128
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.5.4-hb9a03e6_0.conda
- sha256: 839ca867433fe29e5829d34d19be90bed7104519b1ab465225fa16f2f81f18d5
- md5: 8603a6902ad51b0d5f68ac2704e4606c
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 282480
+ timestamp: 1740379431762
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda
+ sha256: 54bed3a3041befaa9f5acde4a37b1a02f44705b7796689574bcf9d7beaad2959
+ md5: c0f08fc2737967edde1a272d4bf41ed9
depends:
- - ca-certificates
- - libgcc >=14
- license: Apache-2.0
- license_family: Apache
- purls: []
- size: 3318677
- timestamp: 1759326674464
-- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda
- sha256: 3ce8467773b2472b2919412fd936413f05a9b10c42e52c27bbddc923ef5da78a
- md5: 075eaad78f96bbf5835952afbe44466e
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 291806
+ timestamp: 1740380591358
+- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda
+ sha256: 53017e80453c4c1d97aaf78369040418dea14cf8f46a2fa999f31bd70b36c877
+ md5: 342570f8e02f2f022147a7f841475784
depends:
- - __osx >=10.13
- - ca-certificates
- license: Apache-2.0
- license_family: Apache
- purls: []
- size: 2747108
- timestamp: 1759326402264
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.4-h5503f6c_0.conda
- sha256: f0512629f9589392c2fb9733d11e753d0eab8fc7602f96e4d7f3bd95c783eb07
- md5: 71118318f37f717eefe55841adb172fd
+ - ncurses >=6.5,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 256712
+ timestamp: 1740379577668
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
+ sha256: 7db04684d3904f6151eff8673270922d31da1eea7fa73254d01c437f49702e34
+ md5: 63ef3f6e6d6d5c589e64f11263dc5676
depends:
- - __osx >=11.0
- - ca-certificates
- license: Apache-2.0
- license_family: Apache
- purls: []
- size: 3067808
- timestamp: 1759324763146
-- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
- sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991
- md5: 58335b26c38bf4a20f399384c33cbcf9
+ - ncurses >=6.5,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 252359
+ timestamp: 1740379663071
+- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
+ sha256: 0577eedfb347ff94d0f2fa6c052c502989b028216996b45c7f21236f25864414
+ md5: 870293df500ca7e18bedefa5838a22ab
depends:
- - python >=3.8
+ - attrs >=22.2.0
+ - python >=3.10
+ - rpds-py >=0.7.0
+ - typing_extensions >=4.4.0
- python
+ license: MIT
+ license_family: MIT
+ size: 51788
+ timestamp: 1760379115194
+- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
+ sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b
+ md5: db0c6b99149880c8ba515cf4abe93ee4
+ depends:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.9
+ - urllib3 >=1.21.1,<3
+ constrains:
+ - chardet >=3.0.2,<6
license: Apache-2.0
license_family: APACHE
- purls:
- - pkg:pypi/packaging?source=hash-mapping
- size: 62477
- timestamp: 1745345660407
-- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
- sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f
- md5: a110716cdb11cf51482ff4000dc253d7
+ size: 59263
+ timestamp: 1755614348400
+- conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ sha256: d5c73079c1dd2c2a313c3bfd81c73dbd066b7eb08d213778c8bff520091ae894
+ md5: c1c9b02933fdb2cfb791d936c20e887e
depends:
- - python >=3.10
- - python
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/parso?source=hash-mapping
- size: 81562
- timestamp: 1755974222274
-- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a
- md5: d0d408b1f18883a944376da5cf8101ea
+ size: 193775
+ timestamp: 1748644872902
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.6-h86ecc28_1.conda
+ sha256: 0fe6f40213f2d8af4fcb7388eeb782a4e496c8bab32c189c3a34b37e8004e5a4
+ md5: 745d02c0c22ea2f28fbda2cb5dbec189
depends:
- - ptyprocess >=0.5
- - python >=3.9
- license: ISC
- purls:
- - pkg:pypi/pexpect?source=hash-mapping
- size: 53561
- timestamp: 1733302019362
-- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
- sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b
- md5: 11a9d1d09a3615fc07c3faf79bc0b943
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 207475
+ timestamp: 1748644952027
+- conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.6-h6e16a3a_1.conda
+ sha256: 65c946fc5a9bb71772a7ac9bad64ff08ac07f7d5311306c2dcc1647157b96706
+ md5: d0fcaaeff83dd4b6fb035c2f36df198b
depends:
- - python >=3.9
+ - __osx >=10.13
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/pickleshare?source=hash-mapping
- size: 11748
- timestamp: 1733327448200
-- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda
- sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888
- md5: 5c7a868f8241e64e1cf5fdf4962f23e2
+ size: 185180
+ timestamp: 1748644989546
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.6-h5505292_1.conda
+ sha256: f4957c05f4fbcd99577de8838ca4b5b1ae4b400a44be647a0159c14f85b9bfc0
+ md5: 029e812c8ae4e0d4cf6ff4f7d8dc9366
depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 185448
+ timestamp: 1748645057503
+- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
+ sha256: edfb44d0b6468a8dfced728534c755101f06f1a9870a7ad329ec51389f16b086
+ md5: a247579d8a59931091b16a1e932bbed6
+ depends:
+ - markdown-it-py >=2.2.0
+ - pygments >=2.13.0,<3.0.0
- python >=3.10
+ - typing_extensions >=4.0.0,<5.0.0
- python
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/platformdirs?source=hash-mapping
- size: 23625
- timestamp: 1759953252315
-- conda: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.1-pyhd8ed1ab_0.conda
- sha256: 077f4a0ebf4d0408a9cd04c6e41b4d0f6bbc2daa5ac62124df0dc6c1c057ed91
- md5: 673da098d6dc0d6d75780a3d3c46034a
+ size: 200840
+ timestamp: 1760026188268
+- conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.28.0-py314h2e6c369_2.conda
+ sha256: 4648654864b405d4dd730a2becefc900f06dbfa4719d4770aec16263a0bbc81c
+ md5: 6a075de4c9807cee756e0f199012eee2
depends:
- - narwhals >=1.15.1
- - packaging
- - python >=3.10
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
constrains:
- - ipywidgets >=7.6
+ - __glibc >=2.17
+ license: MIT
+ size: 372041
+ timestamp: 1762984689139
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.28.0-py314h02b7a91_2.conda
+ sha256: 0f8e20b3d0d1706b219e8149177323821a6017a332287d1090a7e955cc847bc0
+ md5: d76540edf1dc89d3c1c0f1e875f0ab48
+ depends:
+ - python
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - __glibc >=2.17
license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/plotly?source=hash-mapping
- size: 5227137
- timestamp: 1759457672006
-- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
- sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc
- md5: 7da7ccd349dbf6487a7778579d2bb971
+ size: 372508
+ timestamp: 1762984796293
+- conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.28.0-py314ha7b6dee_2.conda
+ sha256: ccecc1b0a20a0e4d65131543eba83c903b8ca3fc6d73bf9980eeceb4b8c6e031
+ md5: e2ef3f0dabb4bcfd88478b18550aad50
depends:
- - python >=3.9
+ - python
+ - __osx >=10.13
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - __osx >=10.13
license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pluggy?source=hash-mapping
- size: 24246
- timestamp: 1747339794916
-- conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.3.0-pyha770c72_0.conda
- sha256: 66b6d429ab2201abaa7282af06b17f7631dcaafbc5aff112922b48544514b80a
- md5: bc6c44af2a9e6067dd7e949ef10cdfba
+ size: 358821
+ timestamp: 1762984770801
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.28.0-py314haad56a0_2.conda
+ sha256: 795d7ab99ed4534f17a940dadd685d1865879abcdd8557f41f59109eb4f136a7
+ md5: 551508d2ec0cb360ae5cd98511d4b6d7
depends:
- - cfgv >=2.0.0
- - identify >=1.0.0
- - nodeenv >=0.11.1
- - python >=3.9
- - pyyaml >=5.1
- - virtualenv >=20.10.0
+ - python
+ - __osx >=11.0
+ - python 3.14.* *_cp314
+ - python_abi 3.14.* *_cp314
+ constrains:
+ - __osx >=11.0
license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pre-commit?source=hash-mapping
- size: 195839
- timestamp: 1754831350570
-- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
- sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae
- md5: edb16f14d920fb3faf17f5ce582942d6
+ size: 348043
+ timestamp: 1762984765140
+- conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.6.0-h8399546_1.conda
+ sha256: f5b294ce9b40d15a4bc31b315364459c0d702dd3e8751fe8735c88ac6a9ddc67
+ md5: 8dbc626b1b11e7feb40a14498567b954
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 393615
+ timestamp: 1762176592236
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.6.0-hea311c8_1.conda
+ sha256: db5228d7a22af1c1a9495d4b6b0aea98b720903994dd489a52eb28153a48640c
+ md5: 080d93d41f5b2e2eef55ebb297aa8d6b
depends:
+ - libgcc >=14
+ - openssl >=3.5.4,<4.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 359284
+ timestamp: 1762176536234
+- conda: https://conda.anaconda.org/conda-forge/noarch/s3fs-2025.10.0-pyhd8ed1ab_0.conda
+ sha256: ef9e77c922fc1dd5389548b494fca2593db735544c765e3f7f89e9d51cf5055d
+ md5: 4dc893841b57e0f21caf9a3fe5cac04a
+ depends:
+ - aiobotocore >=2.5.4,<3.0.0
+ - aiohttp
+ - fsspec 2025.10.0
- python >=3.10
- - wcwidth
- constrains:
- - prompt_toolkit 3.0.52
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/prompt-toolkit?source=hash-mapping
- size: 273927
- timestamp: 1756321848365
-- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.1.0-py314h5bd0f2a_0.conda
- sha256: 2f412443ae50c3f8c85b4d2209e938be812d52a367f04533c9c7cc143d8a3435
- md5: 3bba9ff64ab2030c4c28c0d225864196
+ size: 33560
+ timestamp: 1761843408170
+- conda: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.25.2-py314ha0b5721_2.conda
+ sha256: f259c16ce532b50f41ccd0ac3ec2a6194c5c2724d6a17721850f21e6ab5e182c
+ md5: b1055051e14d13b877243910c98531c2
depends:
- __glibc >=2.17,<3.0.a0
+ - imageio >=2.33,!=2.35.0
+ - lazy-loader >=0.4
- libgcc >=14
+ - libstdcxx >=14
+ - networkx >=3.0
+ - numpy >=1.23,<3
+ - numpy >=1.24
+ - packaging >=21
+ - pillow >=10.1
- python >=3.14.0rc2,<3.15.0a0
- python_abi 3.14.* *_cp314
+ - pywavelets >=1.6
+ - scipy >=1.11.4
+ - tifffile >=2022.8.12
+ constrains:
+ - numpy >=1.24
+ - scikit-learn >=1.2
+ - astropy-base >=6.0
+ - pywavelets >=1.6
+ - pyamg >=5.2
+ - matplotlib-base >=3.7
+ - dask-core >=2023.2.0,!=2024.8.0
+ - pooch >=1.6.0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/psutil?source=hash-mapping
- size: 488279
- timestamp: 1758169396992
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-7.1.0-py314h51f160d_0.conda
- sha256: 2c827b9e5c0b5dbd4b87de290cd0ba6703f95de4ea271877bcbc4786cbcf1977
- md5: dcaddc080ba0140f801b22be85df88ee
- depends:
+ size: 10861481
+ timestamp: 1757197359157
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-image-0.25.2-py314h91eeaa4_2.conda
+ sha256: 5916d4982b70acb0ef22b7c3262907ad6d20bc546edfa93649f7dd0579ad9743
+ md5: 92e2b276d504d620032d33c111c7e170
+ depends:
+ - imageio >=2.33,!=2.35.0
+ - lazy-loader >=0.4
- libgcc >=14
+ - libstdcxx >=14
+ - networkx >=3.0
+ - numpy >=1.23,<3
+ - numpy >=1.24
+ - packaging >=21
+ - pillow >=10.1
+ - python >=3.14.0rc2,<3.15.0a0
+ - python >=3.14.0rc2,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - pywavelets >=1.6
+ - scipy >=1.11.4
+ - tifffile >=2022.8.12
+ constrains:
+ - matplotlib-base >=3.7
+ - pooch >=1.6.0
+ - numpy >=1.24
+ - dask-core >=2023.2.0,!=2024.8.0
+ - pyamg >=5.2
+ - pywavelets >=1.6
+ - scikit-learn >=1.2
+ - astropy-base >=6.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 10731935
+ timestamp: 1757197471163
+- conda: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.25.2-py314hc4308db_2.conda
+ sha256: 2604a294f1f6d3d492edfb96257b94ad8f2ff1f9014faf664eb96cc57ad54bb5
+ md5: febb06533f3249d42345eafd3452f45a
+ depends:
+ - __osx >=10.13
+ - imageio >=2.33,!=2.35.0
+ - lazy-loader >=0.4
+ - libcxx >=19
+ - networkx >=3.0
+ - numpy >=1.23,<3
+ - numpy >=1.24
+ - packaging >=21
+ - pillow >=10.1
+ - python >=3.14.0rc2,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ - pywavelets >=1.6
+ - scipy >=1.11.4
+ - tifffile >=2022.8.12
+ constrains:
+ - scikit-learn >=1.2
+ - pywavelets >=1.6
+ - astropy-base >=6.0
+ - numpy >=1.24
+ - pooch >=1.6.0
+ - matplotlib-base >=3.7
+ - pyamg >=5.2
+ - dask-core >=2023.2.0,!=2024.8.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 10372499
+ timestamp: 1757197411665
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.25.2-py314ha3d490a_2.conda
+ sha256: 10c18e18f39b876d1e5e212dc3e06295cbda93cc434de62b5dd73c14b40aa424
+ md5: 22e02a3473bb19c335d75ebd9817185a
+ depends:
+ - __osx >=11.0
+ - imageio >=2.33,!=2.35.0
+ - lazy-loader >=0.4
+ - libcxx >=19
+ - networkx >=3.0
+ - numpy >=1.23,<3
+ - numpy >=1.24
+ - packaging >=21
+ - pillow >=10.1
- python >=3.14.0rc2,<3.15.0a0
- python >=3.14.0rc2,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
+ - pywavelets >=1.6
+ - scipy >=1.11.4
+ - tifffile >=2022.8.12
+ constrains:
+ - pywavelets >=1.6
+ - scikit-learn >=1.2
+ - matplotlib-base >=3.7
+ - pyamg >=5.2
+ - astropy-base >=6.0
+ - numpy >=1.24
+ - dask-core >=2023.2.0,!=2024.8.0
+ - pooch >=1.6.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 10337453
+ timestamp: 1757197473648
+- conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.3-py314he7377e1_0.conda
+ sha256: 95fef56c269d334d39ec7ef81577923944a20dd5894f3bae202cef3896d9599b
+ md5: e12b6bc08df0880508c4947995a66d1c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=14
+ - numpy <2.6
+ - numpy >=1.23,<3
+ - numpy >=1.25.2
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/psutil?source=hash-mapping
- size: 489964
- timestamp: 1758169383460
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/psutil-7.1.1-py314he970779_0.conda
- sha256: baad62d03b5e57649e42a67d4d3ca4aef0b74869828cc1bf4c799b8370a1c367
- md5: b99d3e83491dc2d896279d4a91ff06d5
+ size: 17286842
+ timestamp: 1761691267182
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.16.3-py314hc1e843e_0.conda
+ sha256: d837e4047c633ba7d8fb71cc78d37e360eca2135b71db1b563fddb36ca344917
+ md5: 6df730519e694ecac83d2e671da7b5bd
depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
- libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=14
+ - numpy <2.6
+ - numpy >=1.23,<3
+ - numpy >=1.25.2
- python >=3.14,<3.15.0a0
- python >=3.14,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/psutil?source=hash-mapping
- size: 485955
- timestamp: 1760894140135
-- conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.1.1-py314h6482030_0.conda
- sha256: 29a7a45ea08012478cf276dbe45fe2aad90120b8df03e23b835219d6e7f2c6de
- md5: 5dde7796b0b983e87209e6e5f16a245b
+ size: 17262745
+ timestamp: 1761691717754
+- conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.3-py314h9d854bd_0.conda
+ sha256: d41989b35d6040b44de1af1773562a4b564fb2a4e443a4107fa7dec4ea572982
+ md5: 28256c1e094f1114b2ec5b15d51c2386
depends:
- __osx >=10.13
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.2.0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.6
+ - numpy >=1.23,<3
+ - numpy >=1.25.2
- python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/psutil?source=hash-mapping
- size: 493539
- timestamp: 1760894383542
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.1.1-py314h0612a62_0.conda
- sha256: a9c4fb5559f6a23be59eb422fa552dddef3874837a6e8a0aaf70d4da3732333f
- md5: b878231b794ecf95f7216ee4c2913cc9
+ size: 15446680
+ timestamp: 1761691999746
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.3-py314h624bdf2_0.conda
+ sha256: 10889c5faf3e45a45ee57872c7a13fd41e4dc6f7b7e629265bfa091aad13b166
+ md5: 857e2f8ee55fd356ffdcd5701a8bf541
depends:
- __osx >=11.0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libcxx >=19
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libgfortran5 >=15.2.0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.6
+ - numpy >=1.23,<3
+ - numpy >=1.25.2
- python >=3.14,<3.15.0a0
- python >=3.14,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/psutil?source=hash-mapping
- size: 494254
- timestamp: 1760894342864
-- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
- sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83
- md5: 7d9daffbb8d8e0af0f769dbbcd173a54
+ size: 14256802
+ timestamp: 1761692493165
+- conda: https://conda.anaconda.org/conda-forge/noarch/scooby-0.11.0-pyhd8ed1ab_0.conda
+ sha256: 9a952a8e1af64f012b85b3dc69c049b6a48dfa4f2c8ac347d1e59a6634058305
+ md5: 2d707ed62f63d72f4a0141b818e9c7b6
depends:
- - python >=3.9
- license: ISC
- purls:
- - pkg:pypi/ptyprocess?source=hash-mapping
- size: 19457
- timestamp: 1733302371990
-- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
- sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0
- md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 24029
+ timestamp: 1762031716091
+- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863
+ md5: 4de79c071274a53dcaf2a8c749d1499e
depends:
- python >=3.9
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/pure-eval?source=hash-mapping
- size: 16668
- timestamp: 1733569518868
-- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
- sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
- md5: 12c566707c80111f9799308d9e265aef
+ size: 748788
+ timestamp: 1748804951958
+- conda: https://conda.anaconda.org/conda-forge/linux-64/shapely-2.1.2-py314hbe3edd8_2.conda
+ sha256: 17cb5cec9283f993072e8b6f5e1417d8d892cc5efa27029eae954ab06b33c7e2
+ md5: 5963e6ee81772d450a35e6bc95522761
depends:
- - python >=3.9
- - python
+ - __glibc >=2.17,<3.0.a0
+ - geos >=3.14.1,<3.14.2.0a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/pycparser?source=hash-mapping
- size: 110100
- timestamp: 1733195786147
-- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
+ size: 652785
+ timestamp: 1762523657698
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/shapely-2.1.2-py314h1eb85aa_2.conda
+ sha256: 567000044f2a75b4377b715f9bf2553c545196dcc165523148c2011c671634ea
+ md5: 1688f47a3a44823bbf7bda55dee4507d
depends:
- - python >=3.9
- license: BSD-2-Clause
- license_family: BSD
- purls:
- - pkg:pypi/pygments?source=hash-mapping
- size: 889287
- timestamp: 1750615908735
-- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
- sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d
- md5: 1f987505580cb972cf28dc5f74a0f81b
+ - geos >=3.14.1,<3.14.2.0a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 653461
+ timestamp: 1762525217860
+- conda: https://conda.anaconda.org/conda-forge/osx-64/shapely-2.1.2-py314h4eeafd1_2.conda
+ sha256: bbcfdd8e40572e3d68379dd9ff971d6598096a7a43918de6bd55af2ed944861b
+ md5: a21b55dc72c8fc239782cb49d35fedb0
depends:
- - colorama >=0.4
- - exceptiongroup >=1
- - iniconfig >=1
- - packaging >=20
- - pluggy >=1.5,<2
- - pygments >=2.7.2
- - python >=3.10
- - tomli >=1
- constrains:
- - pytest-faulthandler >=2
+ - __osx >=10.13
+ - geos >=3.14.1,<3.14.2.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 624905
+ timestamp: 1762524067847
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/shapely-2.1.2-py314h277790e_2.conda
+ sha256: 3d6f64391563dbe47f2e795ce99b2389c84c695df12170e0a1743b10963ebce7
+ md5: 947d1f4e3160c83140a9c8bcb046fdac
+ depends:
+ - __osx >=11.0
+ - geos >=3.14.1,<3.14.2.0a0
+ - numpy >=1.23,<3
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 618928
+ timestamp: 1762524178138
+- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
+ sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf
+ md5: fbfb84b9de9a6939cb165c02c69b1865
+ depends:
+ - openssl >=3.0.0,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/pytest?source=compressed-mapping
- size: 276734
- timestamp: 1757011891753
-- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.0-h32b2ec7_102_cp314.conda
- build_number: 102
- sha256: 76d750045b94fded676323bfd01975a26a474023635735773d0e4d80aaa72518
- md5: 0a19d2cc6eb15881889b0c6fa7d6a78d
+ size: 213817
+ timestamp: 1643442169866
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
+ sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
+ md5: 4a2cac04f86a4540b8c9b8d8f597848f
+ depends:
+ - openssl >=3.0.0,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 210264
+ timestamp: 1643442231687
+- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
+ sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
+ md5: 3339e3b65d58accf4ca4fb8748ab16b3
+ depends:
+ - python >=3.9
+ - python
+ license: MIT
+ license_family: MIT
+ size: 18455
+ timestamp: 1753199211006
+- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda
+ sha256: 48f3f6a76c34b2cfe80de9ce7f2283ecb55d5ed47367ba91e8bb8104e12b8f11
+ md5: 98b6c9dc80eb87b2519b97bcf7e578dd
depends:
+ - libgcc >=14
- __glibc >=2.17,<3.0.a0
- - bzip2 >=1.0.8,<2.0a0
- - ld_impl_linux-64 >=2.36.1
- - libexpat >=2.7.1,<3.0a0
- - libffi >=3.5.2,<3.6.0a0
+ - libstdcxx >=14
- libgcc >=14
- - liblzma >=5.8.1,<6.0a0
- - libmpdec >=4.0.0,<5.0a0
- - libsqlite >=3.50.4,<4.0a0
- - libuuid >=2.41.2,<3.0a0
- - libzlib >=1.3.1,<2.0a0
- - ncurses >=6.5,<7.0a0
- - openssl >=3.5.4,<4.0a0
- - python_abi 3.14.* *_cp314
- - readline >=8.2,<9.0a0
- - tk >=8.6.13,<8.7.0a0
- - tzdata
- - zstd >=1.5.7,<1.6.0a0
- license: Python-2.0
- purls: []
- size: 36681389
- timestamp: 1761176838143
- python_site_packages_path: lib/python3.14/site-packages
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.14.0-hb06a95a_102_cp314.conda
- build_number: 102
- sha256: a930ea81356110d84993527772577276af034d689e7333f937005ee527bd11bf
- md5: c2bbf19a6b366d492f9137257ad19416
+ license: BSD-3-Clause
+ size: 45829
+ timestamp: 1762948049098
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_1.conda
+ sha256: a8a79c53852fb07286407907402caa5a96b6e22b518c4f010be40647f9ee3726
+ md5: 3dec912091fb88614afa0af2712c1362
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ license: BSD-3-Clause
+ size: 47096
+ timestamp: 1762948094646
+- conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h01f5ddf_1.conda
+ sha256: 1525e6d8e2edf32dabfe2a8e2fc8bf2df81c5ef9f0b5374a3d4ccfa672bfd949
+ md5: 2e993292ec18af5cd480932d448598cf
+ depends:
+ - libcxx >=19
+ - __osx >=10.13
+ license: BSD-3-Clause
+ size: 40023
+ timestamp: 1762948053450
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hada39a4_1.conda
+ sha256: cb9305ede19584115f43baecdf09a3866bfcd5bcca0d9e527bd76d9a1dbe2d8d
+ md5: fca4a2222994acd7f691e57f94b750c5
+ depends:
+ - libcxx >=19
+ - __osx >=11.0
+ license: BSD-3-Clause
+ size: 38883
+ timestamp: 1762948066818
+- conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda
+ sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7
+ md5: 0401a17ae845fa72c7210e206ec5647d
+ depends:
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ size: 28657
+ timestamp: 1738440459037
+- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c
+ md5: 18c019ccf43769d211f2cf78e9ad46c2
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 37803
+ timestamp: 1756330614547
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.51.0-heff268d_0.conda
+ sha256: 5cece58ca7353705ea47bbe44088baee70d2dfa8bdf2bbcd211698f60ab5e7cd
+ md5: 5422f0e1b59d2aa29329d5b3e36d57e5
depends:
- - bzip2 >=1.0.8,<2.0a0
- - ld_impl_linux-aarch64 >=2.36.1
- - libexpat >=2.7.1,<3.0a0
- - libffi >=3.5.2,<3.6.0a0
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
- libgcc >=14
- - liblzma >=5.8.1,<6.0a0
- - libmpdec >=4.0.0,<5.0a0
- - libsqlite >=3.50.4,<4.0a0
- - libuuid >=2.41.2,<3.0a0
+ - libsqlite 3.51.0 hee844dc_0
- libzlib >=1.3.1,<2.0a0
- ncurses >=6.5,<7.0a0
- - openssl >=3.5.4,<4.0a0
- - python_abi 3.14.* *_cp314
- readline >=8.2,<9.0a0
- - tk >=8.6.13,<8.7.0a0
- - tzdata
- - zstd >=1.5.7,<1.6.0a0
- license: Python-2.0
- purls: []
- size: 37128758
- timestamp: 1761175738259
- python_site_packages_path: lib/python3.14/site-packages
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/python-3.14.0-h1a654b9_102_cp314.conda
- build_number: 102
- sha256: 9c37cd137c59e9e64b54a537722754e57610a95fa5a1032a36be0059379c40aa
- md5: f509c210d944722a5dfc7b47f47d3c72
+ license: blessing
+ size: 182985
+ timestamp: 1762299697693
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.51.0-he8854b5_0.conda
+ sha256: c42b20af7de06d06c970103b4b2735c689497744ddf7c8f529cdf677f21251f6
+ md5: d78488d6501d765f0696580b551d0eaf
depends:
- - bzip2 >=1.0.8,<2.0a0
- - ld_impl_linux-ppc64le >=2.36.1
- - libexpat >=2.7.1,<3.0a0
- - libffi >=3.5.2,<3.6.0a0
- libgcc >=14
- - liblzma >=5.8.1,<6.0a0
- - libmpdec >=4.0.0,<5.0a0
- - libsqlite >=3.50.4,<4.0a0
- - libuuid >=2.41.2,<3.0a0
+ - libsqlite 3.51.0 h022381a_0
- libzlib >=1.3.1,<2.0a0
- ncurses >=6.5,<7.0a0
- - openssl >=3.5.4,<4.0a0
- - python_abi 3.14.* *_cp314
- readline >=8.2,<9.0a0
- - tk >=8.6.13,<8.7.0a0
- - tzdata
- - zstd >=1.5.7,<1.6.0a0
- license: Python-2.0
- purls: []
- size: 38289565
- timestamp: 1761175583510
- python_site_packages_path: lib/python3.14/site-packages
-- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.0-hf88997e_102_cp314.conda
- build_number: 102
- sha256: 2470866eee70e75d6be667aa537424b63f97c397a0a90f05f2bab347b9ed5a51
- md5: 7917d1205eed3e72366a3397dca8a2af
+ license: blessing
+ size: 188558
+ timestamp: 1762299840165
+- conda: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.51.0-hca40e9d_0.conda
+ sha256: ad6723759391d828aaaa699399ec788f77fd33179efeef43e6a9b8048faecbc6
+ md5: ba233bdd3a3350cae0e3b891bf5aefbd
depends:
- __osx >=10.13
- - bzip2 >=1.0.8,<2.0a0
- - libexpat >=2.7.1,<3.0a0
- - libffi >=3.5.2,<3.6.0a0
- - liblzma >=5.8.1,<6.0a0
- - libmpdec >=4.0.0,<5.0a0
- - libsqlite >=3.50.4,<4.0a0
+ - libsqlite 3.51.0 h86bffb9_0
- libzlib >=1.3.1,<2.0a0
- ncurses >=6.5,<7.0a0
- - openssl >=3.5.4,<4.0a0
- - python_abi 3.14.* *_cp314
- readline >=8.2,<9.0a0
- - tk >=8.6.13,<8.7.0a0
- - tzdata
- - zstd >=1.5.7,<1.6.0a0
- license: Python-2.0
- purls: []
- size: 14427639
- timestamp: 1761177864469
- python_site_packages_path: lib/python3.14/site-packages
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.0-h40d2674_102_cp314.conda
- build_number: 102
- sha256: 3ca1da026fe5df8a479d60e1d3ed02d9bc50fcbafd5f125d86abe70d21a34cc7
- md5: a9ff09231c555da7e30777747318321b
+ license: blessing
+ size: 173942
+ timestamp: 1762300179415
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.51.0-h81ab1b7_0.conda
+ sha256: 9fdd1518d60e646209817bd54f8241d05309e6e0c3cc497eb8c9e0091d50b875
+ md5: 27026c600e8c8f6c07d136b46e143164
depends:
- __osx >=11.0
- - bzip2 >=1.0.8,<2.0a0
- - libexpat >=2.7.1,<3.0a0
- - libffi >=3.5.2,<3.6.0a0
- - liblzma >=5.8.1,<6.0a0
- - libmpdec >=4.0.0,<5.0a0
- - libsqlite >=3.50.4,<4.0a0
+ - icu >=75.1,<76.0a0
+ - libsqlite 3.51.0 h8adb53f_0
- libzlib >=1.3.1,<2.0a0
- ncurses >=6.5,<7.0a0
- - openssl >=3.5.4,<4.0a0
- - python_abi 3.14.* *_cp314
- readline >=8.2,<9.0a0
- - tk >=8.6.13,<8.7.0a0
- - tzdata
- - zstd >=1.5.7,<1.6.0a0
- license: Python-2.0
- purls: []
- size: 13590581
- timestamp: 1761177195716
- python_site_packages_path: lib/python3.14/site-packages
-- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- md5: 5b8d21249ff20967101ffa321cab24e8
+ license: blessing
+ size: 165724
+ timestamp: 1762300105850
+- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41
+ md5: b1b505328da7a6b246787df4b5a49fbc
depends:
+ - asttokens
+ - executing
+ - pure_eval
- python >=3.9
- - six >=1.5
- - python
- license: Apache-2.0
- license_family: APACHE
- purls:
- - pkg:pypi/python-dateutil?source=hash-mapping
- size: 233310
- timestamp: 1751104122689
-- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
- sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8
- md5: 23029aae904a2ba587daba708208012f
+ license: MIT
+ license_family: MIT
+ size: 26988
+ timestamp: 1733569565672
+- conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda
+ sha256: 34e2e9c505cd25dba0a9311eb332381b15147cf599d972322a7c197aedfc8ce2
+ md5: 9859766c658e78fec9afa4a54891d920
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2741200
+ timestamp: 1756086702093
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-3.1.2-hfae3067_0.conda
+ sha256: e4b482062da7cf259f21465274a0f3613d1dbd8ea649aca6072625f5038ac40d
+ md5: 7602d3004ed53b3f8e5e0e04e5de4de7
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2106252
+ timestamp: 1756090698097
+- conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-3.1.2-h21dd04a_0.conda
+ sha256: e6fa8309eadc275aae8c456b9473be5b2b9413b43c6ef2fdbebe21fb3818dd55
+ md5: c11ebe332911d9642f0678da49bedf44
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2390115
+ timestamp: 1756086715447
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-3.1.2-h12ba402_0.conda
+ sha256: 3b0f4f2a6697f0cdbbe0c0b5f5c7fa8064483d58b4d9674d5babda7f7146af7a
+ md5: cb56c114b25f20bd09ef1c66a21136ff
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 1474592
+ timestamp: 1756086729326
+- conda: https://conda.anaconda.org/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda
+ sha256: 09d3b6ac51d437bc996ad006d9f749ca5c645c1900a854a6c8f193cbd13f03a8
+ md5: 8c09fac3785696e1c477156192d64b91
depends:
+ - __unix
+ - cpython
+ - gmpy2 >=2.0.8
+ - mpmath >=0.19
- python >=3.9
- - python
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/fastjsonschema?source=hash-mapping
- size: 244628
- timestamp: 1755304154927
-- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.0-h4df99d1_102.conda
- sha256: e68c9796fba0825ebc1338ceb94496683ab7d45dcd281b378ec2a56365d3c555
- md5: d152e423d80848fe95f0f4b43448030e
+ size: 4616621
+ timestamp: 1745946173026
+- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_8.conda
+ sha256: 0053c17ffbd9f8af1a7f864995d70121c292e317804120be4667f37c92805426
+ md5: 1bad93f0aa428d618875ef3a588a889e
+ depends:
+ - __glibc >=2.28
+ - kernel-headers_linux-64 4.18.0 he073ed8_8
+ - tzdata
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
+ license_family: GPL
+ size: 24210909
+ timestamp: 1752669140965
+- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_8.conda
+ sha256: 8ab275b5c5fbe36416c7d3fb8b71241eca2d024e222361f8e15c479f17050c0e
+ md5: 1263d6ac8dadaea7c60b29f1b4af45b8
+ depends:
+ - __glibc >=2.28
+ - kernel-headers_linux-aarch64 4.18.0 h05a177a_8
+ - tzdata
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
+ license_family: GPL
+ size: 23863575
+ timestamp: 1752669129101
+- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
+ sha256: f97372a1c75b749298cb990405a690527e8004ff97e452ed2c59e4bc6a35d132
+ md5: c6ee25eb54accb3f1c8fc39203acfaf1
+ depends:
+ - __osx >=10.13
+ - libcxx >=17.0.0.a0
+ - ncurses >=6.5,<7.0a0
+ license: NCSA
+ license_family: MIT
+ size: 221236
+ timestamp: 1725491044729
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
+ sha256: 37cd4f62ec023df8a6c6f9f6ffddde3d6620a83cbcab170a8fff31ef944402e5
+ md5: b703bc3e6cba5943acf0e5f987b5d0e2
+ depends:
+ - __osx >=11.0
+ - libcxx >=17.0.0.a0
+ - ncurses >=6.5,<7.0a0
+ license: NCSA
+ license_family: MIT
+ size: 207679
+ timestamp: 1725491499758
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.3.0-h8d10470_1.conda
+ sha256: 2e3238234ae094d5a5f7c559410ea8875351b6bac0d9d0e576bf64b732b8029e
+ md5: e3259be3341da4bc06c5b7a78c8bf1bd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0
+ size: 181262
+ timestamp: 1762509955687
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2022.3.0-h0eac15c_1.conda
+ sha256: 3fd3d1ba6b81c5edee8d8fa0d2757f7ba3bf4d4a8ecc68f515c90e737eaa02e4
+ md5: eda1e9439d903e3fdd7ff9e086da2018
+ depends:
+ - libgcc >=14
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0
+ size: 144223
+ timestamp: 1762511489745
+- conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2022.3.0-hf0c99ee_1.conda
+ sha256: 56e32e8bd8f621ccd30574c2812f8f5bc42cc66a3fda8dd7e1b5e54d3f835faa
+ md5: 108a7d3b5f5b08ed346636ac5935a495
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ license: Apache-2.0
+ size: 160700
+ timestamp: 1762510382168
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2022.3.0-h66ce52b_1.conda
+ sha256: 06de2fb5bdd4e51893d651165c3dc2679c4c84b056d962432f31cd9f2ccb1304
+ md5: 6f026b94077bed22c27ad8365e024e18
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ license: Apache-2.0
+ size: 121436
+ timestamp: 1762510628662
+- conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda
+ sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f
+ md5: f5b9f02d19761f79c564900a2a399984
+ depends:
+ - imagecodecs >=2024.12.30
+ - numpy >=1.19.2
+ - python >=3.11
+ constrains:
+ - matplotlib-base >=3.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 182347
+ timestamp: 1760696502467
+- conda: https://conda.anaconda.org/conda-forge/linux-64/time-1.9-hb9d3cd8_0.conda
+ sha256: 8509f95cff871ffb4d34230b9abef06643fb69fb79383f07e19ddb04c107948d
+ md5: 8092f5737888ac1c3a02cfc710c5fb8c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 37934
+ timestamp: 1736963168458
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/time-1.9-h86ecc28_0.conda
+ sha256: 6fb4300f515ce9e9ab6e76931f3a8d3d53b395e6da7be45172499d4d9df3cecb
+ md5: c0fa0ed2e23556acc02476c3c63c95ba
+ depends:
+ - libgcc >=13
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 39271
+ timestamp: 1736965286947
+- conda: https://conda.anaconda.org/conda-forge/osx-64/time-1.9-h6e16a3a_0.conda
+ sha256: 346365150e5a8ccb2ccbdaabf05f2c43a5fa42351caa5874438e5cf65454f897
+ md5: cf81e80fc173222d57a35c7e4fc00361
+ depends:
+ - __osx >=10.13
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 40574
+ timestamp: 1736963308978
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/time-1.9-h5505292_0.conda
+ sha256: 786ead9c66921d1c248a143eaadad53c4efeaab73dd625757bdf1678ae44af89
+ md5: 19f2d0d9b3563211cebe16cc36cbfe80
+ depends:
+ - __osx >=11.0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 40375
+ timestamp: 1736963269127
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1
+ md5: a0116df4f4ed05c303811a837d5b39d8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: TCL
+ license_family: BSD
+ size: 3285204
+ timestamp: 1748387766691
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda
+ sha256: 46e10488e9254092c655257c18fcec0a9864043bdfbe935a9fbf4fb2028b8514
+ md5: 2562c9bfd1de3f9c590f0fe53858d85c
+ depends:
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: TCL
+ license_family: BSD
+ size: 3342845
+ timestamp: 1748393219221
+- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda
+ sha256: b24468006a96b71a5f4372205ea7ec4b399b0f2a543541e86f883de54cd623fc
+ md5: 9864891a6946c2fe037c02fca7392ab4
+ depends:
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ license: TCL
+ license_family: BSD
+ size: 3259809
+ timestamp: 1748387843735
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
+ sha256: cb86c522576fa95c6db4c878849af0bccfd3264daf0cc40dd18e7f4a7bfced0e
+ md5: 7362396c170252e7b7b0c8fb37fe9c78
depends:
- - cpython 3.14.0.*
- - python_abi * *_cp314
- license: Python-2.0
- purls: []
- size: 48968
- timestamp: 1761175555295
-- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda
- build_number: 8
- sha256: ad6d2e9ac39751cc0529dd1566a26751a0bf2542adb0c232533d32e176e21db5
- md5: 0539938c55b6b1a59b560e843ad864a4
- constrains:
- - python 3.14.* *_cp314
- license: BSD-3-Clause
+ - __osx >=11.0
+ - libzlib >=1.3.1,<2.0a0
+ license: TCL
license_family: BSD
- purls: []
- size: 6989
- timestamp: 1752805904792
-- conda: https://conda.anaconda.org/conda-forge/noarch/pyyaml-6.0.3-pyh7db6752_0.conda
- sha256: 828af2fd7bb66afc9ab1c564c2046be391aaf66c0215f05afaf6d7a9a270fe2a
- md5: b12f41c0d7fb5ab81709fcc86579688f
+ size: 3125538
+ timestamp: 1748388189063
+- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
+ sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff
+ md5: d2732eb636c264dc9aa4cbee404b1a53
depends:
- - python >=3.10.*
- - yaml
- track_features:
- - pyyaml_no_compile
+ - python >=3.10
+ - python
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/pyyaml?source=hash-mapping
- size: 45223
- timestamp: 1758891992558
-- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hfb55c3c_0.conda
- noarch: python
- sha256: a00a41b66c12d9c60e66b391e9a4832b7e28743348cf4b48b410b91927cd7819
- md5: 3399d43f564c905250c1aea268ebb935
+ size: 20973
+ timestamp: 1760014679845
+- conda: https://conda.anaconda.org/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda
+ sha256: 4e379e1c18befb134247f56021fdf18e112fb35e64dd1691858b0a0f3bea9a45
+ md5: c07a6153f8306e45794774cf9b13bd32
depends:
- - python
- - __glibc >=2.17,<3.0.a0
- - libstdcxx >=14
- - libgcc >=14
- - _python_abi3_support 1.*
- - cpython >=3.12
- - zeromq >=4.3.5,<4.4.0a0
+ - python >=3.10
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/pyzmq?source=hash-mapping
- size: 212218
- timestamp: 1757387023399
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-27.1.0-py312h4552c38_0.conda
- noarch: python
- sha256: 54e4ce37719ae513c199b8ab06ca89f8c4a0945b0c51d60ec952f5866ae1687e
- md5: c9aadf2edd39b56ad34dc5f775626d5b
+ size: 53978
+ timestamp: 1760707830681
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py314h5bd0f2a_2.conda
+ sha256: a4482fff049ad4e2907969b2c11242b712b33cdad9bbf88122a705e179af04da
+ md5: 972071a83bc345cb2a13c2c5b662ff5b
depends:
- - python
- - libstdcxx >=14
+ - __glibc >=2.17,<3.0.a0
- libgcc >=14
- - zeromq >=4.3.5,<4.4.0a0
- - _python_abi3_support 1.*
- - cpython >=3.12
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/pyzmq?source=hash-mapping
- size: 213723
- timestamp: 1757387032833
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/pyzmq-27.1.0-py312h6d289d5_0.conda
- noarch: python
- sha256: 3ffe556fd423522aa9e3879a91aec691c7cb530bdb9450bcf791271310acfc89
- md5: 9a41685399a1842509c4d97bb6c9cffb
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 902474
+ timestamp: 1762506844640
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.5.2-py314hafb4487_2.conda
+ sha256: c0f0d53fa7cd70a7c29e3acb569e6af04a1cb620ea49842beebb3d212f000147
+ md5: 45a0e463a2bd525db9d7561290500865
depends:
- - python
- - libgcc >=14
- - libstdcxx >=14
- libgcc >=14
- - zeromq >=4.3.5,<4.4.0a0
- - _python_abi3_support 1.*
- - cpython >=3.12
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/pyzmq?source=hash-mapping
- size: 213072
- timestamp: 1757387039516
-- conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312hb7d603e_0.conda
- noarch: python
- sha256: 4e052fa3c4ed319e7bcc441fca09dee4ee4006ac6eb3d036a8d683fceda9304b
- md5: 81511d0be03be793c622c408c909d6f9
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 902729
+ timestamp: 1762507810940
+- conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py314h6482030_2.conda
+ sha256: 3a12454043a640b95e1f96407e61b185738dd47e97edf4305ec62b27d6f54224
+ md5: d97f0d30ffb1b03fa8d09ef8ba0fdd7c
depends:
- - python
- __osx >=10.13
- - libcxx >=19
- - _python_abi3_support 1.*
- - cpython >=3.12
- - zeromq >=4.3.5,<4.4.0a0
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 904195
+ timestamp: 1762507175982
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py314h0612a62_2.conda
+ sha256: aec65f3c244255c75e4f6e093f094f851a8566ea5ece7d8cbfffb2af745676a3
+ md5: a085241420b4c86f8efc85830b0690b6
+ depends:
+ - __osx >=11.0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 901904
+ timestamp: 1762507135570
+- conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
+ sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40
+ md5: 9efbfdc37242619130ea42b1cc4ed861
+ depends:
+ - colorama
+ - python >=3.9
+ license: MPL-2.0 or MIT
+ size: 89498
+ timestamp: 1735661472632
+- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959
+ md5: 019a7385be9af33791c989871317e1ed
+ depends:
+ - python >=3.9
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/pyzmq?source=hash-mapping
- size: 191697
- timestamp: 1757387104297
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312hd65ceae_0.conda
- noarch: python
- sha256: ef33812c71eccf62ea171906c3e7fc1c8921f31e9cc1fbc3f079f3f074702061
- md5: bbd22b0f0454a5972f68a5f200643050
+ size: 110051
+ timestamp: 1733367480074
+- conda: https://conda.anaconda.org/conda-forge/noarch/traittypes-0.2.3-pyh332efcf_0.conda
+ sha256: 67a77ce374a792fc6d8e4d56c83c21b6cf3a7f43b6e98c1db2cbed2254144d05
+ md5: d22a0bf07f57cfb1240185961d182a8d
depends:
- - python
- - __osx >=11.0
- - libcxx >=19
- - _python_abi3_support 1.*
- - cpython >=3.12
- - zeromq >=4.3.5,<4.4.0a0
+ - python >=3.9
+ - traitlets >=4.2.2,<6.0
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/pyzmq?source=hash-mapping
- size: 191115
- timestamp: 1757387128258
-- conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-59.0-hecca717_0.conda
- sha256: ce0e671ce8b6151b135eb6b5aea9caed4d4032a416f73a04a3fb29048fd772c3
- md5: d95e4c5679876a9d3f2211263f75dc9c
+ size: 13283
+ timestamp: 1761131966141
+- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
+ md5: edd329d7d3a4ab45dcf905899a7a6115
+ depends:
+ - typing_extensions ==4.15.0 pyhcf101f3_0
+ license: PSF-2.0
+ license_family: PSF
+ size: 91383
+ timestamp: 1756220668932
+- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
+ md5: 0caa1af407ecff61170c9437a808404d
+ depends:
+ - python >=3.10
+ - python
+ license: PSF-2.0
+ license_family: PSF
+ size: 51692
+ timestamp: 1756220668932
+- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192
+ md5: 4222072737ccff51314b5ece9c7d6f5a
+ license: LicenseRef-Public-Domain
+ size: 122968
+ timestamp: 1742727099393
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ucc-1.5.1-hb729f83_0.conda
+ sha256: 5e7ac8dab660d85ce97b49a6e7baa6fca04e3efc40bc962104956ebf89cd2065
+ md5: a0861f581e2030872d58ddad469045bb
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
- - libnl >=3.11.0,<4.0a0
- libstdcxx >=14
- - libsystemd0 >=257.7
- - libudev1 >=257.7
- license: Linux-OpenIB
+ - ucx >=1.19.0,<1.19.1.0a0
+ - ucx >=1.19.0,<1.20.0a0
+ constrains:
+ - cuda-version >=12,<13.0a0
+ - nccl >=2.27.7.1,<3.0a0
+ - cuda-cudart
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 1239342
- timestamp: 1756455670262
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-59.0-he839754_0.conda
- sha256: 2cc27da4d45fb0fb94a7e29d74d1f3c7ea0a206fb8ec74b733d1386562420bfc
- md5: 2bee21e8d87f218c8fdd0648456274e8
+ size: 8759974
+ timestamp: 1757986556727
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucc-1.5.1-h42c451e_0.conda
+ sha256: 4c73c214f7383f00d298ac196be9de9007699d13ab6593ffb6ecf8c047130f4d
+ md5: d899bcc9ff5552b1a1ff16256811f46f
depends:
- libgcc >=14
- - libnl >=3.11.0,<4.0a0
- libstdcxx >=14
- - libsystemd0 >=257.7
- - libudev1 >=257.7
- license: Linux-OpenIB
+ - ucx >=1.19.0,<1.19.1.0a0
+ - ucx >=1.19.0,<1.20.0a0
+ constrains:
+ - cuda-cudart
+ - cuda-version >=12,<13.0a0
+ - nccl >=2.27.7.1,<3.0a0
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 1307824
- timestamp: 1756455799226
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rdma-core-59.0-h6118d1c_0.conda
- sha256: 2b75ec99678622bb62dd7fa65b91d3178691e75325ea98ed84572aeef61d3622
- md5: 8a5eb7a3b552c809aecbaf762d268ff2
+ size: 8748877
+ timestamp: 1757985290541
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.19.0-h63b5c0b_5.conda
+ sha256: ae79787ebd783d955b69454a6283968ffcac129bc4bcb5b1e536c4ac51165bf5
+ md5: 0215384753366686883fb3449646e65e
depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
- libgcc >=14
- - libnl >=3.11.0,<4.0a0
- libstdcxx >=14
- - libsystemd0 >=257.7
- - libudev1 >=257.7
- license: Linux-OpenIB
+ - rdma-core >=60.0
+ constrains:
+ - cuda-cudart
+ - cuda-version >=12,<13.0a0
+ license: BSD-3-Clause
license_family: BSD
- purls: []
- size: 1342150
- timestamp: 1756455758034
-- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
- sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c
- md5: 283b96675859b20a825f8fa30f311446
- depends:
- - libgcc >=13
- - ncurses >=6.5,<7.0a0
- license: GPL-3.0-only
- license_family: GPL
- purls: []
- size: 282480
- timestamp: 1740379431762
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda
- sha256: 54bed3a3041befaa9f5acde4a37b1a02f44705b7796689574bcf9d7beaad2959
- md5: c0f08fc2737967edde1a272d4bf41ed9
- depends:
- - libgcc >=13
- - ncurses >=6.5,<7.0a0
- license: GPL-3.0-only
- license_family: GPL
- purls: []
- size: 291806
- timestamp: 1740380591358
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/readline-8.2-hf4ca6f9_2.conda
- sha256: 81114c81098e8afef4e4d8ff11b5d7c822fa5db8827695687c9dc4d96748249e
- md5: 03eb5d98d2cadd7ff581716f1a5e6409
- depends:
- - libgcc >=13
- - ncurses >=6.5,<7.0a0
- license: GPL-3.0-only
- license_family: GPL
- purls: []
- size: 307430
- timestamp: 1740380850736
-- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda
- sha256: 53017e80453c4c1d97aaf78369040418dea14cf8f46a2fa999f31bd70b36c877
- md5: 342570f8e02f2f022147a7f841475784
- depends:
- - ncurses >=6.5,<7.0a0
- license: GPL-3.0-only
- license_family: GPL
- purls: []
- size: 256712
- timestamp: 1740379577668
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
- sha256: 7db04684d3904f6151eff8673270922d31da1eea7fa73254d01c437f49702e34
- md5: 63ef3f6e6d6d5c589e64f11263dc5676
- depends:
- - ncurses >=6.5,<7.0a0
- license: GPL-3.0-only
- license_family: GPL
- purls: []
- size: 252359
- timestamp: 1740379663071
-- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda
- sha256: 0577eedfb347ff94d0f2fa6c052c502989b028216996b45c7f21236f25864414
- md5: 870293df500ca7e18bedefa5838a22ab
+ size: 7713805
+ timestamp: 1761787212563
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.19.0-ha79f86a_5.conda
+ sha256: b9e0a1806561e40cd2e4a4d5c9dfc268fc223b609b281050a2f6a8d17217e43c
+ md5: 8ccd2f04272a6cc4cbd08f04454189ce
depends:
- - attrs >=22.2.0
- - python >=3.10
- - rpds-py >=0.7.0
- - typing_extensions >=4.4.0
- - python
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/referencing?source=hash-mapping
- size: 51788
- timestamp: 1760379115194
-- conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
- sha256: d5c73079c1dd2c2a313c3bfd81c73dbd066b7eb08d213778c8bff520091ae894
- md5: c1c9b02933fdb2cfb791d936c20e887e
+ - _openmp_mutex >=4.5
+ - libgcc >=14
+ - libstdcxx >=14
+ - rdma-core >=60.0
+ constrains:
+ - cuda-cudart
+ - cuda-version >=12,<13.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 7651015
+ timestamp: 1761786829837
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py314h9891dd4_6.conda
+ sha256: ef6753f6febaa74d35253e4e0dd09dc9497af8e370893bd97c479f59346daa57
+ md5: 28303a78c48916ab07b95ffdbffdfd6c
depends:
- __glibc >=2.17,<3.0.a0
- - libgcc >=13
- license: MIT
- license_family: MIT
- size: 193775
- timestamp: 1748644872902
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.6-h86ecc28_1.conda
- sha256: 0fe6f40213f2d8af4fcb7388eeb782a4e496c8bab32c189c3a34b37e8004e5a4
- md5: 745d02c0c22ea2f28fbda2cb5dbec189
- depends:
- - libgcc >=13
+ - cffi
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- size: 207475
- timestamp: 1748644952027
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rhash-1.4.6-h190368a_1.conda
- sha256: 5d9942f7dece12954ee334ac92d47b54f56da8e8b167e6b97d8f6163f95ef620
- md5: 264d057f08085ff564a5b07538618740
+ size: 14762
+ timestamp: 1761594960135
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ukkonen-1.0.1-py314hd7d8586_6.conda
+ sha256: 0e323578e0def2dda684dad27f619dadea6ffa7364641c0ff6610d10aa285464
+ md5: 64e3941607577d1fe2deb09f45a8c90d
depends:
- - libgcc >=13
+ - cffi
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- size: 219247
- timestamp: 1748644907898
-- conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.6-h6e16a3a_1.conda
- sha256: 65c946fc5a9bb71772a7ac9bad64ff08ac07f7d5311306c2dcc1647157b96706
- md5: d0fcaaeff83dd4b6fb035c2f36df198b
+ size: 15565
+ timestamp: 1761595014547
+- conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py314hd4d8fbc_6.conda
+ sha256: a0eae3891b029b7370422b6266eba63d44cd71b72cda963e8a58b6c1514a4657
+ md5: 1ed1acfeb71fe25d63257a6ce4be801c
depends:
- __osx >=10.13
+ - cffi
+ - libcxx >=19
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- size: 185180
- timestamp: 1748644989546
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.6-h5505292_1.conda
- sha256: f4957c05f4fbcd99577de8838ca4b5b1ae4b400a44be647a0159c14f85b9bfc0
- md5: 029e812c8ae4e0d4cf6ff4f7d8dc9366
+ size: 14099
+ timestamp: 1761594980562
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py314h6b18a25_6.conda
+ sha256: 2ef342cc861c52ec3ac464e89b192a37fd7afd79740b2c0773d2588fd8acff26
+ md5: 452b75f09bc2a4c5eea4044b769bc659
depends:
- __osx >=11.0
+ - cffi
+ - libcxx >=19
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
license: MIT
license_family: MIT
- size: 185448
- timestamp: 1748645057503
-- conda: https://conda.anaconda.org/conda-forge/noarch/rich-14.2.0-pyhcf101f3_0.conda
- sha256: edfb44d0b6468a8dfced728534c755101f06f1a9870a7ad329ec51389f16b086
- md5: a247579d8a59931091b16a1e932bbed6
+ size: 14635
+ timestamp: 1761595172213
+- conda: https://conda.anaconda.org/conda-forge/noarch/uncompresspy-0.4.1-pyhd8ed1ab_0.conda
+ sha256: 423320baa07b12f611f7d72d6d7136a6feca2ddf3691e3dcf073e84571d05c16
+ md5: 06de15bda7ff6019d8e02e6682664b63
depends:
- - markdown-it-py >=2.2.0
- - pygments >=2.13.0,<3.0.0
- python >=3.10
- - typing_extensions >=4.0.0,<5.0.0
- - python
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/rich?source=compressed-mapping
- size: 200840
- timestamp: 1760026188268
-- conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.28.0-py314h2e6c369_1.conda
- sha256: 5ba1263d97efdb2d21e0f0e0c019ae94477cfc4cc5ac5fca48af167631835119
- md5: 3c244ebad5ad7ca869b4864de50cee79
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16160
+ timestamp: 1760291806337
+- conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-17.0.0-py314h5bd0f2a_0.conda
+ sha256: 39d43dea2b9d810061acf771aa2f3dfa42bd4cb5e6232229ff2ade0dcd1d9032
+ md5: 513163222fbdf72e7b4746865f93e75b
depends:
- - python
- __glibc >=2.17,<3.0.a0
- libgcc >=14
+ - python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
- constrains:
- - __glibc >=2.17
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/rpds-py?source=hash-mapping
- size: 372952
- timestamp: 1761178912127
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.28.0-py314h02b7a91_1.conda
- sha256: 4dc981f0f04bb178600e6bf82e097bbecbd3246caf5f8688569addfb49c3c919
- md5: 024a91f988a9e75b8d1bb58b3d806617
+ license: Apache-2.0
+ license_family: Apache
+ size: 409003
+ timestamp: 1762268998543
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-17.0.0-py314h51f160d_0.conda
+ sha256: af3812d108a599b95380c419f6238031b93fd1d4337c7c3d21353ef998de1837
+ md5: 8076293e486b77075114fc454aac1468
depends:
- - python
- libgcc >=14
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
- constrains:
- - __glibc >=2.17
+ license: Apache-2.0
+ license_family: Apache
+ size: 409061
+ timestamp: 1762269013167
+- conda: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-17.0.0-py314h6482030_0.conda
+ sha256: 621b99c66f45ce4d3b48cdad09935f8e6237ccad8f4c47381da849c2b8d3ea9a
+ md5: b7fbb0e2dc882b74f60495a5ea124a5c
+ depends:
+ - __osx >=10.13
+ - python >=3.14,<3.15.0a0
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 405004
+ timestamp: 1762269363730
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-17.0.0-py314h0612a62_0.conda
+ sha256: 1a03197b74f90e1015d47ebcc449c43d6520f61a17da4eb413b262b15f5879e3
+ md5: 1a309736b4849fef553717cb72a67a64
+ depends:
+ - __osx >=11.0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ license: Apache-2.0
+ license_family: Apache
+ size: 415575
+ timestamp: 1762269437011
+- conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8
+ md5: 436c165519e140cb08d246a4472a9d6a
+ depends:
+ - brotli-python >=1.0.9
+ - h2 >=4,<5
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.9
+ - zstandard >=0.18.0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/rpds-py?source=hash-mapping
- size: 374497
- timestamp: 1761179174817
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/rpds-py-0.28.0-py314h603c1d2_1.conda
- sha256: 60efc00b0bf62452f26fbd289ac0582130547a6a336daa50d112f8e286acbe85
- md5: 1e06f7182418c8fe9641f625a4b8e18e
+ size: 101735
+ timestamp: 1750271478254
+- conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.8-ha770c72_0.conda
+ sha256: bbfbfc43bc028ec8acc5c9c2bb9a52c7652140cef91fdb6219a52d91d773a474
+ md5: a480ee3eb9c95364a229673a28384899
+ license: BSL-1.0
+ size: 14169
+ timestamp: 1758003868824
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/utfcpp-4.0.8-h8af1aa0_0.conda
+ sha256: de1106759843f3157ee92de5700f0cc77a4cff8a0228c7e71b5cb721af469a4a
+ md5: 4442dc0f6357febda4d62cc1ebdd25fb
+ license: BSL-1.0
+ size: 14232
+ timestamp: 1758004061190
+- conda: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.8-h694c41f_0.conda
+ sha256: 8799b948d1134403dcbca969c5150860f003e229b8fd98c034f3f6fc41f2857d
+ md5: a31d84035af1180ea06a8f36d4b8ccd0
+ license: BSL-1.0
+ size: 14341
+ timestamp: 1758003979361
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/utfcpp-4.0.8-hce30654_0.conda
+ sha256: 28186b76c87472ca582bfa581afda732827fd851295dcdbb6cfd36472b1d6f46
+ md5: b792e86bf8073fd13c72ce7899e83e23
+ license: BSL-1.0
+ size: 14305
+ timestamp: 1758004002328
+- conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.4-pyhd8ed1ab_0.conda
+ sha256: 77193c99c6626c58446168d3700f9643d8c0dab1f6deb6b9dd039e6872781bfb
+ md5: cfccfd4e8d9de82ed75c8e2c91cab375
depends:
- - python
- - libgcc >=14
- - python_abi 3.14.* *_cp314
- constrains:
- - __glibc >=2.17
+ - distlib >=0.3.7,<1
+ - filelock >=3.12.2,<4
+ - platformdirs >=3.9.1,<5
+ - python >=3.10
+ - typing_extensions >=4.13.2
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/rpds-py?source=hash-mapping
- size: 501316
- timestamp: 1761178921777
-- conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.28.0-py314ha7b6dee_1.conda
- sha256: db00da7fa5fb6c5a012e829e04bc423c9218f5323b7f6448e682ba070261713a
- md5: 52da17f2e970fb16ed4d58fb89a57d34
+ size: 4401341
+ timestamp: 1761726489722
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.5.2-py314h41551e1_0.conda
+ sha256: 4b40ee6a560f720ad659c4672d5804f255a263728bda9ffcaf28efd21150f0de
+ md5: 986cd3fe6003fae24b0c9b86dcc6cd05
depends:
- - python
- - __osx >=10.13
+ - __glibc >=2.17,<3.0.a0
+ - cli11
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libglu >=9.0.3,<9.1.0a0
+ - libglvnd >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libnetcdf >=4.9.3,<4.9.4.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - matplotlib-base >=2.0.0
+ - nlohmann_json
+ - numpy
+ - proj >=9.7.0,<9.8.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
+ - qt6-main >=6.9.3,<6.10.0a0
+ - tbb >=2021.13.0
+ - utfcpp
+ - wslink
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
constrains:
- - __osx >=10.13
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/rpds-py?source=hash-mapping
- size: 359616
- timestamp: 1761178530762
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.28.0-py314haad56a0_1.conda
- sha256: b23bf16f915173e13b406f74c9971fc32fc2061adedafcca9b8b0f857cea3cb5
- md5: 859410b4f928968f90660ad8b66058b3
+ - libboost-headers >=1.88.0,<1.89.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 63060742
+ timestamp: 1760672645332
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-base-9.5.2-py314h8174c61_0.conda
+ sha256: f9e7bdcb06e89d377b481ede0c8d1a44cfc0592ceadf06bbd76b000bff3bc36c
+ md5: 67dfbd95db97241bf38aaa746e5833bf
+ depends:
+ - cli11
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libglu >=9.0.3,<9.1.0a0
+ - libglvnd >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libnetcdf >=4.9.3,<4.9.4.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - matplotlib-base >=2.0.0
+ - nlohmann_json
+ - numpy
+ - proj >=9.7.0,<9.8.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - qt6-main >=6.9.3,<6.10.0a0
+ - tbb >=2021.13.0
+ - utfcpp
+ - wslink
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ constrains:
+ - libboost-headers >=1.88.0,<1.89.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 58366406
+ timestamp: 1760674130487
+- conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.5.2-py314hd9cbe44_0.conda
+ sha256: 4041bdbaed13fdbff4cbdef3bf8a51576dda233d82ade016f2fc7ddb36510a38
+ md5: 0b8a3aa60114f43a5e3a2e78b42c4265
depends:
- - python
- - python 3.14.* *_cp314
- __osx >=11.0
+ - cli11
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libcxx >=18
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libnetcdf >=4.9.3,<4.9.4.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - matplotlib-base >=2.0.0
+ - nlohmann_json
+ - numpy
+ - proj >=9.7.0,<9.8.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - python >=3.14,<3.15.0a0
- python_abi 3.14.* *_cp314
+ - qt6-main >=6.9.3,<6.10.0a0
+ - tbb >=2021.13.0
+ - utfcpp
+ - wslink
constrains:
+ - libboost-headers >=1.88.0,<1.89.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 48031289
+ timestamp: 1760669294293
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-base-9.5.2-py314h3ddaf29_0.conda
+ sha256: 9229c803d0c85744f21af895cc38287768ed823f8fa5cdbd4517236d973fdfc4
+ md5: 6c857862647793448ea4830ea39f6d5a
+ depends:
- __osx >=11.0
+ - cli11
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libcxx >=18
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libnetcdf >=4.9.3,<4.9.4.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - libxml2
+ - libxml2-16 >=2.14.6
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - matplotlib-base >=2.0.0
+ - nlohmann_json
+ - numpy
+ - proj >=9.7.0,<9.8.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - python >=3.14,<3.15.0a0
+ - python >=3.14,<3.15.0a0 *_cp314
+ - python_abi 3.14.* *_cp314
+ - qt6-main >=6.9.3,<6.10.0a0
+ - tbb >=2021.13.0
+ - utfcpp
+ - wslink
+ constrains:
+ - libboost-headers >=1.88.0,<1.89.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 46021113
+ timestamp: 1760671002159
+- conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.24.0-hd6090a7_1.conda
+ sha256: 3aa04ae8e9521d9b56b562376d944c3e52b69f9d2a0667f77b8953464822e125
+ md5: 035da2e4f5770f036ff704fa17aace24
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libstdcxx >=14
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/rpds-py?source=hash-mapping
- size: 347240
- timestamp: 1761178511044
-- conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.2-py314he7377e1_0.conda
- sha256: 4b7e061a7afae38838692f819f437a09b3736ecdf3e1cb6e6f1d2be2443f018b
- md5: 8bb820f0a36a7ad7dfb360f76138a735
+ size: 329779
+ timestamp: 1761174273487
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wayland-1.24.0-h4f8a99f_1.conda
+ sha256: d94af8f287db764327ac7b48f6c0cd5c40da6ea2606afd34ac30671b7c85d8ee
+ md5: f6966cb1f000c230359ae98c29e37d87
depends:
- - __glibc >=2.17,<3.0.a0
- - libblas >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- - liblapack >=3.9.0,<4.0a0
- libstdcxx >=14
- - numpy <2.6
- - numpy >=1.23,<3
- - numpy >=1.25.2
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
+ license: MIT
+ license_family: MIT
+ size: 331480
+ timestamp: 1761174368396
+- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
+ sha256: e311b64e46c6739e2a35ab8582c20fa30eb608da130625ed379f4467219d4813
+ md5: 7e1e5ff31239f9cd5855714df8a3783d
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 33670
+ timestamp: 1758622418893
+- conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6
+ md5: 2841eb5bfc75ce15e9a0054b98dcd64d
+ depends:
+ - python >=3.9
license: BSD-3-Clause
license_family: BSD
- purls:
- - pkg:pypi/scipy?source=hash-mapping
- size: 17336344
- timestamp: 1757682302944
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.16.2-py314hc1e843e_0.conda
- sha256: 8ea96a2be010bed221ea1daa078cd2947d7b80c64fe28efd24606dab843c95e0
- md5: 2b159a7261334687707ac0cb0cada8a6
+ size: 15496
+ timestamp: 1733236131358
+- conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.15-pyhd8ed1ab_0.conda
+ sha256: 826af5e2c09e5e45361fa19168f46ff524e7a766022615678c3a670c45895d9a
+ md5: dc257b7e7cad9b79c1dfba194e92297b
depends:
- - libblas >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 889195
+ timestamp: 1762040404362
+- conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.3-py314h5bd0f2a_1.conda
+ sha256: e2b6545651aed5e7dead39b7ba3bf8c2669f194c71e89621343bd0bb321a87f1
+ md5: 82da729c870ada2f675689a39b4f697f
+ depends:
+ - __glibc >=2.17,<3.0.a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- - liblapack >=3.9.0,<4.0a0
- - libstdcxx >=14
- - numpy <2.6
- - numpy >=1.23,<3
- - numpy >=1.25.2
- python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls:
- - pkg:pypi/scipy?source=hash-mapping
- size: 17030630
- timestamp: 1757682731329
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/scipy-1.16.2-py314h03172c9_0.conda
- sha256: cca32238bfcc6c7480f5d706b29d16a5da66642e7959629a6739869612b6672d
- md5: 0c585977305eaa228d85a5606f918e71
+ size: 64997
+ timestamp: 1756851739706
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.3-py314h51f160d_1.conda
+ sha256: 3f311dc4faf9593d59bb993a25c2ce55f443267e6d7ec42c83de325c603f0250
+ md5: 69cc319c35952c14dfb5f00940a1021f
depends:
- - libblas >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
- libgcc >=14
- - libgfortran
- - libgfortran5 >=14.3.0
- - liblapack >=3.9.0,<4.0a0
- - libstdcxx >=14
- - numpy <2.6
- - numpy >=1.23,<3
- - numpy >=1.25.2
- python >=3.14.0rc2,<3.15.0a0
- python >=3.14.0rc2,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls:
- - pkg:pypi/scipy?source=hash-mapping
- size: 17661229
- timestamp: 1757682672937
-- conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.2-py314h9d854bd_0.conda
- sha256: d2124aef8227eb0b2342a4c56d2712d8a669979d5efd581b2c3366a0f5809ed2
- md5: 413e1db916316bdc78ba0568ae49c43f
+ size: 65955
+ timestamp: 1756851771522
+- conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.17.3-py314h03d016b_1.conda
+ sha256: 72e67726778356a45bba26c598bd91f13e95b37d0f931e8217408f9e20527786
+ md5: eddd65903cdc82babc86d48aba49acae
depends:
- __osx >=10.13
- - libblas >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
- - libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- - libgfortran5 >=15.1.0
- - liblapack >=3.9.0,<4.0a0
- - numpy <2.6
- - numpy >=1.23,<3
- - numpy >=1.25.2
- python >=3.14.0rc2,<3.15.0a0
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls:
- - pkg:pypi/scipy?source=hash-mapping
- size: 15535532
- timestamp: 1757682735693
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.2-py314h624bdf2_0.conda
- sha256: 829f7fa315ba8905844dda7bc3f02d7c5984976c083731369ccf174e3c39b698
- md5: 4ec24517b57b507b8ee81037973a134d
+ size: 61409
+ timestamp: 1756851745948
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.3-py314hb84d1df_1.conda
+ sha256: 0f35a19fd99724e8620dc89a6fb9eb100d300f117292adde2c7e8cf12d566e10
+ md5: 104bf69250e32a42ca144d7f7abd5d5c
depends:
- __osx >=11.0
- - libblas >=3.9.0,<4.0a0
- - libcblas >=3.9.0,<4.0a0
- - libcxx >=19
- - libgfortran
- - libgfortran5 >=14.3.0
- - libgfortran5 >=15.1.0
- - liblapack >=3.9.0,<4.0a0
- - numpy <2.6
- - numpy >=1.23,<3
- - numpy >=1.25.2
- python >=3.14.0rc2,<3.15.0a0
- python >=3.14.0rc2,<3.15.0a0 *_cp314
- python_abi 3.14.* *_cp314
- license: BSD-3-Clause
+ license: BSD-2-Clause
license_family: BSD
- purls:
- - pkg:pypi/scipy?source=hash-mapping
- size: 14211326
- timestamp: 1757682552082
-- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
- sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863
- md5: 4de79c071274a53dcaf2a8c749d1499e
+ size: 61800
+ timestamp: 1756851815321
+- conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ sha256: e9ac3caa3b17bed9bc301a67d3950f84fa37fb34002d2878c46cafb87978401d
+ md5: 8fa415e696acd9af59ce0a4425fd1b38
+ depends:
+ - aiohttp <4
+ - msgpack-python >=1,<2
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 35839
+ timestamp: 1760984848678
+- conda: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.10.1-pyhcf101f3_1.conda
+ sha256: 57bfac2a070d2c63d34c1d75a409cb92e788ac42e658e9d9349cd19b12888ce7
+ md5: 515d0ed77a942ad39fa94cf636dcde44
depends:
- - python >=3.9
+ - python >=3.11
+ - numpy >=1.26
+ - packaging >=24.1
+ - pandas >=2.2
+ - python
+ constrains:
+ - bottleneck >=1.4
+ - cartopy >=0.23
+ - cftime >=1.6
+ - dask-core >=2024.6
+ - distributed >=2024.6
+ - flox >=0.9
+ - h5netcdf >=1.3
+ - h5py >=3.11
+ - hdf5 >=1.14
+ - iris >=3.9
+ - matplotlib-base >=3.8
+ - nc-time-axis >=1.4
+ - netcdf4 >=1.6.0
+ - numba >=0.60
+ - pint >=0.24
+ - scipy >=1.13
+ - seaborn-base >=0.13
+ - sparse >=0.15
+ - toolz >=0.12
+ - zarr >=2.18
+ license: Apache-2.0
+ size: 981473
+ timestamp: 1762776862272
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
+ sha256: ad8cab7e07e2af268449c2ce855cbb51f43f4664936eff679b1f3862e6e4b01d
+ md5: fdc27cb255a7a2cc73b7919a968b48f0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/setuptools?source=hash-mapping
- size: 748788
- timestamp: 1748804951958
-- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
- sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf
- md5: fbfb84b9de9a6939cb165c02c69b1865
+ size: 20772
+ timestamp: 1750436796633
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.1-hca56bd8_2.conda
+ sha256: d874906e236a5edc9309d479599bf2de4d8adca0f23c355b76759d5fb3c4bef8
+ md5: 159ffec8f7fab775669a538f0b29373a
depends:
- - openssl >=3.0.0,<4.0a0
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
license: MIT
license_family: MIT
- size: 213817
- timestamp: 1643442169866
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
- sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
- md5: 4a2cac04f86a4540b8c9b8d8f597848f
+ size: 21517
+ timestamp: 1750437961489
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ sha256: c7b35db96f6e32a9e5346f97adc968ef2f33948e3d7084295baebc0e33abdd5b
+ md5: eb44b3b6deb1cab08d72cb61686fe64c
depends:
- - openssl >=3.0.0,<4.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.13
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
license: MIT
license_family: MIT
- size: 210264
- timestamp: 1643442231687
-- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
+ size: 20296
+ timestamp: 1726125844850
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda
+ sha256: c2608dc625c7aacffff938813f985c5f21c6d8a4da3280d57b5287ba1b27ec21
+ md5: d6bb2038d26fa118d5cbc2761116f3e5
depends:
- - python >=3.9
- - python
+ - libgcc >=13
+ - libxcb >=1.13
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/six?source=hash-mapping
- size: 18455
- timestamp: 1753199211006
-- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda
- sha256: 8b8acbde6814d1643da509e11afeb6bb30eb1e3004cf04a7c9ae43e9b097f063
- md5: 3d8da0248bdae970b4ade636a104b7f5
+ size: 21123
+ timestamp: 1726125922919
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7
+ md5: a0901183f08b6c7107aab109733a3c91
depends:
- - libgcc >=14
- - libstdcxx >=14
- - libgcc >=14
- - __glibc >=2.17,<3.0.a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 45805
- timestamp: 1753083455352
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_0.conda
- sha256: 06648e1c2fd7c5426b2611d4e480768aea934b54fe8034a8f7a6378a40b20695
- md5: b80bb2997c2139b3659edfca69b72dae
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ license: MIT
+ license_family: MIT
+ size: 24551
+ timestamp: 1718880534789
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda
+ sha256: a43058edc001e8fb97f9b291028a6ca16a8969d9b56a998c7aecea083323ac97
+ md5: b82e5c78dbbfa931980e8bfe83bce913
depends:
- - libstdcxx >=14
- - libgcc >=14
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 47059
- timestamp: 1753083509250
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/snappy-1.2.2-hc76479f_0.conda
- sha256: 8d92a8fb18332bf04e7e0b09ab98ca7539e997ca3375d5f290151b88e1c093bd
- md5: 6ff068fc489d28939834cef2e861a85f
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ license: MIT
+ license_family: MIT
+ size: 24910
+ timestamp: 1718880504308
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69
+ md5: ad748ccca349aec3e91743e08b5e2b50
depends:
- - libstdcxx >=14
- - libgcc >=14
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 51311
- timestamp: 1753083471802
-- conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h25c286d_0.conda
- sha256: e9ccbdbfaa9abd21636decd524d9845dee5a67af593b1d54525a48f2b03d3d76
- md5: e6544ab8824f58ca155a5b8225f0c780
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 14314
+ timestamp: 1718846569232
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda
+ sha256: 9d92daa7feb0e14f81bf0d4b3f0b6ff1e8cec3ff514df8a0c06c4d49b518c315
+ md5: 57ca8564599ddf8b633c4ea6afee6f3a
depends:
- - libcxx >=19
- - __osx >=10.13
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 39975
- timestamp: 1753083485577
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda
- sha256: b3d447d72d2af824006f4ba78ae4188747886d6d95f2f165fe67b95541f02b05
- md5: ba9ca3813f4db8c0d85d3c84404e02ba
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 14343
+ timestamp: 1718846624153
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df
+ md5: 0e0cbe0564d03a99afd5fd7b362feecd
depends:
- - libcxx >=19
- - __osx >=11.0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 38824
- timestamp: 1753083462800
-- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
- sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41
- md5: b1b505328da7a6b246787df4b5a49fbc
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 16978
+ timestamp: 1718848865819
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda
+ sha256: 5827f5617c9741599f72bb7f090726f89c6ef91e4bada621895fdc2bbadfb0f1
+ md5: 7beeda4223c5484ef72d89fb66b7e8c1
depends:
- - asttokens
- - executing
- - pure_eval
- - python >=3.9
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/stack-data?source=hash-mapping
- size: 26988
- timestamp: 1733569565672
-- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_8.conda
- sha256: 0053c17ffbd9f8af1a7f864995d70121c292e317804120be4667f37c92805426
- md5: 1bad93f0aa428d618875ef3a588a889e
+ size: 18139
+ timestamp: 1718849914457
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a
+ md5: 608e0ef8256b81d04456e8d211eee3e8
depends:
- - __glibc >=2.28
- - kernel-headers_linux-64 4.18.0 he073ed8_8
- - tzdata
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
- license_family: GPL
- size: 24210909
- timestamp: 1752669140965
-- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_8.conda
- sha256: 8ab275b5c5fbe36416c7d3fb8b71241eca2d024e222361f8e15c479f17050c0e
- md5: 1263d6ac8dadaea7c60b29f1b4af45b8
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 51689
+ timestamp: 1718844051451
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda
+ sha256: 3f52cd8783e7d953c54266255fd11886c611c2620545eabc28ec8cf470ae8be7
+ md5: f14dcda6894722e421da2b7dcffb0b78
depends:
- - __glibc >=2.28
- - kernel-headers_linux-aarch64 4.18.0 h05a177a_8
- - tzdata
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
- license_family: GPL
- size: 23863575
- timestamp: 1752669129101
-- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-ppc64le-2.28-heb8a786_8.conda
- sha256: 931b6f4b51421064665f4c6d3461c0c6e949638cfa517c942d235ed94c8ec5c8
- md5: 55ebdf9a76e7f757c31edc73ef62c66c
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 50772
+ timestamp: 1718845072660
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
+ sha256: aa03b49f402959751ccc6e21932d69db96a65a67343765672f7862332aa32834
+ md5: 71ae752a748962161b4740eaff510258
depends:
- - __glibc >=2.28
- - kernel-headers_linux-ppc64le 4.18.0 h3602f99_8
- - tzdata
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
- license_family: GPL
- size: 26055427
- timestamp: 1752669091810
-- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
- sha256: f97372a1c75b749298cb990405a690527e8004ff97e452ed2c59e4bc6a35d132
- md5: c6ee25eb54accb3f1c8fc39203acfaf1
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 396975
+ timestamp: 1759543819846
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xkeyboard-config-2.46-he30d5cf_0.conda
+ sha256: c440a757d210e84c7f315ac3b034266980a8b4c986600649d296b9198b5b4f5e
+ md5: 9524f30d9dea7dd5d6ead43a8823b6c2
depends:
- - __osx >=10.13
- - libcxx >=17.0.0.a0
- - ncurses >=6.5,<7.0a0
- license: NCSA
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
license_family: MIT
- size: 221236
- timestamp: 1725491044729
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
- sha256: 37cd4f62ec023df8a6c6f9f6ffddde3d6620a83cbcab170a8fff31ef944402e5
- md5: b703bc3e6cba5943acf0e5f987b5d0e2
+ size: 396706
+ timestamp: 1759543850920
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b
+ md5: fb901ff28063514abb6046c9ec2c4a45
depends:
- - __osx >=11.0
- - libcxx >=17.0.0.a0
- - ncurses >=6.5,<7.0a0
- license: NCSA
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
license_family: MIT
- size: 207679
- timestamp: 1725491499758
-- conda: https://conda.anaconda.org/conda-forge/linux-64/time-1.9-hb9d3cd8_0.conda
- sha256: 8509f95cff871ffb4d34230b9abef06643fb69fb79383f07e19ddb04c107948d
- md5: 8092f5737888ac1c3a02cfc710c5fb8c
+ size: 58628
+ timestamp: 1734227592886
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda
+ sha256: a2ba1864403c7eb4194dacbfe2777acf3d596feae43aada8d1b478617ce45031
+ md5: c8d8ec3e00cd0fd8a231789b91a7c5b7
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 60433
+ timestamp: 1734229908988
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250
+ md5: 1c74ff8c35dcadf952a16f752ca5aa49
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- license: GPL-3.0-or-later
- license_family: GPL
- purls: []
- size: 37934
- timestamp: 1736963168458
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/time-1.9-h86ecc28_0.conda
- sha256: 6fb4300f515ce9e9ab6e76931f3a8d3d53b395e6da7be45172499d4d9df3cecb
- md5: c0fa0ed2e23556acc02476c3c63c95ba
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 27590
+ timestamp: 1741896361728
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda
+ sha256: b86a819cd16f90c01d9d81892155126d01555a20dabd5f3091da59d6309afd0a
+ md5: 2d1409c50882819cb1af2de82e2b7208
depends:
- libgcc >=13
- license: GPL-3.0-or-later
- license_family: GPL
- purls: []
- size: 39271
- timestamp: 1736965286947
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/time-1.9-h190368a_0.conda
- sha256: c695c993f261783ec7bb4e3155e96bfeaf0697b9988ed6087d049fdefa63f9cc
- md5: 12ea9753b18a9c19381e97d2ea29679f
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 28701
+ timestamp: 1741897678254
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67
+ md5: db038ce880f100acc74dba10302b5630
depends:
+ - __glibc >=2.17,<3.0.a0
- libgcc >=13
- license: GPL-3.0-or-later
- license_family: GPL
- purls: []
- size: 39040
- timestamp: 1736964266730
-- conda: https://conda.anaconda.org/conda-forge/osx-64/time-1.9-h6e16a3a_0.conda
- sha256: 346365150e5a8ccb2ccbdaabf05f2c43a5fa42351caa5874438e5cf65454f897
- md5: cf81e80fc173222d57a35c7e4fc00361
+ - libxcb >=1.17.0,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 835896
+ timestamp: 1741901112627
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda
+ sha256: 452977d8ad96f04ec668ba74f46e70a53e00f99c0e0307956aeca75894c8131d
+ md5: 3df132f0048b9639bc091ef22937c111
+ depends:
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 864850
+ timestamp: 1741901264068
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
+ sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b
+ md5: b2895afaf55bf96a8c8282a2e47a5de0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 15321
+ timestamp: 1762976464266
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.12-he30d5cf_1.conda
+ sha256: e9f6e931feeb2f40e1fdbafe41d3b665f1ab6cb39c5880a1fcf9f79a3f3c84a5
+ md5: 1c246e1105000c3660558459e2fd6d43
+ depends:
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ size: 16317
+ timestamp: 1762977521691
+- conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.12-h8616949_1.conda
+ sha256: 928f28bd278c7da674b57d71b2e7f4ac4e7c7ce56b0bf0f60d6a074366a2e76d
+ md5: 47f1b8b4a76ebd0cd22bd7153e54a4dc
depends:
- __osx >=10.13
- license: GPL-3.0-or-later
- license_family: GPL
- purls: []
- size: 40574
- timestamp: 1736963308978
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/time-1.9-h5505292_0.conda
- sha256: 786ead9c66921d1c248a143eaadad53c4efeaab73dd625757bdf1678ae44af89
- md5: 19f2d0d9b3563211cebe16cc36cbfe80
+ license: MIT
+ license_family: MIT
+ size: 13810
+ timestamp: 1762977180568
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.12-hc919400_1.conda
+ sha256: adae11db0f66f86156569415ed79cda75b2dbf4bea48d1577831db701438164f
+ md5: 78b548eed8227a689f93775d5d23ae09
depends:
- __osx >=11.0
- license: GPL-3.0-or-later
- license_family: GPL
- purls: []
- size: 40375
- timestamp: 1736963269127
-- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
- sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1
- md5: a0116df4f4ed05c303811a837d5b39d8
+ license: MIT
+ license_family: MIT
+ size: 14105
+ timestamp: 1762976976084
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f
+ md5: d3c295b50f092ab525ffe3c2aa4b7413
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- license: TCL
- license_family: BSD
- purls: []
- size: 3285204
- timestamp: 1748387766691
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda
- sha256: 46e10488e9254092c655257c18fcec0a9864043bdfbe935a9fbf4fb2028b8514
- md5: 2562c9bfd1de3f9c590f0fe53858d85c
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13603
+ timestamp: 1727884600744
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda
+ sha256: 0cb82160412adb6d83f03cf50e807a8e944682d556b2215992a6fbe9ced18bc0
+ md5: 86051eee0766c3542be24844a9c3cf36
depends:
- libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- license: TCL
- license_family: BSD
- purls: []
- size: 3342845
- timestamp: 1748393219221
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/tk-8.6.13-noxft_he73cbed_102.conda
- sha256: dd109976b8d6b6d30ba281cd678c47fd59f5715d159565826567d102dbe7f233
- md5: 797ea2eebb34ba6e0eaaf594978fa9b2
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13982
+ timestamp: 1727884626338
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ sha256: 832f538ade441b1eee863c8c91af9e69b356cd3e9e1350fff4fe36cc573fc91a
+ md5: 2ccd714aa2242315acaf0a67faea780b
depends:
+ - __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libzlib >=1.3.1,<2.0a0
- license: TCL
- license_family: BSD
- purls: []
- size: 3591574
- timestamp: 1748391103926
-- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda
- sha256: b24468006a96b71a5f4372205ea7ec4b399b0f2a543541e86f883de54cd623fc
- md5: 9864891a6946c2fe037c02fca7392ab4
- depends:
- - __osx >=10.13
- - libzlib >=1.3.1,<2.0a0
- license: TCL
- license_family: BSD
- purls: []
- size: 3259809
- timestamp: 1748387843735
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
- sha256: cb86c522576fa95c6db4c878849af0bccfd3264daf0cc40dd18e7f4a7bfced0e
- md5: 7362396c170252e7b7b0c8fb37fe9c78
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ size: 32533
+ timestamp: 1730908305254
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda
+ sha256: c5d3692520762322a9598e7448492309f5ee9d8f3aff72d787cf06e77c42507f
+ md5: f2054759c2203d12d0007005e1f1296d
depends:
- - __osx >=11.0
- - libzlib >=1.3.1,<2.0a0
- license: TCL
- license_family: BSD
- purls: []
- size: 3125538
- timestamp: 1748388189063
-- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda
- sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff
- md5: d2732eb636c264dc9aa4cbee404b1a53
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ size: 34596
+ timestamp: 1730908388714
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0
+ md5: b5fcc7172d22516e1f965490e65e33a4
depends:
- - python >=3.10
- - python
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/tomli?source=compressed-mapping
- size: 20973
- timestamp: 1760014679845
-- conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py314h5bd0f2a_1.conda
- sha256: 45c3e5cd139a6e0d77485935d24ec0d28c1886575383b799c742e320d5209a18
- md5: aa5552df9b306a67e7d2cd3333fb2ea5
+ size: 13217
+ timestamp: 1727891438799
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda
+ sha256: 3afaa2f43eb4cb679fc0c3d9d7c50f0f2c80cc5d3df01d5d5fd60655d0bfa9be
+ md5: d5773c4e4d64428d7ddaa01f6f845dc7
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13794
+ timestamp: 1727891406431
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
+ sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142
+ md5: 1dafce8548e38671bea82e3f5c6ce22f
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/tornado?source=hash-mapping
- size: 904732
- timestamp: 1756855025112
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.5.2-py314hafb4487_1.conda
- sha256: dc3e18711523c9ee6247e2b81f1cb6f975ce821d73642e2862b2c116ea762eed
- md5: daa0018e557e1e2e7587e3ec4a048b8c
- depends:
- - libgcc >=14
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/tornado?source=hash-mapping
- size: 906694
- timestamp: 1756855882682
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/tornado-6.5.2-py314hc52b89b_1.conda
- sha256: ed1535cd14f319034dd466596e9e9b6bdd261235436141b3cb7b2c7992ab6686
- md5: 2651f45c4a9f63cc69c7428c348b4de0
+ license: MIT
+ license_family: MIT
+ size: 20591
+ timestamp: 1762976546182
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-he30d5cf_1.conda
+ sha256: 128d72f36bcc8d2b4cdbec07507542e437c7d67f677b7d77b71ed9eeac7d6df1
+ md5: bff06dcde4a707339d66d45d96ceb2e2
depends:
- libgcc >=14
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/tornado?source=hash-mapping
- size: 906482
- timestamp: 1756855722765
-- conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py314h03d016b_1.conda
- sha256: 30b039425ef59497d9b8841e11b40bdf9abb45a933d81eb0f49f98ea95ff7b5b
- md5: 5e49343f797271710c3cc85f78314587
+ license: MIT
+ license_family: MIT
+ size: 21039
+ timestamp: 1762979038025
+- conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h8616949_1.conda
+ sha256: b7b291cc5fd4e1223058542fca46f462221027779920dd433d68b98e858a4afc
+ md5: 435446d9d7db8e094d2c989766cfb146
depends:
- __osx >=10.13
- - python >=3.14.0rc2,<3.15.0a0
- - python_abi 3.14.* *_cp314
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/tornado?source=hash-mapping
- size: 903711
- timestamp: 1756855068785
-- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py314hb84d1df_1.conda
- sha256: a88e7fda8fa06085e5aaea46b0b9aefe854fe44f32cb9dad7c54c0e7333b2291
- md5: d5984070c15ee90df4606fad36f726a7
+ license: MIT
+ license_family: MIT
+ size: 19067
+ timestamp: 1762977101974
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hc919400_1.conda
+ sha256: f7fa0de519d8da589995a1fe78ef74556bb8bc4172079ae3a8d20c3c81354906
+ md5: 9d1299ace1924aa8f4e0bc8e71dd0cf7
depends:
- __osx >=11.0
- - python >=3.14.0rc2,<3.15.0a0
- - python >=3.14.0rc2,<3.15.0a0 *_cp314
- - python_abi 3.14.* *_cp314
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/tornado?source=hash-mapping
- size: 905686
- timestamp: 1756855156496
-- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
- sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959
- md5: 019a7385be9af33791c989871317e1ed
+ license: MIT
+ license_family: MIT
+ size: 19156
+ timestamp: 1762977035194
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14
+ md5: febbab7d15033c913d53c7a2c102309d
depends:
- - python >=3.9
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/traitlets?source=hash-mapping
- size: 110051
- timestamp: 1733367480074
-- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
- md5: 0caa1af407ecff61170c9437a808404d
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 50060
+ timestamp: 1727752228921
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda
+ sha256: 8e216b024f52e367463b4173f237af97cf7053c77d9ce3e958bc62473a053f71
+ md5: bd1e86dd8aa3afd78a4bfdb4ef918165
depends:
- - python >=3.10
- - python
- license: PSF-2.0
- license_family: PSF
- purls:
- - pkg:pypi/typing-extensions?source=hash-mapping
- size: 51692
- timestamp: 1756220668932
-- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192
- md5: 4222072737ccff51314b5ece9c7d6f5a
- license: LicenseRef-Public-Domain
- purls: []
- size: 122968
- timestamp: 1742727099393
-- conda: https://conda.anaconda.org/conda-forge/linux-64/ucc-1.5.1-hb729f83_0.conda
- sha256: 5e7ac8dab660d85ce97b49a6e7baa6fca04e3efc40bc962104956ebf89cd2065
- md5: a0861f581e2030872d58ddad469045bb
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 50746
+ timestamp: 1727754268156
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
+ sha256: 83c4c99d60b8784a611351220452a0a85b080668188dce5dfa394b723d7b64f4
+ md5: ba231da7fccf9ea1e768caf5c7099b84
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
- - libstdcxx >=14
- - ucx >=1.19.0,<1.19.1.0a0
- - ucx >=1.19.0,<1.20.0a0
- constrains:
- - cuda-version >=12,<13.0a0
- - nccl >=2.27.7.1,<3.0a0
- - cuda-cudart
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 8759974
- timestamp: 1757986556727
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucc-1.5.1-h42c451e_0.conda
- sha256: 4c73c214f7383f00d298ac196be9de9007699d13ab6593ffb6ecf8c047130f4d
- md5: d899bcc9ff5552b1a1ff16256811f46f
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 20071
+ timestamp: 1759282564045
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-6.0.2-he30d5cf_0.conda
+ sha256: 8cb9c88e25c57e47419e98f04f9ef3154ad96b9f858c88c570c7b91216a64d0e
+ md5: e8b4056544341daf1d415eaeae7a040c
depends:
- libgcc >=14
- - libstdcxx >=14
- - ucx >=1.19.0,<1.19.1.0a0
- - ucx >=1.19.0,<1.20.0a0
- constrains:
- - cuda-cudart
- - cuda-version >=12,<13.0a0
- - nccl >=2.27.7.1,<3.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 8748877
- timestamp: 1757985290541
-- conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.19.0-hc93acc0_4.conda
- sha256: 4528c412368614ce2a6c2ce0d9f7d60776e18b39580ba639966e621a002281e2
- md5: 564583811ab9b11d48f0ed54b5b9da38
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 20704
+ timestamp: 1759284028146
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a
+ md5: 17dcc85db3c7886650b8908b183d6876
depends:
- __glibc >=2.17,<3.0.a0
- - _openmp_mutex >=4.5
- - libgcc >=14
- - libstdcxx >=14
- - rdma-core >=59.0
- constrains:
- - cuda-cudart
- - cuda-version >=12,<13.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 7710005
- timestamp: 1757690628596
-- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.19.0-hfbfdc62_4.conda
- sha256: 3fb054d95b554e915d203ca530f0876328d34983f9fd0576ac71628da10c219b
- md5: ecb9902821efc05160756e2057879aee
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 47179
+ timestamp: 1727799254088
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda
+ sha256: 7b587407ecb9ccd2bbaf0fb94c5dbdde4d015346df063e9502dc0ce2b682fb5e
+ md5: eeee3bdb31c6acde2b81ad1b8c287087
depends:
- - __glibc >=2.28,<3.0.a0
- - _openmp_mutex >=4.5
- - libgcc >=14
- - libstdcxx >=14
- - rdma-core >=59.0
- constrains:
- - cuda-cudart
- - cuda-version >=13,<14.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 7661736
- timestamp: 1757691181742
-- conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.3-pyhd8ed1ab_0.conda
- sha256: af9662662648f7f57c0a79afee98e393dacf68887c40aea1eec68b48afebb724
- md5: bf0dc4c8a32e91290e3fae5403798c63
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 48197
+ timestamp: 1727801059062
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d
+ md5: 2de7f99d6581a4a7adbff607b5c278ca
depends:
- - distlib >=0.3.7,<1
- - filelock >=3.12.2,<4
- - platformdirs >=3.9.1,<5
- - python >=3.10
- - typing_extensions >=4.13.2
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/virtualenv?source=compressed-mapping
- size: 4380205
- timestamp: 1760134237380
-- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.14-pyhd8ed1ab_0.conda
- sha256: e311b64e46c6739e2a35ab8582c20fa30eb608da130625ed379f4467219d4813
- md5: 7e1e5ff31239f9cd5855714df8a3783d
+ size: 29599
+ timestamp: 1727794874300
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda
+ sha256: b2588a2b101d1b0a4e852532c8b9c92c59ef584fc762dd700567bdbf8cd00650
+ md5: dd3e74283a082381aa3860312e3c721e
depends:
- - python >=3.10
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/wcwidth?source=compressed-mapping
- size: 33670
- timestamp: 1758622418893
+ size: 30197
+ timestamp: 1727794957221
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1
+ md5: 96d57aba173e878a2089d5638016dc5e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 33005
+ timestamp: 1734229037766
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda
+ sha256: ffd77ee860c9635a28cfda46163dcfe9224dc6248c62404c544ae6b564a0be1f
+ md5: ae2c2dd0e2d38d249887727db2af960e
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 33649
+ timestamp: 1734229123157
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a
+ md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxi >=1.7.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 32808
+ timestamp: 1727964811275
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda
+ sha256: 6eaffce5a34fc0a16a21ddeaefb597e792a263b1b0c387c1ce46b0a967d558e1
+ md5: c05698071b5c8e0da82a282085845860
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxi >=1.7.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 33786
+ timestamp: 1727964907993
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda
+ sha256: 8a4e2ee642f884e6b78c20c0892b85dd9b2a6e64a6044e903297e616be6ca35b
+ md5: 5efa5fa6243a622445fdfd72aee15efa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 17819
+ timestamp: 1734214575628
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda
+ sha256: 012f0d1fd9fb1d949e0dccc0b28d9dd5a8895a1f3e2a7edc1fa2e1b33fc0f233
+ md5: d745faa2d7c15092652e40a22bb261ed
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 18185
+ timestamp: 1734214652726
- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad
md5: a77f85f77be52ff59391544bfe73390a
@@ -8992,7 +17587,6 @@ packages:
- __glibc >=2.17,<3.0.a0
license: MIT
license_family: MIT
- purls: []
size: 85189
timestamp: 1753484064210
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-h80f16a2_3.conda
@@ -9002,19 +17596,8 @@ packages:
- libgcc >=14
license: MIT
license_family: MIT
- purls: []
size: 88088
timestamp: 1753484092643
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/yaml-0.2.5-h0558730_3.conda
- sha256: d2fbd1ef2cfc117b850d4f38b2a12a9607a1ea569a15e927d87f55f9440ddfee
- md5: b57dd6101d132abfc70b096ea57e00b8
- depends:
- - libgcc >=14
- license: MIT
- license_family: MIT
- purls: []
- size: 102916
- timestamp: 1753484076649
- conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda
sha256: a335161bfa57b64e6794c3c354e7d49449b28b8d8a7c4ed02bf04c3f009953f9
md5: a645bb90997d3fc2aea0adf6517059bd
@@ -9022,7 +17605,6 @@ packages:
- __osx >=10.13
license: MIT
license_family: MIT
- purls: []
size: 79419
timestamp: 1753484072608
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda
@@ -9032,9 +17614,22 @@ packages:
- __osx >=11.0
license: MIT
license_family: MIT
- purls: []
size: 83386
timestamp: 1753484079473
+- conda: https://conda.anaconda.org/conda-forge/noarch/yarl-1.22.0-pyh7db6752_0.conda
+ sha256: b04271f56c68483b411c5465afff73b8eabdea564e942f0e7afed06619272635
+ md5: ca3c00c764cee005798a518cba79885c
+ depends:
+ - idna >=2.0
+ - multidict >=4.0
+ - propcache >=0.2.1
+ - python >=3.10
+ track_features:
+ - yarl_no_compile
+ license: Apache-2.0
+ license_family: Apache
+ size: 73066
+ timestamp: 1761337117132
- conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h387f397_9.conda
sha256: 47cfe31255b91b4a6fa0e9dbaf26baa60ac97e033402dbc8b90ba5fee5ffe184
md5: 8035e5b54c08429354d5d64027041cad
@@ -9047,7 +17642,6 @@ packages:
- krb5 >=1.21.3,<1.22.0a0
license: MPL-2.0
license_family: MOZILLA
- purls: []
size: 310648
timestamp: 1757370847287
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-hefbcea8_9.conda
@@ -9060,23 +17654,8 @@ packages:
- libsodium >=1.0.20,<1.0.21.0a0
license: MPL-2.0
license_family: MOZILLA
- purls: []
size: 350254
timestamp: 1757370867477
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zeromq-4.3.5-h488b2a3_9.conda
- sha256: 220bb95890f67b29547ae2d77bee01ba402936a308f49accdd853ccebdecc983
- md5: cc285694da60a80b921854ce6d0a6ed1
- depends:
- - libgcc >=14
- - libstdcxx >=14
- - libgcc >=14
- - libsodium >=1.0.20,<1.0.21.0a0
- - krb5 >=1.21.3,<1.22.0a0
- license: MPL-2.0
- license_family: MOZILLA
- purls: []
- size: 363051
- timestamp: 1757370872769
- conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h6c33b1e_9.conda
sha256: 30aa5a2e9c7b8dbf6659a2ccd8b74a9994cdf6f87591fcc592970daa6e7d3f3c
md5: d940d809c42fbf85b05814c3290660f5
@@ -9087,7 +17666,6 @@ packages:
- krb5 >=1.21.3,<1.22.0a0
license: MPL-2.0
license_family: MOZILLA
- purls: []
size: 259628
timestamp: 1757371000392
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h888dc83_9.conda
@@ -9100,9 +17678,53 @@ packages:
- krb5 >=1.21.3,<1.22.0a0
license: MPL-2.0
license_family: MOZILLA
- purls: []
size: 244772
timestamp: 1757371008525
+- conda: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.1-h909a3a2_3.conda
+ sha256: d9051184638fe0c24985b31b29b434ad52c77923e4802c7580da3a60ad9f167b
+ md5: 03b04e4effefa41aee638f8ba30a6e78
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - libgcc >=14
+ - libstdcxx >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 277375
+ timestamp: 1756513972645
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zfp-1.0.1-h05c1e92_3.conda
+ sha256: 1f1d0ed3d502afb2dc93ee54648716c00e18a9f137ac885ea0851039946593ec
+ md5: e32a44f1085cf5b2caccb699cc375fa4
+ depends:
+ - _openmp_mutex >=4.5
+ - libgcc >=14
+ - libstdcxx >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 249302
+ timestamp: 1756515514869
+- conda: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.1-h326e263_3.conda
+ sha256: 988cda2a248580176e9a8bf075cd8ca421b293ab0bfe32d1add8d1b369505344
+ md5: f1d5bfda0ee685244c3e3fb27ba898c9
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ - llvm-openmp >=19.1.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 211943
+ timestamp: 1756514251293
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.1-hfd287c0_3.conda
+ sha256: 170837ffa29268dad8bb8495eb0fe4e09a941af4ab48a84aff682b0b1f84b540
+ md5: 5cf85324979643e4d7057bdac9ede019
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ - llvm-openmp >=19.1.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 203160
+ timestamp: 1756514364308
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad
md5: df5e78d904988eb55042c0c97446079f
@@ -9110,8 +17732,6 @@ packages:
- python >=3.9
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/zipp?source=hash-mapping
size: 22963
timestamp: 1749421737203
- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
@@ -9123,7 +17743,6 @@ packages:
- libzlib 1.3.1 hb9d3cd8_2
license: Zlib
license_family: Other
- purls: []
size: 92286
timestamp: 1727963153079
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda
@@ -9134,20 +17753,8 @@ packages:
- libzlib 1.3.1 h86ecc28_2
license: Zlib
license_family: Other
- purls: []
size: 95582
timestamp: 1727963203597
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zlib-1.3.1-h190368a_2.conda
- sha256: 529276e86968b9183e2f7f3b6733e3298c3ea6d2e95d6d6523e9e50986672292
- md5: d37df14a1c2556f3a85b2fb580806b4b
- depends:
- - libgcc >=13
- - libzlib 1.3.1 h190368a_2
- license: Zlib
- license_family: Other
- purls: []
- size: 100932
- timestamp: 1727963211783
- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
sha256: 219edbdfe7f073564375819732cbf7cc0d7c7c18d3f546a09c2dfaf26e4d69f3
md5: c989e0295dcbdc08106fe5d9e935f0b9
@@ -9156,7 +17763,6 @@ packages:
- libzlib 1.3.1 hd23fc13_2
license: Zlib
license_family: Other
- purls: []
size: 88544
timestamp: 1727963189976
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
@@ -9167,9 +17773,104 @@ packages:
- libzlib 1.3.1 h8359307_2
license: Zlib
license_family: Other
- purls: []
size: 77606
timestamp: 1727963209370
+- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.2.5-hde8ca8f_0.conda
+ sha256: 3a8e7798deafd0722b6b5da50c36b7f361a80b30165d600f7760d569a162ff95
+ md5: 1920c3502e7f6688d650ab81cd3775fd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Zlib
+ license_family: Other
+ size: 110843
+ timestamp: 1754587144298
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-ng-2.2.5-h92288e7_0.conda
+ sha256: 09f6778d1d4a07f9ee2a3705f159ab1046039f076215266d7c23f73cc4b36fa4
+ md5: ffbcf78fd47999748154300e9f2a6f39
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Zlib
+ license_family: Other
+ size: 110128
+ timestamp: 1754589877808
+- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.2.5-h55e386d_0.conda
+ sha256: c2942b36c59dbc152254c6e2e15ff21f8900e06e350b1bda4ebf656a2002d5f5
+ md5: 692a62051af2270eb9c24e8f09e88db6
+ depends:
+ - __osx >=10.13
+ - libcxx >=19
+ license: Zlib
+ license_family: Other
+ size: 109093
+ timestamp: 1761842915854
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.2.5-h3470cca_0.conda
+ sha256: 82e3b57478d536b68229d1dbcdabe728fada5dbe77f9238a5fff5fc37a7fa758
+ md5: c86493f35e79c93b04ff0279092b53e2
+ depends:
+ - __osx >=11.0
+ - libcxx >=19
+ license: Zlib
+ license_family: Other
+ size: 87296
+ timestamp: 1761843121173
+- conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.25.0-py314h0f05182_1.conda
+ sha256: e589f694b44084f2e04928cabd5dda46f20544a512be2bdb0d067d498e4ac8d0
+ md5: 2930a6e1c7b3bc5f66172e324a8f5fc3
+ depends:
+ - python
+ - cffi >=1.11
+ - zstd >=1.5.7,<1.5.8.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - zstd >=1.5.7,<1.6.0a0
+ - python_abi 3.14.* *_cp314
+ license: BSD-3-Clause
+ size: 473605
+ timestamp: 1762512687493
+- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.25.0-py314h2e8dab5_1.conda
+ sha256: 051f12494f28f9de8b1bf1a787646c1f675d8eba0ba0eac79ab96ef960d24746
+ md5: db33d0e8888bef6ef78207c5e6106a5b
+ depends:
+ - python
+ - cffi >=1.11
+ - zstd >=1.5.7,<1.5.8.0a0
+ - python 3.14.* *_cp314
+ - libgcc >=14
+ - python_abi 3.14.* *_cp314
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ size: 465094
+ timestamp: 1762512736835
+- conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.25.0-py314hd1e8ddb_1.conda
+ sha256: cf12b4c138eef5160b12990278ac77dec5ca91de60638dd6cf1e60e4331d8087
+ md5: b94712955dc017da312e6f6b4c6d4866
+ depends:
+ - python
+ - cffi >=1.11
+ - zstd >=1.5.7,<1.5.8.0a0
+ - __osx >=10.13
+ - python_abi 3.14.* *_cp314
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ size: 470136
+ timestamp: 1762512696464
+- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.25.0-py314h9d33bd4_1.conda
+ sha256: cdeb350914094e15ec6310f4699fa81120700ca7ab7162a6b3421f9ea9c690b4
+ md5: 8a92a736ab23b4633ac49dcbfcc81e14
+ depends:
+ - python
+ - cffi >=1.11
+ - zstd >=1.5.7,<1.5.8.0a0
+ - python 3.14.* *_cp314
+ - __osx >=11.0
+ - python_abi 3.14.* *_cp314
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ size: 397786
+ timestamp: 1762512730914
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb
md5: 6432cb5d4ac0046c3ac0a8a0f95842f9
@@ -9180,7 +17881,6 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
size: 567578
timestamp: 1742433379869
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda
@@ -9192,21 +17892,8 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
size: 551176
timestamp: 1742433378347
-- conda: https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.7-h53ff00b_2.conda
- sha256: 87e8dcbf7d73553591a224393634704b046b6c3830079aea8ee78e1294db7140
- md5: 20a18d83c156a352419b109053705f03
- depends:
- - libgcc >=13
- - libstdcxx >=13
- - libzlib >=1.3.1,<2.0a0
- license: BSD-3-Clause
- license_family: BSD
- purls: []
- size: 621139
- timestamp: 1742433340967
- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h8210216_2.conda
sha256: c171c43d0c47eed45085112cb00c8c7d4f0caa5a32d47f2daca727e45fb98dca
md5: cd60a4a5a8d6a476b30d8aa4bb49251a
@@ -9215,7 +17902,6 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
size: 485754
timestamp: 1742433356230
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda
@@ -9226,6 +17912,5 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- purls: []
size: 399979
timestamp: 1742433432699
diff --git a/pixi.toml b/pixi.toml
index 4e870a7..53fc5fa 100644
--- a/pixi.toml
+++ b/pixi.toml
@@ -1,7 +1,7 @@
[workspace]
channels = ["conda-forge"]
name = "FANS"
-platforms = ["linux-64", "linux-ppc64le", "linux-aarch64", "osx-arm64", "osx-64"]
+platforms = ["linux-64", "linux-aarch64", "osx-arm64", "osx-64"]
preview = ["pixi-build"]
[dependencies]
@@ -9,21 +9,11 @@ fans = { path = "." }
[feature.dashboard.dependencies]
python = ">=3.14.0,<3.15"
-pytest = ">=8.4.2,<9"
-pre-commit = ">=4.3.0,<5"
-ipykernel = ">=7.0.1,<8"
+pytest = ">=9.0.0,<10"
+pre-commit = ">=4.4.0,<5"
+ipykernel = ">=7.1.0,<8"
time = ">=1.9,<2"
-
-numpy = ">=2.3.4,<3"
-h5py = ">=3.15.1,<4"
-plotly = ">=6.3.1,<7"
-lxml = ">=6.0.2,<7"
-scipy = ">=1.16.2,<2"
-meshio = ">=5.3.5,<6"
-nbformat = ">=5.10.4,<6"
-
-[feature.dashboard.pypi-dependencies]
-MSUtils = {git = "https://github.com/DataAnalyticsEngineering/MSUtils.git"}
+MSUtils = ">=0.1.0,<0.2"
[feature.dashboard.tasks]
pytest = "pytest -v -s"
@@ -57,7 +47,7 @@ dev = { features = ["dev"], no-default-feature = true }
[package]
name = "fans"
-version = "0.5.2"
+version = "0.6.0"
[package.build]
backend = { name = "pixi-build-cmake", version = "*" }
diff --git a/pyfans/micro.cpp b/pyfans/micro.cpp
index f03f9c1..b9f3636 100644
--- a/pyfans/micro.cpp
+++ b/pyfans/micro.cpp
@@ -33,8 +33,8 @@ MicroSimulation::MicroSimulation(int sim_id, char *input_file)
reader.ReadInputFile(input_file);
reader.ReadMS(3);
- matmodel = createMatmodel<3, 6>(reader);
- solver = createSolver<3, 6>(reader, matmodel);
+ matmanager = createMaterialManager<3, 6>(reader);
+ solver = createSolver<3, 6>(reader, matmanager);
}
py::dict MicroSimulation::solve(py::dict macro_data, double dt)
@@ -50,7 +50,7 @@ py::dict MicroSimulation::solve(py::dict macro_data, double dt)
VectorXd homogenized_stress;
- matmodel->setGradient(g0);
+ matmanager->set_gradient(g0);
solver->solve();
diff --git a/pyfans/micro.hpp b/pyfans/micro.hpp
index 463d22a..b6ebc6c 100644
--- a/pyfans/micro.hpp
+++ b/pyfans/micro.hpp
@@ -12,6 +12,7 @@
#include "general.h"
#include "matmodel.h"
+#include "MaterialManager.h"
#include "solver.h"
namespace py = pybind11;
@@ -25,7 +26,7 @@ class MicroSimulation {
int _sim_id;
Reader reader;
// Hardcoding mechanical models because these definitions need information from the input file.
- Matmodel<3, 6> *matmodel;
- Solver<3, 6> *solver;
- double pert_param = 1e-6; // scalar strain perturbation parameter
+ MaterialManager<3, 6> *matmanager;
+ Solver<3, 6> *solver;
+ double pert_param = 1e-6; // scalar strain perturbation parameter
};
diff --git a/src/main.cpp b/src/main.cpp
index 3903bc1..6c69bf6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -12,8 +12,8 @@ void runSolver(Reader &reader)
reader.ReadMS(howmany);
for (size_t load_path_idx = 0; load_path_idx < reader.load_cases.size(); ++load_path_idx) {
- Matmodel *matmodel = createMatmodel(reader);
- Solver *solver = createSolver(reader, matmodel);
+ MaterialManager *matmanager = createMaterialManager(reader);
+ Solver *solver = createSolver(reader, matmanager);
if (reader.world_rank == 0) {
printf("\nβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ Load case %zu/%zu: %zu time steps βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ\n",
@@ -30,13 +30,13 @@ void runSolver(Reader &reader)
solver->enableMixedBC(reader.load_cases[load_path_idx].mbc, time_step_idx);
} else {
const auto &g0 = reader.load_cases[load_path_idx].g0_path[time_step_idx];
- matmodel->setGradient(g0);
+ matmanager->set_gradient(g0);
}
solver->solve();
solver->postprocess(reader, load_path_idx, time_step_idx);
}
delete solver;
- delete matmodel;
+ delete matmanager;
if (reader.world_rank == 0) {
printf("ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ\n");
}
diff --git a/src/reader.cpp b/src/reader.cpp
index 918d0bc..288d4af 100644
--- a/src/reader.cpp
+++ b/src/reader.cpp
@@ -70,6 +70,7 @@ void Reader ::ReadInputFile(char input_fn[])
ifstream i(input_fn);
json j;
i >> j;
+ inputJson = j; // Store complete input JSON for MaterialManager
microstructure = j["microstructure"];
strcpy(ms_filename, microstructure["filepath"].get().c_str());
@@ -90,7 +91,6 @@ void Reader ::ReadInputFile(char input_fn[])
n_it = j["n_it"].get();
problemType = j["problem_type"].get();
- matmodel = j["matmodel"].get();
method = j["method"].get();
// Parse strain_type (optional, defaults to "small")
@@ -113,7 +113,6 @@ void Reader ::ReadInputFile(char input_fn[])
FE_type = "HEX8"; // Default to full integration
}
- json j_mat = j["material_properties"];
resultsToWrite = j["results"].get>(); // Read the results_to_write field
load_cases.clear();
@@ -163,32 +162,6 @@ void Reader ::ReadInputFile(char input_fn[])
printf("# Max iterations: \t %6i\n", n_it);
}
- for (auto it = j_mat.begin(); it != j_mat.end(); ++it) {
- materialProperties[it.key()] = it.value();
-
- if (world_rank == 0) {
- cout << "# " << it.key() << ":\t ";
- if (it.value().is_array()) {
- for (const auto &elem : it.value()) {
- if (elem.is_number()) {
- printf(" %10.5f", elem.get());
- } else if (elem.is_string()) {
- cout << " " << elem.get();
- } else {
- cout << " " << elem;
- }
- }
- } else if (it.value().is_number()) {
- printf(" %10.5f", it.value().get());
- } else if (it.value().is_string()) {
- cout << " " << it.value().get();
- } else {
- cout << " " << it.value();
- }
- printf("\n");
- }
- }
-
} catch (const std::exception &e) {
fprintf(stderr, "ERROR trying to read input file '%s' for FANS\n", input_fn);
exit(10);
diff --git a/test/input_files/test_CompressibleNeoHookean.json b/test/input_files/test_CompressibleNeoHookean.json
index 9a02838..180c96b 100644
--- a/test/input_files/test_CompressibleNeoHookean.json
+++ b/test/input_files/test_CompressibleNeoHookean.json
@@ -6,12 +6,17 @@
},
"problem_type": "mechanical",
- "matmodel": "CompressibleNeoHookean",
"strain_type": "large",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667]
- },
+ "materials": [
+ {
+ "phases": [0,1],
+ "matmodel": "CompressibleNeoHookean",
+ "material_properties": {
+ "bulk_modulus": [62.5000, 222.222],
+ "shear_modulus": [28.8462, 166.6667]
+ }
+ }
+ ],
"FE_type": "HEX8",
"method": "cg",
diff --git a/test/input_files/test_J2Plasticity.json b/test/input_files/test_J2Plasticity.json
index 6d1e231..afce476 100644
--- a/test/input_files/test_J2Plasticity.json
+++ b/test/input_files/test_J2Plasticity.json
@@ -6,20 +6,32 @@
},
"problem_type": "mechanical",
- "matmodel": "J2ViscoPlastic_NonLinearIsotropicHardening",
"strain_type": "small",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667],
- "yield_stress": [0.1, 10000],
- "isotropic_hardening_parameter": [0.0, 0.0],
- "kinematic_hardening_parameter": [0.0, 0.0],
- "viscosity": [1, 1],
- "time_step": 0.01,
-
- "saturation_stress": [0.15, 10000],
- "saturation_exponent": [1000, 1000]
- },
+ "materials": [
+ {
+ "phases": [0],
+ "matmodel": "J2ViscoPlastic_NonLinearIsotropicHardening",
+ "material_properties":{
+ "bulk_modulus": [62.5000],
+ "shear_modulus": [28.8462],
+ "yield_stress": [0.1],
+ "isotropic_hardening_parameter": [0.0],
+ "kinematic_hardening_parameter": [0.0],
+ "viscosity": [1],
+ "time_step": 0.01,
+ "saturation_stress": [0.15],
+ "saturation_exponent": [1000]
+ }
+ },
+ {
+ "phases": [1],
+ "matmodel": "LinearElasticIsotropic",
+ "material_properties": {
+ "bulk_modulus": [222.222],
+ "shear_modulus": [166.6667]
+ }
+ }
+ ],
"FE_type": "HEX8",
"method": "cg",
diff --git a/test/input_files/test_LinearElastic.json b/test/input_files/test_LinearElastic.json
index 16a5603..8396e1b 100644
--- a/test/input_files/test_LinearElastic.json
+++ b/test/input_files/test_LinearElastic.json
@@ -6,12 +6,17 @@
},
"problem_type": "mechanical",
- "matmodel": "LinearElasticIsotropic",
"strain_type": "small",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667]
- },
+ "materials": [
+ {
+ "phases": [0,1],
+ "matmodel": "LinearElasticIsotropic",
+ "material_properties": {
+ "bulk_modulus": [62.5000, 222.222],
+ "shear_modulus": [28.8462, 166.6667]
+ }
+ }
+ ],
"FE_type": "HEX8R",
"method": "cg",
diff --git a/test/input_files/test_LinearThermal.json b/test/input_files/test_LinearThermal.json
index df1211b..4070f37 100644
--- a/test/input_files/test_LinearThermal.json
+++ b/test/input_files/test_LinearThermal.json
@@ -6,11 +6,16 @@
},
"problem_type": "thermal",
- "matmodel": "LinearThermalIsotropic",
"strain_type": "small",
- "material_properties":{
- "conductivity": [1, 10]
- },
+ "materials": [
+ {
+ "phases": [0,1],
+ "matmodel": "LinearThermalIsotropic",
+ "material_properties": {
+ "conductivity": [1, 10]
+ }
+ }
+ ],
"FE_type": "HEX8R",
"method": "cg",
diff --git a/test/input_files/test_MixedBCs.json b/test/input_files/test_MixedBCs.json
index 3205681..5405f93 100644
--- a/test/input_files/test_MixedBCs.json
+++ b/test/input_files/test_MixedBCs.json
@@ -6,14 +6,27 @@
},
"problem_type": "mechanical",
- "matmodel": "PseudoPlasticLinearHardening",
"strain_type": "small",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667],
- "yield_stress": [0.1, 100000],
- "hardening_parameter": [0.0, 0.0]
- },
+ "materials": [
+ {
+ "phases": [0],
+ "matmodel": "PseudoPlasticLinearHardening",
+ "material_properties": {
+ "bulk_modulus": [62.5000],
+ "shear_modulus": [28.8462],
+ "yield_stress": [0.1],
+ "hardening_parameter": [0.0]
+ }
+ },
+ {
+ "phases": [1],
+ "matmodel": "LinearElasticIsotropic",
+ "material_properties": {
+ "bulk_modulus": [222.222],
+ "shear_modulus": [166.6667]
+ }
+ }
+ ],
"FE_type": "HEX8",
"method": "cg",
diff --git a/test/input_files/test_MixedBCs_LargeStrain.json b/test/input_files/test_MixedBCs_LargeStrain.json
index 8815cf9..37a0507 100644
--- a/test/input_files/test_MixedBCs_LargeStrain.json
+++ b/test/input_files/test_MixedBCs_LargeStrain.json
@@ -6,12 +6,17 @@
},
"problem_type": "mechanical",
- "matmodel": "CompressibleNeoHookean",
"strain_type": "large",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667]
- },
+ "materials": [
+ {
+ "phases": [0,1],
+ "matmodel": "CompressibleNeoHookean",
+ "material_properties":{
+ "bulk_modulus": [62.5000, 222.222],
+ "shear_modulus": [28.8462, 166.6667]
+ }
+ }
+ ],
"FE_type": "HEX8",
"method": "cg",
diff --git a/test/input_files/test_PseudoPlastic.json b/test/input_files/test_PseudoPlastic.json
index c092ab2..08062a9 100644
--- a/test/input_files/test_PseudoPlastic.json
+++ b/test/input_files/test_PseudoPlastic.json
@@ -6,16 +6,29 @@
},
"problem_type": "mechanical",
- "matmodel": "PseudoPlasticNonLinearHardening",
"strain_type": "small",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667],
- "yield_stress": [0.1, 10000],
- "hardening_parameter": [0.0, 0.0],
- "hardening_exponent": [0.2, 0.2],
- "eps_0": [0.01, 0.01]
- },
+ "materials": [
+ {
+ "phases": [0],
+ "matmodel": "PseudoPlasticNonLinearHardening",
+ "material_properties": {
+ "bulk_modulus": [62.5000],
+ "shear_modulus": [28.8462],
+ "yield_stress": [0.1],
+ "hardening_parameter": [0.0],
+ "hardening_exponent": [0.2],
+ "eps_0": [0.01]
+ }
+ },
+ {
+ "phases": [1],
+ "matmodel": "LinearElasticIsotropic",
+ "material_properties": {
+ "bulk_modulus": [222.222],
+ "shear_modulus": [166.6667]
+ }
+ }
+ ],
"FE_type": "BBAR",
"method": "cg",
diff --git a/test/test_pyfans/input.json b/test/test_pyfans/input.json
index 09b5881..5bcf924 100644
--- a/test/test_pyfans/input.json
+++ b/test/test_pyfans/input.json
@@ -6,11 +6,17 @@
},
"problem_type": "mechanical",
- "matmodel": "LinearElasticIsotropic",
- "material_properties":{
- "bulk_modulus": [62.5000, 222.222],
- "shear_modulus": [28.8462, 166.6667]
- },
+ "strain_type": "small",
+ "materials": [
+ {
+ "phases": [0,1],
+ "matmodel": "LinearElasticIsotropic",
+ "material_properties": {
+ "bulk_modulus": [62.5000, 222.222],
+ "shear_modulus": [28.8462, 166.6667]
+ }
+ }
+ ],
"method": "cg",
"error_parameters":{