diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e2ef2722ec21..b0cbe1bee0cbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,6 +99,7 @@ dart_option(DART_FAST_DEBUG "Add -O1 option for DEBUG mode build" OFF) dart_option(DART_FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." OFF) dart_option(DART_USE_SYSTEM_IMGUI "Use system ImGui" OFF) +dart_option(DART_BUILD_RERUN "Build with Rerun SDK" OFF) dart_option(DART_IN_CI "Indicate building DART as part of CI" OFF) #=============================================================================== @@ -199,12 +200,12 @@ endif() set_property(CACHE DART_ACTIVE_LOG_LEVEL PROPERTY STRINGS TRACE DEBUG INFO WARN ERROR FATAL OFF) if(DART_BUILD_MODE_DEBUG) - option(DART_TREAT_WARNINGS_AS_ERRORS "Treat warnings as errors" OFF) + dart_option(DART_TREAT_WARNINGS_AS_ERRORS "Treat warnings as errors" OFF) else() - option(DART_TREAT_WARNINGS_AS_ERRORS "Treat warnings as errors" ON) + dart_option(DART_TREAT_WARNINGS_AS_ERRORS "Treat warnings as errors" ON) endif() -option(DART_BUILD_WHEELS "Indicate building dartpy for wheels" OFF) +dart_option(DART_BUILD_WHEELS "Indicate building dartpy for wheels" OFF) #=============================================================================== # Find dependencies diff --git a/cmake/DARTFindDependencies.cmake b/cmake/DARTFindDependencies.cmake index 33af2bb1d0aed..2fd59c7e51bcd 100644 --- a/cmake/DARTFindDependencies.cmake +++ b/cmake/DARTFindDependencies.cmake @@ -132,6 +132,14 @@ option(DART_SKIP_spdlog "If ON, do not use spdlog even if it is found." OFF) mark_as_advanced(DART_SKIP_spdlog) dart_find_package(spdlog) +if(DART_BUILD_RERUN) + include(FetchContent) + FetchContent_Declare(rerun_sdk + URL https://github.com/rerun-io/rerun/releases/download/0.14.1/rerun_cpp_sdk.zip + ) + FetchContent_MakeAvailable(rerun_sdk) +endif() + #-------------------- # Misc. dependencies #-------------------- @@ -139,4 +147,3 @@ dart_find_package(spdlog) # Doxygen find_package(Doxygen QUIET) dart_check_optional_package(DOXYGEN "generating API documentation" "doxygen") - diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index fec298b7637e3..80ffc5064c243 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -30,3 +30,5 @@ add_subdirectory(fetch) # Deprecated examples add_subdirectory(deprecated_examples) + +add_subdirectory(rerun) diff --git a/examples/rerun/CMakeLists.txt b/examples/rerun/CMakeLists.txt index 7d117e0fec73e..e98f2a8104374 100644 --- a/examples/rerun/CMakeLists.txt +++ b/examples/rerun/CMakeLists.txt @@ -1,11 +1,17 @@ cmake_minimum_required(VERSION 3.22.1) get_filename_component(example_name ${CMAKE_CURRENT_LIST_DIR} NAME) +set(example_name example-${example_name}) project(${example_name}) set(required_components utils-urdf) -set(required_libraries dart dart-utils-urdf) +set(required_libraries dart dart-utils-urdf rerun_sdk) + +# TODO: Fix dart_build_example_in_source() to handle this case +if(NOT TARGET rerun_sdk) + return() +endif() if(DART_IN_SOURCE_BUILD) dart_build_example_in_source(${example_name} LINK_LIBRARIES ${required_libraries}) diff --git a/examples/rerun/README.md b/examples/rerun/README.md new file mode 100644 index 0000000000000..965b52cdf07b2 --- /dev/null +++ b/examples/rerun/README.md @@ -0,0 +1,20 @@ +This project is dependent on DART. Please make sure a proper version of DART is +installed before building this project. + +## Build Instructions + +From this directory: + + $ mkdir build + $ cd build + $ cmake .. + $ make + +## Execute Instructions + +Launch the executable from the build directory above: + + $ ./{generated_executable} + +Follow the instructions detailed in the console. + diff --git a/examples/rerun/main.cpp b/examples/rerun/main.cpp new file mode 100644 index 0000000000000..b27ccb4f7122c --- /dev/null +++ b/examples/rerun/main.cpp @@ -0,0 +1,91 @@ +/* + * Copyright (c) 2011-2024, The DART development contributors + * All rights reserved. + * + * The list of contributors can be found at: + * https://github.com/dartsim/dart/blob/main/LICENSE + * + * This file is provided under the following "BSD-style" License: + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include + +#include + +#include + +#include +#include + +using namespace dart; +using namespace dart::common; +using namespace dart::dynamics; +using namespace dart::simulation; +using namespace dart::utils; +using namespace dart::math; +using namespace rerun::demo; + +int main() +{ + auto shape + = std::make_shared(Eigen::Vector3d(0.3, 0.3, 0.3)); + + // Create a box-shaped rigid body + auto skeleton = dynamics::Skeleton::create(); + auto jointAndBody + = skeleton->createJointAndBodyNodePair(); + auto body = jointAndBody.second; + body->createShapeNodeWith< + dynamics::VisualAspect, + dynamics::CollisionAspect, + dynamics::DynamicsAspect>(shape); + + // Create a world and add the rigid body + auto world = simulation::World::create(); + world->addSkeleton(skeleton); + + // Spawn Rerun viewer + const auto rec = rerun::RecordingStream("rerun_example_cpp"); + rec.spawn().exit_on_failure(); + + for (auto i = 0; i < 1000; ++i) { + world->step(); + + for (auto j = 0u; j < world->getNumSkeletons(); ++j) { + auto skel = world->getSkeleton(j); + + for (auto k = 0u; k < skel->getNumBodyNodes(); ++k) { + auto body = skel->getBodyNode(k); + body->eachShapeNodeWith( + [&](const dynamics::ShapeNode* shapeNode) { + const auto& visualAspect = shapeNode->getVisualAspect(); + shapeNode->getTransform(); + const auto& shape = shapeNode->getShape(); + }); + } + } + } +} diff --git a/pixi.lock b/pixi.lock index 261a97c73e894..0d7af450bb033 100644 --- a/pixi.lock +++ b/pixi.lock @@ -12,6 +12,20 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/assimp-5.3.1-hfb0e8fe_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h6b388c4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.2-h4893938_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.3-h137ae52_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-he0cb598_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/black-24.2.0-py312h7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-hfb8ada1_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda @@ -42,7 +56,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/glfw-3.4-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.0-hed5481d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda @@ -54,20 +70,34 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-15.0.2-h6bfc85a_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-15.0.2-h59595ed_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-15.0.2-h59595ed_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-15.0.2-hc6145d9_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-sql-15.0.2-h757c851_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-gandiva-15.0.2-hb016d2e_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-15.0.2-h757c851_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-21_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.82.0-h6fcfa73_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-21_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libccd-double-2.1-h59595ed_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp14-14.0.6-default_h7634d5b_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/libcurl-8.6.0-hca28451_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda @@ -77,21 +107,29 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.48-h71f35ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-21_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm14-14.0.6-hcd5def8_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm16-16.0.6-hb3ce162_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.9.0-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libode-0.16.2-h30efb56_14.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.26-pthreads_h413a1c8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-15.0.2-h352af49_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.4-h91e35bf_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libspral-2023.09.07-h6aa6db2_2.conda @@ -100,8 +138,10 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-ha9c0a0a_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.48.0-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda @@ -126,14 +166,17 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/octomap-1.9.8-h924138e_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openscenegraph-3.6.5-h82d3af2_18.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.0-h1e5e2c1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pagmo-2.19.0-hd049896_6.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.2.0-py312hf3581a9_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pipx-1.4.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2 @@ -141,21 +184,29 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-15.0.2-py312h176e3d2_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.2-hab00c5b_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-50.0-hd3aeb46_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rerun-sdk-0.14.1-py312h9118e91_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.3-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.7-h06160fa_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/scotch-7.0.4-h23d43cc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.28.5-hdbcbe63_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.4.1-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml2-10.0.0-h59595ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h11edf95_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/unixodbc-2.3.12-h661eb56_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom-4.0.0-hee28ff1_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom_headers-1.1.1-h00ab1b0_0.conda @@ -193,6 +244,20 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.6.1-he965462_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/assimp-5.3.1-h460e769_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.2-h6f42f56_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.3-hf5b2fc6_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h232afc9_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/black-24.2.0-py312hb401068_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/bullet-cpp-3.25-h28a66ae_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -221,7 +286,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/glfw-3.4-h10d778d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.0-h31b1b29_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.9-h1951705_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda @@ -232,38 +299,61 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.2-he965462_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-15.0.2-h49b82c4_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-15.0.2-hd427752_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-15.0.2-hd427752_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-15.0.2-h39e3226_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-sql-15.0.2-h1a3ed6a_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-gandiva-15.0.2-h43798cf_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-15.0.2-h1a3ed6a_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-21_osx64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-1.82.0-h99d8d82_6.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-21_osx64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libccd-double-2.1-he965462_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp14-14.0.6-default_hdb78580_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.6.0-h726d00d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.19-ha4e1b8e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.9.3-default_h24e0189_1009.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libidn2-2.3.7-h10d778d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-21_osx64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-hc8e404f_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libode-0.16.2-hede676d_14.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.26-openmp_hfef2a42_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-15.0.2-h089a9f7_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libscotch-7.0.4-hc2ac6e5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h684deea_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libunistring-0.9.10-h0d85af4_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.48.0-h67532ce_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.13.1-he965462_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda @@ -283,33 +373,41 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py312he3a82b2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/octomap-1.9.8-hb8565cd_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.3.1-hf0c8a7f_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openscenegraph-3.6.5-h70c001c_18.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.0-h6c6cd50_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pagmo-2.19.0-h5a6bdd4_6.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pcre-8.45-he49afe7_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-10.2.0-py312h0c70c2f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pipx-1.4.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-ha3d46e9_1008.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-15.0.2-py312hc4c33ac_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.2-h9f0c242_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rerun-sdk-0.14.1-py312hbe1a6d7_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.3-h0dc2134_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/scotch-7.0.4-h52a132a_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.28.5-h73e2aa4_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.4.1-hf0c8a7f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.11.0-h7728843_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tinyxml2-10.0.0-h73e2aa4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/unixodbc-2.3.12-he8a5cf4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/urdfdom-4.0.0-h760acac_1.conda @@ -333,6 +431,20 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.6.1-hb765f3a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/assimp-5.3.1-he63ff86_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.16-h0d2f7a6_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.10-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.14-h93a5062_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-h59ac3ca_6.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.1-hfe5d766_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.6-h9ac2cdb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.3-hb8a1441_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.2-h4398043_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.15-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.3-h0de420c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.267-h2fb64bc_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/black-24.2.0-py312h81bd7bf_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-cpp-3.25-py312h9e53831_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda @@ -361,7 +473,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glfw-3.4-h93a5062_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.0-hc6770e3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-hebf3989_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.9-hd26332c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.3-nompi_h5bb55e9_100.conda @@ -372,39 +486,62 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.1-cxx17_hebf3989_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.2-h13dd4ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-15.0.2-h8eee870_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-15.0.2-hebf3989_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-15.0.2-hebf3989_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-15.0.2-h1f98dca_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-sql-15.0.2-hb095944_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-gandiva-15.0.2-h2c81988_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-15.0.2-h50959cf_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-21_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-1.82.0-h489e689_6.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-21_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libccd-double-2.1-h9a09cb3_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp14-14.0.6-default_h5dc8d65_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.6.0-h2d989ff_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.19-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.80.0-hfc324ee_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.22.0-hbebe991_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.22.0-h8a76758_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.1-h9c18a4f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.9.3-default_h4394839_1009.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libidn2-2.3.7-h93a5062_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-21_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm16-16.0.6-haab561b_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libode-0.16.2-py312h20a0b95_14.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.26-openmp_h6c19121_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-15.0.2-h278d484_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.43-h091b4b1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hbfab5d5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libscotch-7.0.4-hc938e73_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.2-h091b4b1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtasn1-4.19.0-h1a8c8d9_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.6.0-ha8a6c65_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libunistring-0.9.10-h3422bc3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.48.0-h93a5062_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.13.1-hb765f3a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.2-hb547adb_0.conda @@ -424,34 +561,42 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/octomap-1.9.8-hffc8910_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.3.1-hb7217d7_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.2-h9f1df11_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openscenegraph-3.6.5-h71ba0d9_18.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.0-h3d3088e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/p11-kit-0.24.1-h29577a5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pagmo-2.19.0-hcdfd008_6.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre-8.45-hbdafb3b_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.43-h26f9a81_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-10.2.0-py312hac22aec_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pipx-1.4.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-15.0.2-py312h1251918_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.2-hdf0ec26_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rerun-sdk-0.14.1-py312h6a27564_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.3-hb547adb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scotch-7.0.4-heaa5b5c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.28.5-hebf3989_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.12.0-he64bfa9_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.4.1-h7ea286d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2021.11.0-h2ffa867_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tinyxml2-10.0.0-hebf3989_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/unixodbc-2.3.12-h0e2417a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/urdfdom-4.0.0-hecc24e4_1.conda @@ -474,9 +619,24 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/aom-3.6.1-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.2.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/assimp-5.3.1-h81f0834_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-h7613915_8.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.14-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-h3df98b0_6.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-h4e3df0f_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.6-hf0b8b6f_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.3-h96fac68_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.2-h08df315_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.3-h6047f0a_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h558341a_3.conda - conda: https://conda.anaconda.org/conda-forge/win-64/black-24.2.0-py312h2e8e312_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/bullet-cpp-3.25-h2ab9e98_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.27.0-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/cmake-3.22.3-h39d44d4_0.tar.bz2 @@ -506,33 +666,63 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/ipopt-3.14.14-h1709daf_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240116.1-cxx17_h63175ca_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.2-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-15.0.2-h2a83f13_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-15.0.2-h63175ca_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-15.0.2-h63175ca_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-15.0.2-h02312f3_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-15.0.2-h55b4db4_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-15.0.2-h3f2ff47_0_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-15.0.2-h89268de_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-21_win64_mkl.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libboost-1.82.0-h65993cd_6.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-21_win64_mkl.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libccd-double-2.1-h63175ca_3.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.6.0-hd5e4a3a_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.19-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/libflang-5.0.0-h6538335_20180525.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.80.0-h39d0aa6_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.22.0-h9cad5c0_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.22.0-hb581fae_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.62.1-h5273850_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.3-default_haede6df_1009.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-21_win64_mkl.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libode-0.16.2-h53d5487_14.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libparquet-15.0.2-h7ec3a38_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.43-h19919ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.3-h503648d_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2023.09.01-hf8d8778_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.2-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-h6e2ebb7_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.2-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.6-hc3477c8_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/noarch/llvm-meta-5.0.0-0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/metis-5.1.0-h63175ca_1007.conda - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.0.0-h66d3029_49657.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.6.2-h1f49738_4.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ninja-1.11.1-h91493d7_0.conda @@ -540,30 +730,39 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/octomap-1.9.8-h91493d7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/openh264-2.3.1-h63175ca_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openmp-5.0.0-vc14_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/openscenegraph-3.6.5-h2596158_18.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.0-heb0c069_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pagmo-2.19.0-hacce589_6.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pcre-8.45-h0e60522_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.43-h17e33f8_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pillow-10.2.0-py312he768995_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pipx-1.4.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pkg-config-0.29.2-h2bf4dc2_1008.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-15.0.2-py312h85e32bb_0_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.2-h2628c8c_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rerun-sdk-0.14.1-py312h60fbdae_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.12.0-h64d2f7d_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.4.1-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.11.0-h91493d7_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tinyxml2-10.0.0-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/urdfdom-4.0.0-h0b06ded_1.conda @@ -575,6 +774,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.42.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda @@ -825,881 +1026,1868 @@ packages: size: 71042 timestamp: 1660065501192 - kind: conda - name: black - version: 24.2.0 - build: py312h2e8e312_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/black-24.2.0-py312h2e8e312_0.conda - sha256: c4584ef1470f5fc16d3befd6b9b37f81e1965c4d2da1527494c249fcba6be2b0 - md5: 5d5fcecb74b6a686d3603f5685cc751a - depends: - - click >=8.0.0 - - mypy_extensions >=0.4.3 - - packaging >=22.0 - - pathspec >=0.9 - - platformdirs >=2 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 394384 - timestamp: 1708248815652 -- kind: conda - name: black - version: 24.2.0 - build: py312h7900ff3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/black-24.2.0-py312h7900ff3_0.conda - sha256: de4717db993d101061a82bf07c79e4ee577fbf7649c7b527ededdfaae970e531 - md5: eeadc32d6756b009edecabde4a2a3791 + name: attrs + version: 23.2.0 + build: pyh71513ae_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea + md5: 5e4c0743c70186509d1412e03c2d8dfa depends: - - click >=8.0.0 - - mypy_extensions >=0.4.3 - - packaging >=22.0 - - pathspec >=0.9 - - platformdirs >=2 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 + - python >=3.7 license: MIT license_family: MIT - size: 379409 - timestamp: 1708248364398 + size: 54582 + timestamp: 1704011393776 - kind: conda - name: black - version: 24.2.0 - build: py312h81bd7bf_0 + name: aws-c-auth + version: 0.7.16 + build: h0d2f7a6_8 + build_number: 8 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/black-24.2.0-py312h81bd7bf_0.conda - sha256: ec82613d981e5cc4bc56b8d3bee32fd5feb509ac74c2e13861ca551969966034 - md5: 088e764f17394df4dc77b4ab37149234 - depends: - - click >=8.0.0 - - mypy_extensions >=0.4.3 - - packaging >=22.0 - - pathspec >=0.9 - - platformdirs >=2 - - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 380374 - timestamp: 1708248587887 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.16-h0d2f7a6_8.conda + sha256: 82006dd3067f4d09fd8cee0ea9c4836b6ac0c02db68acd001ff5c7b8669522b5 + md5: a37cb159ebfb3d3adc1a351c98c1027f + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + license: Apache-2.0 + license_family: Apache + size: 89205 + timestamp: 1710282202281 - kind: conda - name: black - version: 24.2.0 - build: py312hb401068_0 + name: aws-c-auth + version: 0.7.16 + build: h7613915_8 + build_number: 8 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-h7613915_8.conda + sha256: 9ac4ebfc14faa7377a0df29ebf562d55e04a99d6d72f8ce8bb6a661e4753cde3 + md5: 61c802b7e9c8d6215116c01ce7d582d9 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 99468 + timestamp: 1710282357839 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: h9d28af5_8 + build_number: 8 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/black-24.2.0-py312hb401068_0.conda - sha256: a14480761a3117af0897a2efb9bb152d3420d15cb3d039789dda1073354eb91e - md5: 96a95bf8f65584dc4337f489624896c1 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda + sha256: f75a39577b61fc649e3a8c926b91218ebad6ea78beb2f2b16f90d3ae9493c1c4 + md5: 0b451cddce1ea8f9247b386ba3285edc + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + license: Apache-2.0 + license_family: Apache + size: 90270 + timestamp: 1710282294532 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: haed3651_8 + build_number: 8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda + sha256: 75a540b313e5dc212fc0a6057f8a5bee2dda443f17a5a076bd3ea4d7195d483e + md5: ce96c083829ab2727c942243ac93ffe0 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 103298 + timestamp: 1710281865011 +- kind: conda + name: aws-c-cal + version: 0.6.10 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.10-h677d54c_2.conda + sha256: d4f0fa97a3f6f5a090b0c9ed078fedf6b50f19a406d272f8e4b2b214f074323e + md5: a501703d122cdf7cf38c1bbc8c16f981 depends: - - click >=8.0.0 - - mypy_extensions >=0.4.3 - - packaging >=22.0 - - pathspec >=0.9 - - platformdirs >=2 - - python >=3.12,<3.13.0a0 - - python_abi 3.12.* *_cp312 - license: MIT - license_family: MIT - size: 379530 - timestamp: 1708248469387 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 38986 + timestamp: 1709815581194 - kind: conda - name: bullet-cpp - version: '3.25' - build: h28a66ae_2 + name: aws-c-cal + version: 0.6.10 + build: ha9bf9b1_2 build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bullet-cpp-3.25-h28a66ae_2.conda - sha256: e5d19665dfdd33994a2f10a8b350c4c4b80553696065ff2298532c3c210ced9e - md5: 4baa9dd937762edfc802255d5ba934e7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda + sha256: e45d9f1eb862f566bdea3d3229dfc74f31e647a72198fe04aab58ccc03a30a37 + md5: ce2471034f5459a39636aacc292c96b6 depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - numpy >=1.26.0,<2.0a0 - - python_abi 3.12.* *_cp312 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - license: Zlib - size: 39821068 - timestamp: 1697298613957 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 55421 + timestamp: 1709815095625 - kind: conda - name: bullet-cpp - version: '3.25' - build: h2ab9e98_2 + name: aws-c-cal + version: 0.6.10 + build: hf6fcf4e_2 build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bullet-cpp-3.25-h2ab9e98_2.conda - sha256: 1ab7d9943ef1177892dbf101842e9ea5e2d508933686e14208bc6991a1671cc0 - md5: d8fbf5874e2d5dd6e2d9358b40ef545d + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hf6fcf4e_2.conda + sha256: 800b25ee5590f3ddd9186e225c756b9e5d00d3ecce8c2de5d9343af85213d883 + md5: 7490ede93a75acc3589a2e43f77c79e9 depends: - - numpy >=1.26.0,<2.0a0 - - python_abi 3.12.* *_cp312 + - aws-c-common >=0.9.14,<0.9.15.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: Zlib - size: 15974310 - timestamp: 1697298479323 -- kind: conda - name: bullet-cpp - version: '3.25' - build: hfb8ada1_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-hfb8ada1_2.conda - sha256: f806db7366beaf8f5104296eb05db43ca5995d2af2ebd61233d374177591e617 - md5: 612465ad2322dbd5e73d0de9077bfaa7 - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - numpy >=1.26.0,<2.0a0 - - python_abi 3.12.* *_cp312 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - license: Zlib - size: 42326669 - timestamp: 1697298022245 + license: Apache-2.0 + license_family: Apache + size: 55818 + timestamp: 1709815582485 - kind: conda - name: bullet-cpp - version: '3.25' - build: py312h9e53831_2 + name: aws-c-cal + version: 0.6.10 + build: hf9de6f9_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-cpp-3.25-py312h9e53831_2.conda - sha256: 18caddf1a70ad0cff4acddeadd887a01a2eb092b0c46f1003c9eebf46c0b1ade - md5: 881c22bfef373a918bbd2ac0cf16022f + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda + sha256: cb9b20aeec4cd037117fd0bfe2ae5a0a5f6a08a71f941be0f163bb27c87b98ea + md5: 393dbe9973160cb09cb3594c9246e260 depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - numpy >=1.26.0,<2.0a0 - - python >=3.12,<3.13.0a0 *_cpython - - python_abi 3.12.* *_cp312 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - license: Zlib - size: 39310630 - timestamp: 1697298792654 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 45249 + timestamp: 1709815427644 - kind: conda - name: bzip2 - version: 1.0.8 - build: h10d778d_5 - build_number: 5 + name: aws-c-common + version: 0.9.14 + build: h10d778d_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - license: bzip2-1.0.6 - license_family: BSD - size: 127885 - timestamp: 1699280178474 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda + sha256: 1d207a8aee42700763e6a7801c69721ccc06ce75e62e0e5d8fc6df0197c0a88b + md5: c620ac518f3086eaf4f105f64908a57c + license: Apache-2.0 + license_family: Apache + size: 208228 + timestamp: 1709669491258 - kind: conda - name: bzip2 - version: 1.0.8 - build: h93a5062_5 - build_number: 5 + name: aws-c-common + version: 0.9.14 + build: h93a5062_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f - md5: 1bbc659ca658bfd49a481b5ef7a0f40f - license: bzip2-1.0.6 - license_family: BSD - size: 122325 - timestamp: 1699280294368 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.14-h93a5062_0.conda + sha256: c58aea968814459ef485c1f1aeb889423b0fa808b7c1216d96d5282ff2e796ab + md5: 028bc18a1ef8bb1a4e4d6ec94e9b50da + license: Apache-2.0 + license_family: Apache + size: 203827 + timestamp: 1709669473014 - kind: conda - name: bzip2 - version: 1.0.8 - build: hcfcfb64_5 - build_number: 5 + name: aws-c-common + version: 0.9.14 + build: hcfcfb64_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 - md5: 26eb8ca6ea332b675e11704cce84a3be + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.14-hcfcfb64_0.conda + sha256: 46f4dced6c9d553d65e6f721d51ef43e6a343487a3073299c03a073161d7637f + md5: 169998d49ac3c4800187bfc546e1d165 depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: bzip2-1.0.6 - license_family: BSD - size: 124580 - timestamp: 1699280668742 + license: Apache-2.0 + license_family: Apache + size: 222375 + timestamp: 1709669884758 - kind: conda - name: bzip2 - version: 1.0.8 - build: hd590300_5 - build_number: 5 + name: aws-c-common + version: 0.9.14 + build: hd590300_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 - md5: 69b8b6202a07720f448be700e300ccf4 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda + sha256: c71dd835b1d8c7097c8d152a65680f119a203b73a6a62c5aac414bafe5e997ad + md5: d44fe0d9a6971a4fb245be0055775d9d depends: - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - size: 254228 - timestamp: 1699279927352 -- kind: conda - name: c-ares - version: 1.27.0 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.27.0-h10d778d_0.conda - sha256: a53e14c071dcce756ce80673f2a90a1c6dff695a26bc9f5e54d56b55e76ee3dc - md5: 713dd57081dfe8535eb961b45ed26a0c - license: MIT - license_family: MIT - size: 148568 - timestamp: 1708685147963 -- kind: conda - name: c-ares - version: 1.27.0 - build: h93a5062_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.27.0-h93a5062_0.conda - sha256: a168e53ee462980cd78b324e055afdd00080ded378ca974969a0917eb4ae1ccb - md5: d3579ba506791b1f8f8a16cfc2885326 - license: MIT - license_family: MIT - size: 145697 - timestamp: 1708685057216 + license: Apache-2.0 + license_family: Apache + size: 225655 + timestamp: 1709669368566 - kind: conda - name: c-ares - version: 1.27.0 - build: hd590300_0 + name: aws-c-compression + version: 0.2.18 + build: h4466546_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.27.0-hd590300_0.conda - sha256: 2a5866b19d28cb963fab291a62ff1c884291b9d6f59de14643e52f103e255749 - md5: f6afff0e9ee08d2f1b897881a4f38cdb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda + sha256: 7fcc6a924691f9de65c82fd559cb1cb2ebd121c42da544a9a43623d69a284e23 + md5: b0d9153fc7cfa8dc36b8703e1a59f5f3 depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 163578 - timestamp: 1708684786032 + license: Apache-2.0 + license_family: Apache + size: 19072 + timestamp: 1709815144275 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: h56e8100_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 - md5: 63da060240ab8087b60d1357051ea7d6 - license: ISC - size: 155886 - timestamp: 1706843918052 + name: aws-c-compression + version: 0.2.18 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h677d54c_2.conda + sha256: bbc73d8ec3d760d528f15edad66835d1fe63a035f254e760235e745cf360de20 + md5: 71e953c1c0fac25dd5d65d63d47389d8 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 17911 + timestamp: 1709815495665 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: h8857fd0_0 + name: aws-c-compression + version: 0.2.18 + build: h905ab21_2 + build_number: 2 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - license: ISC - size: 155665 - timestamp: 1706843838227 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda + sha256: 021cee135f0d9b58fbc8d212618cd9bd6bd0012da41a6469edf010b2853dd3ef + md5: ffd7cfb55b1aa4e3eef477583b1ad87d + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 17930 + timestamp: 1709815482244 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb - md5: 2f4327a1cbe7f022401b236e915a5fef - license: ISC - size: 155432 - timestamp: 1706843687645 + name: aws-c-compression + version: 0.2.18 + build: hf6fcf4e_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-hf6fcf4e_2.conda + sha256: ecb5ab2353c4499311fe17c82210955a498526c9563861777b3b0cd6dcc5cfea + md5: 6efdf7af73d7043a00394a2f1b039650 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 22366 + timestamp: 1709815905155 - kind: conda - name: ca-certificates - version: 2024.2.2 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda - sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 - md5: fb416a1795f18dcc5a038bc2dc54edf9 - license: ISC - size: 155725 - timestamp: 1706844034242 + name: aws-c-event-stream + version: 0.4.2 + build: h30f2259_6 + build_number: 6 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda + sha256: 65ea5552f7a87783b75a3ecf6e4acd2aee5357c4275a9932d732ee516acab0a9 + md5: 0923a8e81839b0b2d9787d85d635b196 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 46261 + timestamp: 1710264045535 - kind: conda - name: clang-format-14 - version: 14.0.6 - build: default_h5dc8d65_1 - build_number: 1 + name: aws-c-event-stream + version: 0.4.2 + build: h3df98b0_6 + build_number: 6 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-h3df98b0_6.conda + sha256: 823a4665b3d38a4078b34b6f891bd388400942a3bcbad55b4c6223c559b15de6 + md5: 80ca7e9993f6b0141ae5425a69771a9a + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 54211 + timestamp: 1710264185867 +- kind: conda + name: aws-c-event-stream + version: 0.4.2 + build: h59ac3ca_6 + build_number: 6 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-14-14.0.6-default_h5dc8d65_1.conda - sha256: ac72b3cab09a8b700e8e453763769da7e81299ec9bf8465011900c459fac5415 - md5: a8f37d56372617f8b9f6a2b2abbd0bc2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-h59ac3ca_6.conda + sha256: 86db342fd921f17a50cf7648b45566b2449ac1408a94c2e6cae132b876f1c17c + md5: 7278d0ef10644f95a2dd619b9917e8a2 depends: - - libclang-cpp14 >=14.0.6,<14.1.0a0 - - libcxx >=15.0.7 - - libllvm14 >=14.0.6,<14.1.0a0 - license: Apache-2.0 WITH LLVM-exception + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libcxx >=16 + license: Apache-2.0 license_family: Apache - size: 255444 - timestamp: 1684414159716 + size: 47119 + timestamp: 1710264020154 - kind: conda - name: clang-format-14 - version: 14.0.6 - build: default_h7634d5b_1 - build_number: 1 + name: aws-c-event-stream + version: 0.4.2 + build: he635cd5_6 + build_number: 6 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/clang-format-14-14.0.6-default_h7634d5b_1.conda - sha256: 661e151587a5b022a05a4630f3fac0d4f17675857f18a4036d6f069e2855a49d - md5: ab4b0dcf549899647c1f85013944c73c + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda + sha256: 38a30beabafc1dd86c0264b6746315a1010e541a1b3ed7f97e1702873e5eaa51 + md5: 58fc78e523e35a08423c913751a51fde depends: - - libclang-cpp14 >=14.0.6,<14.1.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 - libgcc-ng >=12 - - libllvm14 >=14.0.6,<14.1.0a0 - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: Apache-2.0 WITH LLVM-exception + license: Apache-2.0 license_family: Apache - size: 260574 - timestamp: 1684407956903 + size: 53665 + timestamp: 1710263650074 - kind: conda - name: clang-format-14 - version: 14.0.6 - build: default_hdb78580_1 - build_number: 1 + name: aws-c-http + version: 0.8.1 + build: h4e3df0f_7 + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-h4e3df0f_7.conda + sha256: 651bdcbe53630bf9665b76c18a6cb21a7b53fe347b03d88c1cb99ed0281c267e + md5: 08ba30d73686a5129f4209c25b31252a + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 180557 + timestamp: 1710264351681 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: hbfc29b2_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda + sha256: 0dc5b73aa31cef3faeeb902a11f12e1244ac241f995d73e4f4e3e0c01622f7a1 + md5: 8476ec099649e9a6de52f7f4d916cd2a + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 194307 + timestamp: 1710263686092 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: hce3b3da_7 + build_number: 7 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/clang-format-14-14.0.6-default_hdb78580_1.conda - sha256: 2a9abbd2ecaf4560fbe47da650066febfb7ed514391fdf92f8aca4d5d602e4da - md5: 834b35ddaa63417e0dcb5c6f0f4036bd + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda + sha256: a3e6bfd71bbc4119da1e79f2bce6094f045112c230b3fd5cc9e6ccd36aba3156 + md5: d287122dfb77c5fa0147fdf368c86d54 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 162710 + timestamp: 1710263951106 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: hfe5d766_7 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.1-hfe5d766_7.conda + sha256: 0a454c1280e87b4bfd3ab1d70498c5f60c62139ddcd06d1a68c39dcd81e05e75 + md5: 4096407e9d908ef9a292980f93034fcd + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 151329 + timestamp: 1710264327114 +- kind: conda + name: aws-c-io + version: 0.14.6 + build: h6b388c4_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h6b388c4_1.conda + sha256: ac74c99bfba553c6b480f1d1b46a26a2edf60721d8fc67e9d5c9a38a5f136ad6 + md5: 77612630a759ab015f5507c0a14ffb89 depends: - - libclang-cpp14 >=14.0.6,<14.1.0a0 - - libcxx >=15.0.7 - - libllvm14 >=14.0.6,<14.1.0a0 - license: Apache-2.0 WITH LLVM-exception + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + - s2n >=1.4.7,<1.4.8.0a0 + license: Apache-2.0 license_family: Apache - size: 257680 - timestamp: 1684412695796 + size: 157894 + timestamp: 1710512765311 - kind: conda - name: click - version: 8.1.7 - build: unix_pyh707e725_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec - md5: f3ad426304898027fc619827ff428eca + name: aws-c-io + version: 0.14.6 + build: h9ac2cdb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.6-h9ac2cdb_1.conda + sha256: 0c3261002064ef40366775b9ca7dc949aa4737ebad60cc9279eb60aa8c2e996f + md5: d40986b6fcf31624581e5196810a976e depends: - - __unix - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 84437 - timestamp: 1692311973840 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 136753 + timestamp: 1710513117268 - kind: conda - name: click - version: 8.1.7 - build: win_pyh7428d3b_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 - md5: 3549ecbceb6cd77b91a105511b7d0786 + name: aws-c-io + version: 0.14.6 + build: hf0b8b6f_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.6-hf0b8b6f_1.conda + sha256: ec85f39204f23e5cb25d92fb04dd874660d6d3322274948f4562c3b4bc7ead22 + md5: 013cbf4550ac67ac4bb74f3357327bda depends: - - __win - - colorama - - python >=3.8 - license: BSD-3-Clause - license_family: BSD - size: 85051 - timestamp: 1692312207348 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 158929 + timestamp: 1710513181053 - kind: conda - name: cmake - version: 3.22.3 - build: h35a7dd9_0 + name: aws-c-io + version: 0.14.6 + build: hf76ed93_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.22.3-h35a7dd9_0.tar.bz2 - sha256: e8947f1f9e87b762b3228fe1a1a1db4b2e8f7c16b15d0103b2e421bdd6361cbf - md5: 4fbd3db11eea9b985d140f1311317418 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_1.conda + sha256: d884c0ede74ce7d17e9512306ba49dd76d7e2f6545e45ca0d791d7a5ba5c03cc + md5: 608b45526d333955b3a8d6b926004880 depends: - - bzip2 >=1.0.8,<2.0a0 - - expat >=2.4.6,<3.0a0 - - libcurl >=7.81.0,<9.0a0 - - libcxx >=12.0.1 - - libuv - - libzlib >=1.2.11,<1.3.0a0 - - ncurses >=6.3,<7.0a0 - - rhash <=1.4.3 - - xz >=5.2.5,<6.0.0a0 - - zlib >=1.2.11,<1.3.0a0 - - zstd >=1.5.2,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 15039003 - timestamp: 1646441301836 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 137750 + timestamp: 1710512891325 - kind: conda - name: cmake - version: 3.22.3 - build: h39d44d4_0 + name: aws-c-mqtt + version: 0.10.3 + build: h96fac68_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/cmake-3.22.3-h39d44d4_0.tar.bz2 - sha256: a2f669df96153d39b366d6c8e91b0447b76d8421a6242555364528fd2df08aea - md5: 69364e0f189ab8f8fb2fa99469797fe6 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.3-h96fac68_2.conda + sha256: 70b62dcf6314a9e1f514fe6f838eb02dfc4a28f4d17723768211a60c28c3429b + md5: 463c0be9e1fb416192174156f58bb2af depends: - - vs2015_runtime >=14.16.27033 - license: BSD-3-Clause - license_family: BSD - size: 13046853 - timestamp: 1646441266314 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 157436 + timestamp: 1710283031953 - kind: conda - name: cmake - version: 3.22.3 - build: h5432695_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.22.3-h5432695_0.tar.bz2 - sha256: 3e424b2bb9da9fb5ab56e427bc7d6371a792db05a6299ed7cdcd1a414763bfa6 - md5: d1969f9bddb9a1b00a46c42437d2e938 + name: aws-c-mqtt + version: 0.10.3 + build: ha335edc_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda + sha256: 99304e5095193b937745d0ce6812d0333186a31c41a51b1e4297ddcd962824eb + md5: c8bacb9a988fd8fb6b560a966c4979a8 depends: - - bzip2 >=1.0.8,<2.0a0 - - expat >=2.4.6,<3.0a0 - - libcurl >=7.81.0,<9.0a0 - - libgcc-ng >=10.3.0 - - libstdcxx-ng >=10.3.0 - - libuv - - libzlib >=1.2.11,<1.3.0a0 - - ncurses >=6.3,<7.0a0 - - rhash <=1.4.3 - - xz >=5.2.5,<6.0.0a0 - - zlib >=1.2.11,<1.3.0a0 - - zstd >=1.5.2,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 16732586 - timestamp: 1646440120964 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 139008 + timestamp: 1710282888188 - kind: conda - name: cmake - version: 3.22.3 - build: he7c8c24_0 + name: aws-c-mqtt + version: 0.10.3 + build: hb8a1441_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.22.3-he7c8c24_0.tar.bz2 - sha256: 5367befd4490784bbcdebda37a15caaf06c1bdd4b5c77a6316b3e310dccf9899 - md5: 7c4a24c5391cd6aea8d1fb6c8631b4c8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.3-hb8a1441_2.conda + sha256: 344ba23eb2cd45105a09d775dd7449e17304b3930d5ff08fbc1426f0f8030b08 + md5: 26421a2d8a329048bb1a5673ce620de5 depends: - - bzip2 >=1.0.8,<2.0a0 - - expat >=2.4.6,<3.0a0 - - libcurl >=7.81.0,<9.0a0 - - libcxx >=12.0.1 - - libuv - - libzlib >=1.2.11,<1.3.0a0 - - ncurses >=6.3,<7.0a0 - - rhash <=1.4.3 - - xz >=5.2.5,<6.0.0a0 - - zlib >=1.2.11,<1.3.0a0 - - zstd >=1.5.2,<1.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 13737939 - timestamp: 1646440952470 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 117955 + timestamp: 1710282576148 - kind: conda - name: collada-dom - version: 2.5.0 - build: h458611f_7 - build_number: 7 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/collada-dom-2.5.0-h458611f_7.conda - sha256: f2c02e01832a38d02da642eecb667b16052ba0f1cdf49dce5b2a3498e0f94066 - md5: a69df9ce90a12bc5688bfa772750a320 + name: aws-c-mqtt + version: 0.10.3 + build: hffff1cc_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda + sha256: 6b2de4a0e6e907310127b1025a0030d023e1051da48ea5821dcc6db094d69ab7 + md5: 14ad8defb307e1edb293c3fc9da8648f depends: - - libboost >=1.82.0,<1.83.0a0 - - libcxx >=15.0.7 - - libxml2 >=2.11.5,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pcre >=8.45,<9.0a0 - - zlib - license: MIT - license_family: MIT - size: 1311591 - timestamp: 1696144496060 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 163172 + timestamp: 1710282530222 - kind: conda - name: collada-dom - version: 2.5.0 - build: h583ae1e_7 - build_number: 7 + name: aws-c-s3 + version: 0.5.2 + build: h08df315_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/collada-dom-2.5.0-h583ae1e_7.conda - sha256: 9c1f23b7b5669f0003a19cd83b6138c003192a3f8e4fa5ca1fc808e070937c83 - md5: e0169117b8ed401607eff011a391dc01 - depends: - - libboost >=1.82.0,<1.83.0a0 - - libxml2 >=2.11.5,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pcre >=8.45,<9.0a0 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.2-h08df315_2.conda + sha256: 2f7af939a87176de471bac1a1c6cc7336c714a64c495f1a5d967e0cfa7bb0e07 + md5: 0a7a232878640624469d3ca4923d146b + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - - zlib - license: MIT - license_family: MIT - size: 1098114 - timestamp: 1696144860190 + license: Apache-2.0 + license_family: Apache + size: 101487 + timestamp: 1710296653111 - kind: conda - name: collada-dom - version: 2.5.0 - build: ha438cbf_7 - build_number: 7 + name: aws-c-s3 + version: 0.5.2 + build: h4398043_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.2-h4398043_2.conda + sha256: 27e90ada0ae6895159a49bc4ed7172b2757cd8fc63e0189dd8cce5d057c6ee06 + md5: 5ddebd5447f4baba6215b1bafcf605dc + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + license: Apache-2.0 + license_family: Apache + size: 90478 + timestamp: 1710296516337 +- kind: conda + name: aws-c-s3 + version: 0.5.2 + build: h4893938_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/collada-dom-2.5.0-ha438cbf_7.conda - sha256: bc803b7bf430e01d19cfa96aff1456a5a14282735bc732e8b003c1918a4bc852 - md5: 30fb9772dd7a2d0daa4efec1eafd4992 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.2-h4893938_2.conda + sha256: 312d67b236c9c6003f92f682c55ff344721f79d50d9a4bcdea44f2144f637642 + md5: 7e24759a8b8ead67ce687f3c31ffd12f depends: - - libboost >=1.82.0,<1.83.0a0 + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libxml2 >=2.11.5,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pcre >=8.45,<9.0a0 - - zlib - license: MIT - license_family: MIT - size: 1844726 - timestamp: 1696143986359 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 105455 + timestamp: 1710296220268 - kind: conda - name: collada-dom - version: 2.5.0 - build: he9a1eb3_7 - build_number: 7 + name: aws-c-s3 + version: 0.5.2 + build: h6f42f56_2 + build_number: 2 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/collada-dom-2.5.0-he9a1eb3_7.conda - sha256: eacd09b91f74aa9098d765233efe6c3c7859ea9cd6c6e1b791dec18fe709e2a4 - md5: 3b76b937e95738a7e0071ca3cb106517 - depends: - - libboost >=1.82.0,<1.83.0a0 - - libcxx >=15.0.7 - - libxml2 >=2.11.5,<3.0.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - pcre >=8.45,<9.0a0 - - zlib - license: MIT - license_family: MIT - size: 1302325 - timestamp: 1696144519897 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.2-h6f42f56_2.conda + sha256: 950a37ab27ec0145a4c92a3524b8862a4f5affec08049dda7b9ab83403969fd6 + md5: 9f5dc9ef044d3c13b0959d04a2005753 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + license: Apache-2.0 + license_family: Apache + size: 91371 + timestamp: 1710296654896 - kind: conda - name: colorama - version: 0.4.6 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - md5: 3faab06a954c2a04039983f2c4a50d99 + name: aws-c-sdkutils + version: 0.1.15 + build: h4466546_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda + sha256: 349a05cf5fbcb3f6f358fc05098b210aa7da4ec3ab6d4719c79bb93b50a629f8 + md5: 258194cedccd33fd8a7b95a8aa105015 depends: - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 25170 - timestamp: 1666700778190 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 55383 + timestamp: 1709830510021 - kind: conda - name: console_bridge - version: 1.0.2 - build: h3e96240_1 - build_number: 1 + name: aws-c-sdkutils + version: 0.1.15 + build: h677d54c_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/console_bridge-1.0.2-h3e96240_1.tar.bz2 - sha256: f39c48eb54adaffe679fc9b3a2a9b9cd78f97e2e9fd555ec7c5fd8a99957bfc5 - md5: e2dde786c16d90869de84d458af36d92 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.15-h677d54c_2.conda + sha256: 02649707625df0c8908fd807f5d599b5f60b90d7b4e0e71953ff10b9aa0f010c + md5: a68e269534f50d5a94107b9b9b6be747 depends: - - libcxx >=12.0.1 - license: BSD-3-Clause - license_family: BSD - size: 17727 - timestamp: 1648912770421 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 48880 + timestamp: 1709830883787 - kind: conda - name: console_bridge - version: 1.0.2 - build: h5362a0b_1 - build_number: 1 + name: aws-c-sdkutils + version: 0.1.15 + build: h905ab21_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda + sha256: 77f58ac3aec0cd987f80e202a8197e123beb13b9b25b0137dd921c7a6ddc86ac + md5: bb1523b7de7ac6f112b1992cfcfb250b + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 50028 + timestamp: 1709830709542 +- kind: conda + name: aws-c-sdkutils + version: 0.1.15 + build: hf6fcf4e_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/console_bridge-1.0.2-h5362a0b_1.tar.bz2 - sha256: 15dd8cd1735c9405ad04d9881c15650fb98bf8e71e5675e98898184e4a731ec6 - md5: 47acc5c1cb921914270dd9fe47ac30db + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-hf6fcf4e_2.conda + sha256: 03f361182431688732e7173f0d71e5778e0616e68d9ebf994d3ecb70483468a0 + md5: 87fb9f67d4c936a704d6a23a748fad77 depends: - - vc >=14.1,<15 - - vs2015_runtime >=14.16.27033 - license: BSD-3-Clause - license_family: BSD - size: 24540 - timestamp: 1648913342231 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 54282 + timestamp: 1709830762581 - kind: conda - name: console_bridge - version: 1.0.2 - build: h924138e_1 - build_number: 1 + name: aws-checksums + version: 0.1.18 + build: h4466546_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2 - sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7 - md5: e891b2b856a57d2b2ddb9ed366e3f2ce + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda + sha256: 9080f064f572ac1747d32b4dff30452ff44ef2df399e6ec7bf9730da1eb99bba + md5: 8a04fc5a5ecaba31f66904b47dcc7797 depends: - - libgcc-ng >=10.3.0 - - libstdcxx-ng >=10.3.0 - license: BSD-3-Clause - license_family: BSD - size: 18460 - timestamp: 1648912649612 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 49940 + timestamp: 1709826415680 - kind: conda - name: console_bridge - version: 1.0.2 - build: hbb4e6a2_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/console_bridge-1.0.2-hbb4e6a2_1.tar.bz2 - sha256: 88f45553af795d551c796e3bb2c29138df1cd99085108e27607f4cb5ce4949ee - md5: cf47b840afb14c99a0a89fc2dacc91df + name: aws-checksums + version: 0.1.18 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-h677d54c_2.conda + sha256: 3a7cc8824a23a39478e479865df20d88c12a954895fb9c8a91152cc76976183a + md5: 21b73ab89b82b17ae50d635ce675fea6 depends: - - libcxx >=12.0.1 - license: BSD-3-Clause - license_family: BSD - size: 17516 - timestamp: 1648912742997 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 48836 + timestamp: 1709826804838 - kind: conda - name: dbus - version: 1.13.6 - build: h5008d03_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 - md5: ecfff944ba3960ecb334b9a2663d708d + name: aws-checksums + version: 0.1.18 + build: h905ab21_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda + sha256: 5760728e7320a01519bcbbae8dcd31b86e819f66c58f641b86b27ce592e5fff3 + md5: f17e778398011e88d45edf58f24c18ae depends: - - expat >=2.4.2,<3.0a0 - - libgcc-ng >=9.4.0 - - libglib >=2.70.2,<3.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 618596 - timestamp: 1640112124844 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 48733 + timestamp: 1709826868797 - kind: conda - name: doxygen - version: 1.10.0 - build: h31cd86e_0 + name: aws-checksums + version: 0.1.18 + build: hf6fcf4e_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.10.0-h31cd86e_0.conda - sha256: 0310342e353693c7514020b87476391a2b6017128208cc34f935a0eed3a9992c - md5: a21b96e7c66b9361a64f0acb302d77d7 + url: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hf6fcf4e_2.conda + sha256: 1a67c0ee80cb2d18bd7cfc9ec1aae2ad78d51adc7ac9442ec70e370bbcef24de + md5: ffa6601a628ccc6ec5eddb0def2db1d2 depends: - - libiconv >=1.17,<2.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: GPL-2.0-only - license_family: GPL - size: 10177685 - timestamp: 1703610218761 -- kind: conda - name: doxygen - version: 1.10.0 - build: h5ff76d1_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.10.0-h5ff76d1_0.conda - sha256: c329a379f8bc8a66bb91527efca44fb17b35ccf6f1dd1efc6b439fafe9ff67d4 - md5: 4b0fd9ed5a22b919a04bc147f9d65654 - depends: - - libcxx >=15 - - libiconv >=1.17,<2.0a0 - license: GPL-2.0-only - license_family: GPL - size: 11525553 - timestamp: 1703609916595 + license: Apache-2.0 + license_family: Apache + size: 52016 + timestamp: 1709827173669 - kind: conda - name: doxygen - version: 1.10.0 - build: h661eb56_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.10.0-h661eb56_0.conda - sha256: b918d14bbeffee69e291833e33d9bf5bfa31f62458168e924c3473eb68a7db96 - md5: 367e84a431d9b19fde5640fdebfcdf91 - depends: - - libgcc-ng >=12 - - libiconv >=1.17,<2.0a0 - - libstdcxx-ng >=12 - license: GPL-2.0-only - license_family: GPL - size: 13297779 - timestamp: 1703609222418 -- kind: conda - name: doxygen - version: 1.10.0 - build: h8fbad5d_0 + name: aws-crt-cpp + version: 0.26.3 + build: h0de420c_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.10.0-h8fbad5d_0.conda - sha256: d609f61b22cb7fc5441a5bf1e6ac989840977cc682e94d726fdcc74c6cd89ea2 - md5: 80aaa05136ea0b7cea754bb28488cc0f - depends: - - libcxx >=15 - - libiconv >=1.17,<2.0a0 - license: GPL-2.0-only - license_family: GPL - size: 10593614 - timestamp: 1703609902689 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.3-h0de420c_2.conda + sha256: 578ffab0c981ea227d5a9d70b32af5bcba58c632d0f8b38d4eb1ed88cc05eaaa + md5: e6d964373064af06199c6e4dff9f174e + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 218109 + timestamp: 1710309757551 - kind: conda - name: eigen - version: 3.4.0 - build: h00ab1b0_0 + name: aws-crt-cpp + version: 0.26.3 + build: h137ae52_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda - sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34 - md5: b1b879d6d093f55dd40d58b5eb2f0699 - depends: + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.3-h137ae52_2.conda + sha256: 596b6d63352b7ae189842dc86510d53438f88d1e2c1d56779eeebc130beef2b6 + md5: 21c8acfdfa31ab5582897dda7c9c8a75 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - libgcc-ng >=12 - libstdcxx-ng >=12 - license: MPL-2.0 - license_family: MOZILLA - size: 1088433 - timestamp: 1690272126173 + license: Apache-2.0 + license_family: Apache + size: 333634 + timestamp: 1710309442818 - kind: conda - name: eigen - version: 3.4.0 - build: h1995070_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda - sha256: c20b3677b16d8907343fce68e7c437184fef7f5ed0a765c104b775f8a485c5c9 - md5: 3691ea3ff568ba38826389bafc717909 - depends: - - libcxx >=15.0.7 - license: MPL-2.0 - license_family: MOZILLA - size: 1087751 - timestamp: 1690275869049 + name: aws-crt-cpp + version: 0.26.3 + build: h6047f0a_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.3-h6047f0a_2.conda + sha256: 1cb3c3f8d0b19dad52eaa64758629f47aea88591cf3bc354fcb87c0923dc9e73 + md5: 5c8a2ba1c7a6477b10d0bcd33ee1202f + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 242851 + timestamp: 1710309795536 - kind: conda - name: eigen - version: 3.4.0 - build: h1c7c39f_0 + name: aws-crt-cpp + version: 0.26.3 + build: hf5b2fc6_2 + build_number: 2 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda - sha256: 187c0677e0cdcdc39aed716687a6290dd5b7f52b49eedaef2ed76be6cd0a5a3d - md5: 5b2cfc277e3d42d84a2a648825761156 - depends: - - libcxx >=15.0.7 - license: MPL-2.0 - license_family: MOZILLA - size: 1090184 - timestamp: 1690272503232 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.3-hf5b2fc6_2.conda + sha256: d4ec9488f2052276b4b119e62b2b08df52deec3e38dc7c57311f51413046de8b + md5: bcea6861674e784e2eb2f1de4f3bac35 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 280273 + timestamp: 1710309758427 - kind: conda - name: eigen - version: 3.4.0 - build: h91493d7_0 + name: aws-sdk-cpp + version: 1.11.267 + build: h232afc9_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h232afc9_3.conda + sha256: d83b5e4728d61f996115251fbb1670b79c6b5c0a02f2f1f458b80a6b06b08eb1 + md5: f707d57fee350a6b47726b2996f8e4e1 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3367065 + timestamp: 1710323636919 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: h2fb64bc_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.267-h2fb64bc_3.conda + sha256: 5ad2be70779844380b8b8567814ed3966ef2efd9c48cc258975cec7f072c9753 + md5: e11e8d3c0ca63039e4b8101a5063fa30 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3423557 + timestamp: 1710323443841 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: h558341a_3 + build_number: 3 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda - sha256: 633a6a8db1f9a010cb0619f3446fb61f62dea348b09615ffae9744ab1001c24c - md5: 305b3ca7023ac046b9a42a48661f6512 - depends: + url: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h558341a_3.conda + sha256: 886817ef6b059f715ab3d93025d5306c5046688fdbdade21f6fb3ce33e053561 + md5: 42633be391d0a113f39356a37ce7ea40 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: MPL-2.0 - license_family: MOZILLA - size: 1089706 - timestamp: 1690273089254 -- kind: conda - name: exceptiongroup - version: 1.2.0 - build: pyhd8ed1ab_2 - build_number: 2 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d - md5: 8d652ea2ee8eaee02ed8dc820bc794aa - depends: - - python >=3.7 - license: MIT and PSF-2.0 - size: 20551 - timestamp: 1704921321122 + license: Apache-2.0 + license_family: Apache + size: 3409008 + timestamp: 1710323920901 - kind: conda - name: expat - version: 2.6.2 - build: h59595ed_0 + name: aws-sdk-cpp + version: 1.11.267 + build: he0cb598_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda - sha256: 89916c536ae5b85bb8bf0cfa27d751e274ea0911f04e4a928744735c14ef5155 - md5: 53fb86322bdb89496d7579fe3f02fd61 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-he0cb598_3.conda + sha256: 55bf5d47ba2591507abb9b2120905cdb0b1834b2867f03c6cff4bb88f7ec7c58 + md5: ca4aebdc89bb9b08b3b6dd68ae09080d depends: - - libexpat 2.6.2 h59595ed_0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libcurl >=8.5.0,<9.0a0 - libgcc-ng >=12 - license: MIT - license_family: MIT - size: 137627 - timestamp: 1710362144873 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3636564 + timestamp: 1710322529863 - kind: conda - name: expat - version: 2.6.2 - build: h63175ca_0 + name: black + version: 24.2.0 + build: py312h2e8e312_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/expat-2.6.2-h63175ca_0.conda - sha256: f5a13d4bc591a4dc210954f492dd59a0ecf9b9d2ab28bf2ece755ca8f69ec1b4 - md5: 52f9dec6758ceb8ce0ea8af9fa13eb1a + url: https://conda.anaconda.org/conda-forge/win-64/black-24.2.0-py312h2e8e312_0.conda + sha256: c4584ef1470f5fc16d3befd6b9b37f81e1965c4d2da1527494c249fcba6be2b0 + md5: 5d5fcecb74b6a686d3603f5685cc751a depends: - - libexpat 2.6.2 h63175ca_0 + - click >=8.0.0 + - mypy_extensions >=0.4.3 + - packaging >=22.0 + - pathspec >=0.9 + - platformdirs >=2 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 229627 - timestamp: 1710362661692 + size: 394384 + timestamp: 1708248815652 - kind: conda - name: expat - version: 2.6.2 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.2-h73e2aa4_0.conda - sha256: 0fd1befb18d9d937358a90d5b8f97ac2402761e9d4295779cbad9d7adfb47976 - md5: dc0882915da2ec74696ad87aa2350f27 + name: black + version: 24.2.0 + build: py312h7900ff3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/black-24.2.0-py312h7900ff3_0.conda + sha256: de4717db993d101061a82bf07c79e4ee577fbf7649c7b527ededdfaae970e531 + md5: eeadc32d6756b009edecabde4a2a3791 depends: - - libexpat 2.6.2 h73e2aa4_0 + - click >=8.0.0 + - mypy_extensions >=0.4.3 + - packaging >=22.0 + - pathspec >=0.9 + - platformdirs >=2 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 126612 - timestamp: 1710362607162 + size: 379409 + timestamp: 1708248364398 - kind: conda - name: expat - version: 2.6.2 - build: hebf3989_0 + name: black + version: 24.2.0 + build: py312h81bd7bf_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.2-hebf3989_0.conda - sha256: 9ac22553a4d595d7e4c9ca9aa09a0b38da65314529a7a7008edc73d3f9e7904a - md5: de0cff0ec74f273c4b6aa281479906c3 + url: https://conda.anaconda.org/conda-forge/osx-arm64/black-24.2.0-py312h81bd7bf_0.conda + sha256: ec82613d981e5cc4bc56b8d3bee32fd5feb509ac74c2e13861ca551969966034 + md5: 088e764f17394df4dc77b4ab37149234 depends: - - libexpat 2.6.2 hebf3989_0 + - click >=8.0.0 + - mypy_extensions >=0.4.3 + - packaging >=22.0 + - pathspec >=0.9 + - platformdirs >=2 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 124594 - timestamp: 1710362455984 -- kind: conda - name: fcl - version: 0.7.0 - build: h613754d_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fcl-0.7.0-h613754d_4.conda - sha256: c3876c21fb40248d0f21d2440e5c75df9adb2bc6d30396060ffbad2a7aa8138c - md5: 2f67b95000e46f2426d6d6001e8d2205 - depends: - - flann >=1.9.2,<1.9.3.0a0 - - libccd-double >=2.1,<2.2.0a0 - - libode >=0.16.2,<0.16.3.0a0 - - octomap >=1.9.8,<1.10.0a0 - license: BSD-3-Clause - license_family: BSD - size: 1043484 - timestamp: 1697961539350 + size: 380374 + timestamp: 1708248587887 - kind: conda - name: fcl - version: 0.7.0 - build: h861072a_4 - build_number: 4 + name: black + version: 24.2.0 + build: py312hb401068_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fcl-0.7.0-h861072a_4.conda - sha256: d05b218586d076ee231095ffc23c69f2fac7d3c14421711e5d2805820ad6b1b3 - md5: af655cc99c0903b5584abdd4d3eaa8b4 + url: https://conda.anaconda.org/conda-forge/osx-64/black-24.2.0-py312hb401068_0.conda + sha256: a14480761a3117af0897a2efb9bb152d3420d15cb3d039789dda1073354eb91e + md5: 96a95bf8f65584dc4337f489624896c1 depends: - - flann >=1.9.2,<1.9.3.0a0 - - libccd-double >=2.1,<2.2.0a0 - - libode >=0.16.2,<0.16.3.0a0 - - octomap >=1.9.8,<1.10.0a0 - license: BSD-3-Clause - license_family: BSD - size: 1186861 + - click >=8.0.0 + - mypy_extensions >=0.4.3 + - packaging >=22.0 + - pathspec >=0.9 + - platformdirs >=2 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 379530 + timestamp: 1708248469387 +- kind: conda + name: bullet-cpp + version: '3.25' + build: h28a66ae_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bullet-cpp-3.25-h28a66ae_2.conda + sha256: e5d19665dfdd33994a2f10a8b350c4c4b80553696065ff2298532c3c210ced9e + md5: 4baa9dd937762edfc802255d5ba934e7 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - numpy >=1.26.0,<2.0a0 + - python_abi 3.12.* *_cp312 + - xorg-libx11 >=1.8.7,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + license: Zlib + size: 39821068 + timestamp: 1697298613957 +- kind: conda + name: bullet-cpp + version: '3.25' + build: h2ab9e98_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bullet-cpp-3.25-h2ab9e98_2.conda + sha256: 1ab7d9943ef1177892dbf101842e9ea5e2d508933686e14208bc6991a1671cc0 + md5: d8fbf5874e2d5dd6e2d9358b40ef545d + depends: + - numpy >=1.26.0,<2.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + size: 15974310 + timestamp: 1697298479323 +- kind: conda + name: bullet-cpp + version: '3.25' + build: hfb8ada1_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-hfb8ada1_2.conda + sha256: f806db7366beaf8f5104296eb05db43ca5995d2af2ebd61233d374177591e617 + md5: 612465ad2322dbd5e73d0de9077bfaa7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - numpy >=1.26.0,<2.0a0 + - python_abi 3.12.* *_cp312 + - xorg-libx11 >=1.8.7,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + license: Zlib + size: 42326669 + timestamp: 1697298022245 +- kind: conda + name: bullet-cpp + version: '3.25' + build: py312h9e53831_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-cpp-3.25-py312h9e53831_2.conda + sha256: 18caddf1a70ad0cff4acddeadd887a01a2eb092b0c46f1003c9eebf46c0b1ade + md5: 881c22bfef373a918bbd2ac0cf16022f + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - numpy >=1.26.0,<2.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - xorg-libx11 >=1.8.7,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + license: Zlib + size: 39310630 + timestamp: 1697298792654 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h10d778d_5 + build_number: 5 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 6097a6ca9ada32699b5fc4312dd6ef18 + license: bzip2-1.0.6 + license_family: BSD + size: 127885 + timestamp: 1699280178474 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h93a5062_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda + sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f + md5: 1bbc659ca658bfd49a481b5ef7a0f40f + license: bzip2-1.0.6 + license_family: BSD + size: 122325 + timestamp: 1699280294368 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hcfcfb64_5 + build_number: 5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda + sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 + md5: 26eb8ca6ea332b675e11704cce84a3be + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + size: 124580 + timestamp: 1699280668742 +- kind: conda + name: bzip2 + version: 1.0.8 + build: hd590300_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 69b8b6202a07720f448be700e300ccf4 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 254228 + timestamp: 1699279927352 +- kind: conda + name: c-ares + version: 1.27.0 + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.27.0-h10d778d_0.conda + sha256: a53e14c071dcce756ce80673f2a90a1c6dff695a26bc9f5e54d56b55e76ee3dc + md5: 713dd57081dfe8535eb961b45ed26a0c + license: MIT + license_family: MIT + size: 148568 + timestamp: 1708685147963 +- kind: conda + name: c-ares + version: 1.27.0 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.27.0-h93a5062_0.conda + sha256: a168e53ee462980cd78b324e055afdd00080ded378ca974969a0917eb4ae1ccb + md5: d3579ba506791b1f8f8a16cfc2885326 + license: MIT + license_family: MIT + size: 145697 + timestamp: 1708685057216 +- kind: conda + name: c-ares + version: 1.27.0 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.27.0-hcfcfb64_0.conda + sha256: 1ab77396e0aaffc6e02508994983c7c6e3bc57019f4a13ac4fda6ee274e30bda + md5: 387d3a2f8fc0ec02f48cee4cd79ec7e0 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 153934 + timestamp: 1708685329364 +- kind: conda + name: c-ares + version: 1.27.0 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.27.0-hd590300_0.conda + sha256: 2a5866b19d28cb963fab291a62ff1c884291b9d6f59de14643e52f103e255749 + md5: f6afff0e9ee08d2f1b897881a4f38cdb + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 163578 + timestamp: 1708684786032 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: h56e8100_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda + sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 + md5: 63da060240ab8087b60d1357051ea7d6 + license: ISC + size: 155886 + timestamp: 1706843918052 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: h8857fd0_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: f2eacee8c33c43692f1ccfd33d0f50b1 + license: ISC + size: 155665 + timestamp: 1706843838227 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hbcca054_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 2f4327a1cbe7f022401b236e915a5fef + license: ISC + size: 155432 + timestamp: 1706843687645 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hf0a4a13_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda + sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 + md5: fb416a1795f18dcc5a038bc2dc54edf9 + license: ISC + size: 155725 + timestamp: 1706844034242 +- kind: conda + name: clang-format-14 + version: 14.0.6 + build: default_h5dc8d65_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-14-14.0.6-default_h5dc8d65_1.conda + sha256: ac72b3cab09a8b700e8e453763769da7e81299ec9bf8465011900c459fac5415 + md5: a8f37d56372617f8b9f6a2b2abbd0bc2 + depends: + - libclang-cpp14 >=14.0.6,<14.1.0a0 + - libcxx >=15.0.7 + - libllvm14 >=14.0.6,<14.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 255444 + timestamp: 1684414159716 +- kind: conda + name: clang-format-14 + version: 14.0.6 + build: default_h7634d5b_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/clang-format-14-14.0.6-default_h7634d5b_1.conda + sha256: 661e151587a5b022a05a4630f3fac0d4f17675857f18a4036d6f069e2855a49d + md5: ab4b0dcf549899647c1f85013944c73c + depends: + - libclang-cpp14 >=14.0.6,<14.1.0a0 + - libgcc-ng >=12 + - libllvm14 >=14.0.6,<14.1.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 260574 + timestamp: 1684407956903 +- kind: conda + name: clang-format-14 + version: 14.0.6 + build: default_hdb78580_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/clang-format-14-14.0.6-default_hdb78580_1.conda + sha256: 2a9abbd2ecaf4560fbe47da650066febfb7ed514391fdf92f8aca4d5d602e4da + md5: 834b35ddaa63417e0dcb5c6f0f4036bd + depends: + - libclang-cpp14 >=14.0.6,<14.1.0a0 + - libcxx >=15.0.7 + - libllvm14 >=14.0.6,<14.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 257680 + timestamp: 1684412695796 +- kind: conda + name: click + version: 8.1.7 + build: unix_pyh707e725_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec + md5: f3ad426304898027fc619827ff428eca + depends: + - __unix + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 84437 + timestamp: 1692311973840 +- kind: conda + name: click + version: 8.1.7 + build: win_pyh7428d3b_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 + md5: 3549ecbceb6cd77b91a105511b7d0786 + depends: + - __win + - colorama + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + size: 85051 + timestamp: 1692312207348 +- kind: conda + name: cmake + version: 3.22.3 + build: h35a7dd9_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.22.3-h35a7dd9_0.tar.bz2 + sha256: e8947f1f9e87b762b3228fe1a1a1db4b2e8f7c16b15d0103b2e421bdd6361cbf + md5: 4fbd3db11eea9b985d140f1311317418 + depends: + - bzip2 >=1.0.8,<2.0a0 + - expat >=2.4.6,<3.0a0 + - libcurl >=7.81.0,<9.0a0 + - libcxx >=12.0.1 + - libuv + - libzlib >=1.2.11,<1.3.0a0 + - ncurses >=6.3,<7.0a0 + - rhash <=1.4.3 + - xz >=5.2.5,<6.0.0a0 + - zlib >=1.2.11,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 15039003 + timestamp: 1646441301836 +- kind: conda + name: cmake + version: 3.22.3 + build: h39d44d4_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/cmake-3.22.3-h39d44d4_0.tar.bz2 + sha256: a2f669df96153d39b366d6c8e91b0447b76d8421a6242555364528fd2df08aea + md5: 69364e0f189ab8f8fb2fa99469797fe6 + depends: + - vs2015_runtime >=14.16.27033 + license: BSD-3-Clause + license_family: BSD + size: 13046853 + timestamp: 1646441266314 +- kind: conda + name: cmake + version: 3.22.3 + build: h5432695_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.22.3-h5432695_0.tar.bz2 + sha256: 3e424b2bb9da9fb5ab56e427bc7d6371a792db05a6299ed7cdcd1a414763bfa6 + md5: d1969f9bddb9a1b00a46c42437d2e938 + depends: + - bzip2 >=1.0.8,<2.0a0 + - expat >=2.4.6,<3.0a0 + - libcurl >=7.81.0,<9.0a0 + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + - libuv + - libzlib >=1.2.11,<1.3.0a0 + - ncurses >=6.3,<7.0a0 + - rhash <=1.4.3 + - xz >=5.2.5,<6.0.0a0 + - zlib >=1.2.11,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 16732586 + timestamp: 1646440120964 +- kind: conda + name: cmake + version: 3.22.3 + build: he7c8c24_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.22.3-he7c8c24_0.tar.bz2 + sha256: 5367befd4490784bbcdebda37a15caaf06c1bdd4b5c77a6316b3e310dccf9899 + md5: 7c4a24c5391cd6aea8d1fb6c8631b4c8 + depends: + - bzip2 >=1.0.8,<2.0a0 + - expat >=2.4.6,<3.0a0 + - libcurl >=7.81.0,<9.0a0 + - libcxx >=12.0.1 + - libuv + - libzlib >=1.2.11,<1.3.0a0 + - ncurses >=6.3,<7.0a0 + - rhash <=1.4.3 + - xz >=5.2.5,<6.0.0a0 + - zlib >=1.2.11,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 13737939 + timestamp: 1646440952470 +- kind: conda + name: collada-dom + version: 2.5.0 + build: h458611f_7 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/collada-dom-2.5.0-h458611f_7.conda + sha256: f2c02e01832a38d02da642eecb667b16052ba0f1cdf49dce5b2a3498e0f94066 + md5: a69df9ce90a12bc5688bfa772750a320 + depends: + - libboost >=1.82.0,<1.83.0a0 + - libcxx >=15.0.7 + - libxml2 >=2.11.5,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre >=8.45,<9.0a0 + - zlib + license: MIT + license_family: MIT + size: 1311591 + timestamp: 1696144496060 +- kind: conda + name: collada-dom + version: 2.5.0 + build: h583ae1e_7 + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/collada-dom-2.5.0-h583ae1e_7.conda + sha256: 9c1f23b7b5669f0003a19cd83b6138c003192a3f8e4fa5ca1fc808e070937c83 + md5: e0169117b8ed401607eff011a391dc01 + depends: + - libboost >=1.82.0,<1.83.0a0 + - libxml2 >=2.11.5,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre >=8.45,<9.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zlib + license: MIT + license_family: MIT + size: 1098114 + timestamp: 1696144860190 +- kind: conda + name: collada-dom + version: 2.5.0 + build: ha438cbf_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/collada-dom-2.5.0-ha438cbf_7.conda + sha256: bc803b7bf430e01d19cfa96aff1456a5a14282735bc732e8b003c1918a4bc852 + md5: 30fb9772dd7a2d0daa4efec1eafd4992 + depends: + - libboost >=1.82.0,<1.83.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.11.5,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre >=8.45,<9.0a0 + - zlib + license: MIT + license_family: MIT + size: 1844726 + timestamp: 1696143986359 +- kind: conda + name: collada-dom + version: 2.5.0 + build: he9a1eb3_7 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/collada-dom-2.5.0-he9a1eb3_7.conda + sha256: eacd09b91f74aa9098d765233efe6c3c7859ea9cd6c6e1b791dec18fe709e2a4 + md5: 3b76b937e95738a7e0071ca3cb106517 + depends: + - libboost >=1.82.0,<1.83.0a0 + - libcxx >=15.0.7 + - libxml2 >=2.11.5,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre >=8.45,<9.0a0 + - zlib + license: MIT + license_family: MIT + size: 1302325 + timestamp: 1696144519897 +- kind: conda + name: colorama + version: 0.4.6 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: 3faab06a954c2a04039983f2c4a50d99 + depends: + - python >=3.7 + license: BSD-3-Clause + license_family: BSD + size: 25170 + timestamp: 1666700778190 +- kind: conda + name: console_bridge + version: 1.0.2 + build: h3e96240_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/console_bridge-1.0.2-h3e96240_1.tar.bz2 + sha256: f39c48eb54adaffe679fc9b3a2a9b9cd78f97e2e9fd555ec7c5fd8a99957bfc5 + md5: e2dde786c16d90869de84d458af36d92 + depends: + - libcxx >=12.0.1 + license: BSD-3-Clause + license_family: BSD + size: 17727 + timestamp: 1648912770421 +- kind: conda + name: console_bridge + version: 1.0.2 + build: h5362a0b_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/console_bridge-1.0.2-h5362a0b_1.tar.bz2 + sha256: 15dd8cd1735c9405ad04d9881c15650fb98bf8e71e5675e98898184e4a731ec6 + md5: 47acc5c1cb921914270dd9fe47ac30db + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: BSD-3-Clause + license_family: BSD + size: 24540 + timestamp: 1648913342231 +- kind: conda + name: console_bridge + version: 1.0.2 + build: h924138e_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2 + sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7 + md5: e891b2b856a57d2b2ddb9ed366e3f2ce + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: BSD-3-Clause + license_family: BSD + size: 18460 + timestamp: 1648912649612 +- kind: conda + name: console_bridge + version: 1.0.2 + build: hbb4e6a2_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/console_bridge-1.0.2-hbb4e6a2_1.tar.bz2 + sha256: 88f45553af795d551c796e3bb2c29138df1cd99085108e27607f4cb5ce4949ee + md5: cf47b840afb14c99a0a89fc2dacc91df + depends: + - libcxx >=12.0.1 + license: BSD-3-Clause + license_family: BSD + size: 17516 + timestamp: 1648912742997 +- kind: conda + name: dbus + version: 1.13.6 + build: h5008d03_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + md5: ecfff944ba3960ecb334b9a2663d708d + depends: + - expat >=2.4.2,<3.0a0 + - libgcc-ng >=9.4.0 + - libglib >=2.70.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 618596 + timestamp: 1640112124844 +- kind: conda + name: doxygen + version: 1.10.0 + build: h31cd86e_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.10.0-h31cd86e_0.conda + sha256: 0310342e353693c7514020b87476391a2b6017128208cc34f935a0eed3a9992c + md5: a21b96e7c66b9361a64f0acb302d77d7 + depends: + - libiconv >=1.17,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-only + license_family: GPL + size: 10177685 + timestamp: 1703610218761 +- kind: conda + name: doxygen + version: 1.10.0 + build: h5ff76d1_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.10.0-h5ff76d1_0.conda + sha256: c329a379f8bc8a66bb91527efca44fb17b35ccf6f1dd1efc6b439fafe9ff67d4 + md5: 4b0fd9ed5a22b919a04bc147f9d65654 + depends: + - libcxx >=15 + - libiconv >=1.17,<2.0a0 + license: GPL-2.0-only + license_family: GPL + size: 11525553 + timestamp: 1703609916595 +- kind: conda + name: doxygen + version: 1.10.0 + build: h661eb56_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.10.0-h661eb56_0.conda + sha256: b918d14bbeffee69e291833e33d9bf5bfa31f62458168e924c3473eb68a7db96 + md5: 367e84a431d9b19fde5640fdebfcdf91 + depends: + - libgcc-ng >=12 + - libiconv >=1.17,<2.0a0 + - libstdcxx-ng >=12 + license: GPL-2.0-only + license_family: GPL + size: 13297779 + timestamp: 1703609222418 +- kind: conda + name: doxygen + version: 1.10.0 + build: h8fbad5d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.10.0-h8fbad5d_0.conda + sha256: d609f61b22cb7fc5441a5bf1e6ac989840977cc682e94d726fdcc74c6cd89ea2 + md5: 80aaa05136ea0b7cea754bb28488cc0f + depends: + - libcxx >=15 + - libiconv >=1.17,<2.0a0 + license: GPL-2.0-only + license_family: GPL + size: 10593614 + timestamp: 1703609902689 +- kind: conda + name: eigen + version: 3.4.0 + build: h00ab1b0_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda + sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34 + md5: b1b879d6d093f55dd40d58b5eb2f0699 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MPL-2.0 + license_family: MOZILLA + size: 1088433 + timestamp: 1690272126173 +- kind: conda + name: eigen + version: 3.4.0 + build: h1995070_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda + sha256: c20b3677b16d8907343fce68e7c437184fef7f5ed0a765c104b775f8a485c5c9 + md5: 3691ea3ff568ba38826389bafc717909 + depends: + - libcxx >=15.0.7 + license: MPL-2.0 + license_family: MOZILLA + size: 1087751 + timestamp: 1690275869049 +- kind: conda + name: eigen + version: 3.4.0 + build: h1c7c39f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda + sha256: 187c0677e0cdcdc39aed716687a6290dd5b7f52b49eedaef2ed76be6cd0a5a3d + md5: 5b2cfc277e3d42d84a2a648825761156 + depends: + - libcxx >=15.0.7 + license: MPL-2.0 + license_family: MOZILLA + size: 1090184 + timestamp: 1690272503232 +- kind: conda + name: eigen + version: 3.4.0 + build: h91493d7_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda + sha256: 633a6a8db1f9a010cb0619f3446fb61f62dea348b09615ffae9744ab1001c24c + md5: 305b3ca7023ac046b9a42a48661f6512 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MPL-2.0 + license_family: MOZILLA + size: 1089706 + timestamp: 1690273089254 +- kind: conda + name: exceptiongroup + version: 1.2.0 + build: pyhd8ed1ab_2 + build_number: 2 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda + sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d + md5: 8d652ea2ee8eaee02ed8dc820bc794aa + depends: + - python >=3.7 + license: MIT and PSF-2.0 + size: 20551 + timestamp: 1704921321122 +- kind: conda + name: expat + version: 2.6.2 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda + sha256: 89916c536ae5b85bb8bf0cfa27d751e274ea0911f04e4a928744735c14ef5155 + md5: 53fb86322bdb89496d7579fe3f02fd61 + depends: + - libexpat 2.6.2 h59595ed_0 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 137627 + timestamp: 1710362144873 +- kind: conda + name: expat + version: 2.6.2 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/expat-2.6.2-h63175ca_0.conda + sha256: f5a13d4bc591a4dc210954f492dd59a0ecf9b9d2ab28bf2ece755ca8f69ec1b4 + md5: 52f9dec6758ceb8ce0ea8af9fa13eb1a + depends: + - libexpat 2.6.2 h63175ca_0 + license: MIT + license_family: MIT + size: 229627 + timestamp: 1710362661692 +- kind: conda + name: expat + version: 2.6.2 + build: h73e2aa4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.2-h73e2aa4_0.conda + sha256: 0fd1befb18d9d937358a90d5b8f97ac2402761e9d4295779cbad9d7adfb47976 + md5: dc0882915da2ec74696ad87aa2350f27 + depends: + - libexpat 2.6.2 h73e2aa4_0 + license: MIT + license_family: MIT + size: 126612 + timestamp: 1710362607162 +- kind: conda + name: expat + version: 2.6.2 + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.2-hebf3989_0.conda + sha256: 9ac22553a4d595d7e4c9ca9aa09a0b38da65314529a7a7008edc73d3f9e7904a + md5: de0cff0ec74f273c4b6aa281479906c3 + depends: + - libexpat 2.6.2 hebf3989_0 + license: MIT + license_family: MIT + size: 124594 + timestamp: 1710362455984 +- kind: conda + name: fcl + version: 0.7.0 + build: h613754d_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fcl-0.7.0-h613754d_4.conda + sha256: c3876c21fb40248d0f21d2440e5c75df9adb2bc6d30396060ffbad2a7aa8138c + md5: 2f67b95000e46f2426d6d6001e8d2205 + depends: + - flann >=1.9.2,<1.9.3.0a0 + - libccd-double >=2.1,<2.2.0a0 + - libode >=0.16.2,<0.16.3.0a0 + - octomap >=1.9.8,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1043484 + timestamp: 1697961539350 +- kind: conda + name: fcl + version: 0.7.0 + build: h861072a_4 + build_number: 4 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fcl-0.7.0-h861072a_4.conda + sha256: d05b218586d076ee231095ffc23c69f2fac7d3c14421711e5d2805820ad6b1b3 + md5: af655cc99c0903b5584abdd4d3eaa8b4 + depends: + - flann >=1.9.2,<1.9.3.0a0 + - libccd-double >=2.1,<2.2.0a0 + - libode >=0.16.2,<0.16.3.0a0 + - octomap >=1.9.8,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1186861 timestamp: 1697961319187 - kind: conda name: fcl @@ -1816,1194 +3004,2035 @@ packages: sha256: 44b91714efd7cb9388f348dd9ca1ede4afcadb2090f514cc77656a826e877f4c md5: 08d463a9d1f6ce078a25ac96eb9e2083 depends: - - aom >=3.6.1,<3.7.0a0 - - bzip2 >=1.0.8,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem + - aom >=3.6.1,<3.7.0a0 + - bzip2 >=1.0.8,<2.0a0 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gmp >=6.2.1,<7.0a0 + - gnutls >=3.7.8,<3.8.0a0 + - lame >=3.100,<3.101.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libva >=2.20.0,<3.0a0 + - libvpx >=1.13.1,<1.14.0a0 + - libxml2 >=2.11.5,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openh264 >=2.3.1,<2.3.2.0a0 + - svt-av1 >=1.4.1,<1.4.2.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 9452373 + timestamp: 1697114721535 +- kind: conda + name: ffmpeg + version: 4.4.2 + build: gpl_hf960ced_113 + build_number: 113 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-4.4.2-gpl_hf960ced_113.conda + sha256: 8877367a1503da0374efeadbc6bf9558e9e4a4b5effef4af15494ddcc88cac8d + md5: 08db712dab040632cf97e4c2ca033f9c + depends: + - aom >=3.6.1,<3.7.0a0 + - bzip2 >=1.0.8,<2.0a0 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - libxml2 >=2.11.5,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openh264 >=2.3.1,<2.3.2.0a0 + - svt-av1 >=1.4.1,<1.4.2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 11014091 + timestamp: 1697116022232 +- kind: conda + name: flann + version: 1.9.2 + build: h23e6bae_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/flann-1.9.2-h23e6bae_0.conda + sha256: ec0c45a9ca79da7f89b5e04b073a7a125e1ff0b145f818d02f8631a9f5abaab7 + md5: 7d1a5c1d346831718059808cad98a642 + depends: + - hdf5 >=1.14.2,<1.14.4.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 4281656 + timestamp: 1697891628423 +- kind: conda + name: flann + version: 1.9.2 + build: h2b5ea80_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-h2b5ea80_0.conda + sha256: eda6991f3c85b8263fec8fb83fc3d64e3d28963659f1c3f18067487d40d69491 + md5: 0846ae36cd85f5e469b630ee74719ad8 + depends: + - _openmp_mutex >=4.5 + - hdf5 >=1.14.2,<1.14.4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1565184 + timestamp: 1697891385570 +- kind: conda + name: flann + version: 1.9.2 + build: h3d5753d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/flann-1.9.2-h3d5753d_0.conda + sha256: 66a74003e554b43f049125e866f9086074a81286a896c8e131b54061c1ac8aea + md5: 4e22b253aae9306ce87cf3058e3fe096 + depends: + - hdf5 >=1.14.2,<1.14.4.0a0 + - llvm-openmp >=16.0.6 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1363714 + timestamp: 1697891726854 +- kind: conda + name: flann + version: 1.9.2 + build: h4ee9f5c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/flann-1.9.2-h4ee9f5c_0.conda + sha256: 9e0ca0eefe2f9a4dfc4011ac6b855b7587c1426f37a675f9e1055d237936e712 + md5: 2515b90cc4811a81f5670b147d9686e2 + depends: + - hdf5 >=1.14.2,<1.14.4.0a0 + - llvm-openmp >=16.0.6 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1513723 + timestamp: 1697891826407 +- kind: conda + name: fmt + version: 10.2.1 + build: h00ab1b0_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 + md5: 35ef8bc24bd34074ebae3c943d551728 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 193853 + timestamp: 1704454679950 +- kind: conda + name: fmt + version: 10.2.1 + build: h181d51b_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda + sha256: 4593d75b6a1e0b5b43fdcba6b968537638a6e469521fb4c3073929f973891828 + md5: 4253b572559cc775cae49def5c97b3c0 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 185170 + timestamp: 1704455079451 +- kind: conda + name: fmt + version: 10.2.1 + build: h2ffa867_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda + sha256: 8570ae6fb7cd1179c646e2c48105e91b3ed8ba15855f12965cc5c9719753c06f + md5: 8cccde6755bdd787f9840f38a34b4e7d + depends: + - libcxx >=15 + license: MIT + license_family: MIT + size: 174209 + timestamp: 1704454873305 +- kind: conda + name: fmt + version: 10.2.1 + build: h7728843_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda + sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc + md5: ab205d53bda43d03f5c5b993ccb406b3 + depends: + - libcxx >=15 + license: MIT + license_family: MIT + size: 181468 + timestamp: 1704454938658 +- kind: conda + name: font-ttf-dejavu-sans-mono + version: '2.37' + build: hab24e00_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: 0c96522c6bdaed4b1566d11387caaf45 + license: BSD-3-Clause + license_family: BSD + size: 397370 + timestamp: 1566932522327 +- kind: conda + name: font-ttf-inconsolata + version: '3.000' + build: h77eed37_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 34893075a5c9e55cdafac56607368fc6 + license: OFL-1.1 + license_family: Other + size: 96530 + timestamp: 1620479909603 +- kind: conda + name: font-ttf-source-code-pro + version: '2.038' + build: h77eed37_0 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 4d59c254e01d9cde7957100457e2d5fb + license: OFL-1.1 + license_family: Other + size: 700814 + timestamp: 1620479612257 +- kind: conda + name: font-ttf-ubuntu + version: '0.83' + build: h77eed37_1 + build_number: 1 + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: 6185f640c43843e5ad6fd1c5372c3f80 + license: LicenseRef-Ubuntu-Font-Licence-Version-1.0 + license_family: Other + size: 1619820 + timestamp: 1700944216729 +- kind: conda + name: fontconfig + version: 2.14.2 + build: h14ed4e7_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda + sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + md5: 0f69b688f52ff6da70bccb7ff7001d1d + depends: + - expat >=2.5.0,<3.0a0 + - freetype >=2.12.1,<3.0a0 + - libgcc-ng >=12 + - libuuid >=2.32.1,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: MIT + license_family: MIT + size: 272010 + timestamp: 1674828850194 +- kind: conda + name: fontconfig + version: 2.14.2 + build: h5bb23bf_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda + sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 + md5: 86cc5867dfbee4178118392bae4a3c89 + depends: + - expat >=2.5.0,<3.0a0 - freetype >=2.12.1,<3.0a0 - - gmp >=6.2.1,<7.0a0 - - gnutls >=3.7.8,<3.8.0a0 - - lame >=3.100,<3.101.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - libva >=2.20.0,<3.0a0 - - libvpx >=1.13.1,<1.14.0a0 - - libxml2 >=2.11.5,<3.0.0a0 - libzlib >=1.2.13,<1.3.0a0 - - openh264 >=2.3.1,<2.3.2.0a0 - - svt-av1 >=1.4.1,<1.4.2.0a0 - - x264 >=1!164.3095,<1!165 - - x265 >=3.5,<3.6.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 9452373 - timestamp: 1697114721535 + license: MIT + license_family: MIT + size: 237068 + timestamp: 1674829100063 - kind: conda - name: ffmpeg - version: 4.4.2 - build: gpl_hf960ced_113 - build_number: 113 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-4.4.2-gpl_hf960ced_113.conda - sha256: 8877367a1503da0374efeadbc6bf9558e9e4a4b5effef4af15494ddcc88cac8d - md5: 08db712dab040632cf97e4c2ca033f9c + name: fontconfig + version: 2.14.2 + build: h82840c6_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda + sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b + md5: f77d47ddb6d3cc5b39b9bdf65635afbb depends: - - aom >=3.6.1,<3.7.0a0 - - bzip2 >=1.0.8,<2.0a0 - - fontconfig >=2.14.2,<3.0a0 - - fonts-conda-ecosystem + - expat >=2.5.0,<3.0a0 - freetype >=2.12.1,<3.0a0 - - libxml2 >=2.11.5,<3.0.0a0 - libzlib >=1.2.13,<1.3.0a0 - - openh264 >=2.3.1,<2.3.2.0a0 - - svt-av1 >=1.4.1,<1.4.2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - x264 >=1!164.3095,<1!165 - - x265 >=3.5,<3.6.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 11014091 - timestamp: 1697116022232 + license: MIT + license_family: MIT + size: 237668 + timestamp: 1674829263740 - kind: conda - name: flann - version: 1.9.2 - build: h23e6bae_0 + name: fontconfig + version: 2.14.2 + build: hbde0cde_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/flann-1.9.2-h23e6bae_0.conda - sha256: ec0c45a9ca79da7f89b5e04b073a7a125e1ff0b145f818d02f8631a9f5abaab7 - md5: 7d1a5c1d346831718059808cad98a642 + url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda + sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 + md5: 08767992f1a4f1336a257af1241034bd depends: - - hdf5 >=1.14.2,<1.14.4.0a0 - - lz4-c >=1.9.3,<1.10.0a0 + - expat >=2.5.0,<3.0a0 + - freetype >=2.12.1,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: BSD-3-Clause - license_family: BSD - size: 4281656 - timestamp: 1697891628423 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 190111 + timestamp: 1674829354122 - kind: conda - name: flann - version: 1.9.2 - build: h2b5ea80_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-h2b5ea80_0.conda - sha256: eda6991f3c85b8263fec8fb83fc3d64e3d28963659f1c3f18067487d40d69491 - md5: 0846ae36cd85f5e469b630ee74719ad8 + name: fonts-conda-ecosystem + version: '1' + build: '0' + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: fee5683a3f04bd15cbd8318b096a27ab depends: - - _openmp_mutex >=4.5 - - hdf5 >=1.14.2,<1.14.4.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - lz4-c >=1.9.3,<1.10.0a0 + - fonts-conda-forge license: BSD-3-Clause license_family: BSD - size: 1565184 - timestamp: 1697891385570 + size: 3667 + timestamp: 1566974674465 - kind: conda - name: flann - version: 1.9.2 - build: h3d5753d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/flann-1.9.2-h3d5753d_0.conda - sha256: 66a74003e554b43f049125e866f9086074a81286a896c8e131b54061c1ac8aea - md5: 4e22b253aae9306ce87cf3058e3fe096 + name: fonts-conda-forge + version: '1' + build: '0' + subdir: noarch + noarch: generic + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: f766549260d6815b0c52253f1fb1bb29 depends: - - hdf5 >=1.14.2,<1.14.4.0a0 - - llvm-openmp >=16.0.6 - - lz4-c >=1.9.3,<1.10.0a0 + - font-ttf-dejavu-sans-mono + - font-ttf-inconsolata + - font-ttf-source-code-pro + - font-ttf-ubuntu license: BSD-3-Clause license_family: BSD - size: 1363714 - timestamp: 1697891726854 + size: 4102 + timestamp: 1566932280397 - kind: conda - name: flann - version: 1.9.2 - build: h4ee9f5c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/flann-1.9.2-h4ee9f5c_0.conda - sha256: 9e0ca0eefe2f9a4dfc4011ac6b855b7587c1426f37a675f9e1055d237936e712 - md5: 2515b90cc4811a81f5670b147d9686e2 + name: freeglut + version: 3.2.2 + build: h63175ca_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/freeglut-3.2.2-h63175ca_2.conda + sha256: 42fd40d97dab1adb63ff0bb001e4ed9b3eef377a2de5e572bf989c6db79262c8 + md5: e2d290a0159d485932abed83878e6952 depends: - - hdf5 >=1.14.2,<1.14.4.0a0 - - llvm-openmp >=16.0.6 - - lz4-c >=1.9.3,<1.10.0a0 - license: BSD-3-Clause - license_family: BSD - size: 1513723 - timestamp: 1697891826407 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 111787 + timestamp: 1684688787619 - kind: conda - name: fmt - version: 10.2.1 - build: h00ab1b0_0 + name: freeglut + version: 3.2.2 + build: hac7e632_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - md5: 35ef8bc24bd34074ebae3c943d551728 + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda + sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f + md5: 6e553df297f6e64668efb54302e0f139 depends: - libgcc-ng >=12 - libstdcxx-ng >=12 + - libxcb >=1.15,<1.16.0a0 + - xorg-libx11 >=1.8.4,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxfixes + - xorg-libxi license: MIT license_family: MIT - size: 193853 - timestamp: 1704454679950 + size: 142933 + timestamp: 1684688443008 - kind: conda - name: fmt - version: 10.2.1 - build: h181d51b_0 + name: freetype + version: 2.12.1 + build: h267a509_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda + sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6 + md5: 9ae35c3d96db2c94ce0cef86efdfa2cb + depends: + - libgcc-ng >=12 + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: GPL-2.0-only OR FTL + size: 634972 + timestamp: 1694615932610 +- kind: conda + name: freetype + version: 2.12.1 + build: h60636b9_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda + sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e + md5: 25152fce119320c980e5470e64834b50 + depends: + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: GPL-2.0-only OR FTL + size: 599300 + timestamp: 1694616137838 +- kind: conda + name: freetype + version: 2.12.1 + build: hadb7bae_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda + sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9 + md5: e6085e516a3e304ce41a8ee08b9b89ad + depends: + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: GPL-2.0-only OR FTL + size: 596430 + timestamp: 1694616332835 +- kind: conda + name: freetype + version: 2.12.1 + build: hdaf720e_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda - sha256: 4593d75b6a1e0b5b43fdcba6b968537638a6e469521fb4c3073929f973891828 - md5: 4253b572559cc775cae49def5c97b3c0 + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda + sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728 + md5: 3761b23693f768dc75a8fd0a73ca053f depends: + - libpng >=1.6.39,<1.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 185170 - timestamp: 1704455079451 + license: GPL-2.0-only OR FTL + size: 510306 + timestamp: 1694616398888 - kind: conda - name: fmt - version: 10.2.1 - build: h2ffa867_0 + name: gettext + version: 0.21.1 + build: h0186832_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda - sha256: 8570ae6fb7cd1179c646e2c48105e91b3ed8ba15855f12965cc5c9719753c06f - md5: 8cccde6755bdd787f9840f38a34b4e7d + url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + md5: 63d2ff6fddfa74e5458488fd311bf635 depends: - - libcxx >=15 - license: MIT - license_family: MIT - size: 174209 - timestamp: 1704454873305 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4021036 + timestamp: 1665674192347 - kind: conda - name: fmt - version: 10.2.1 - build: h7728843_0 + name: gettext + version: 0.21.1 + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + md5: 14947d8770185e5153fdd04d4673ed37 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4320628 + timestamp: 1665673494324 +- kind: conda + name: gettext + version: 0.21.1 + build: h8a4c099_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc - md5: ab205d53bda43d03f5c5b993ccb406b3 + url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 + sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 + md5: 1e3aff29ce703d421c43f371ad676cc5 depends: - - libcxx >=15 - license: MIT - license_family: MIT - size: 181468 - timestamp: 1704454938658 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4153781 + timestamp: 1665674106245 - kind: conda - name: font-ttf-dejavu-sans-mono - version: '2.37' - build: hab24e00_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b - md5: 0c96522c6bdaed4b1566d11387caaf45 + name: gflags + version: 2.2.2 + build: hb1e8313_1004 + build_number: 1004 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 + sha256: 39540f879057ae529cad131644af111a8c3c48b384ec6212de6a5381e0863948 + md5: 3f59cc77a929537e42120faf104e0d16 + depends: + - libcxx >=10.0.1 license: BSD-3-Clause license_family: BSD - size: 397370 - timestamp: 1566932522327 + size: 94612 + timestamp: 1599590973213 - kind: conda - name: font-ttf-inconsolata - version: '3.000' - build: h77eed37_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c - md5: 34893075a5c9e55cdafac56607368fc6 - license: OFL-1.1 - license_family: Other - size: 96530 - timestamp: 1620479909603 + name: gflags + version: 2.2.2 + build: hc88da5d_1004 + build_number: 1004 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2 + sha256: 25d4a20af2e5ace95fdec88970f6d190e77e20074d2f6d3cef766198b76a4289 + md5: aab9ddfad863e9ef81229a1f8852211b + depends: + - libcxx >=11.0.0.rc1 + license: BSD-3-Clause + license_family: BSD + size: 86690 + timestamp: 1599590990520 - kind: conda - name: font-ttf-source-code-pro - version: '2.038' - build: h77eed37_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 - md5: 4d59c254e01d9cde7957100457e2d5fb - license: OFL-1.1 - license_family: Other - size: 700814 - timestamp: 1620479612257 + name: gflags + version: 2.2.2 + build: he1b5a44_1004 + build_number: 1004 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 + sha256: a853c0cacf53cfc59e1bca8d6e5cdfe9f38fce836f08c2a69e35429c2a492e77 + md5: cddaf2c63ea4a5901cf09524c490ecdc + depends: + - libgcc-ng >=7.5.0 + - libstdcxx-ng >=7.5.0 + license: BSD-3-Clause + license_family: BSD + size: 116549 + timestamp: 1594303828933 - kind: conda - name: font-ttf-ubuntu - version: '0.83' - build: h77eed37_1 - build_number: 1 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 - md5: 6185f640c43843e5ad6fd1c5372c3f80 - license: LicenseRef-Ubuntu-Font-Licence-Version-1.0 - license_family: Other - size: 1619820 - timestamp: 1700944216729 + name: glfw + version: '3.4' + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/glfw-3.4-h10d778d_0.conda + sha256: 4429c311b064e19f58b4484ff07346eed2fb862a93db322daaedd1cebd9f7df9 + md5: 1e64b2a03d3978cc25b5b83985275272 + license: Zlib + size: 114753 + timestamp: 1708788983681 - kind: conda - name: fontconfig - version: 2.14.2 - build: h14ed4e7_0 + name: glfw + version: '3.4' + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/glfw-3.4-h93a5062_0.conda + sha256: fd01d62b690e42adf9b9d3fd7f4bbe7185dd8d9fa60aca315137f0367e9c989d + md5: b7bf4ccb27f1e75c9292a218974dcfac + license: Zlib + size: 113768 + timestamp: 1708789054033 +- kind: conda + name: glfw + version: '3.4' + build: hd590300_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda - sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 - md5: 0f69b688f52ff6da70bccb7ff7001d1d + url: https://conda.anaconda.org/conda-forge/linux-64/glfw-3.4-hd590300_0.conda + sha256: 852298b9d1b6e58d8653d943049f7bce0ef3774c87fccd5ac1e8b04d5d702d40 + md5: 4c7a044d25e000fef39b77c10a102ea1 depends: - - expat >=2.5.0,<3.0a0 - - freetype >=2.12.1,<3.0a0 - libgcc-ng >=12 - - libuuid >=2.32.1,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: MIT - license_family: MIT - size: 272010 - timestamp: 1674828850194 + - libxkbcommon >=1.6.0,<2.0a0 + - wayland >=1.22.0,<2.0a0 + - xorg-libx11 >=1.8.7,<2.0a0 + - xorg-libxinerama >=1.1.5,<1.2.0a0 + license: Zlib + size: 167421 + timestamp: 1708788896752 - kind: conda - name: fontconfig - version: 2.14.2 - build: h5bb23bf_0 + name: glog + version: 0.7.0 + build: h31b1b29_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda - sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 - md5: 86cc5867dfbee4178118392bae4a3c89 + url: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.0-h31b1b29_0.conda + sha256: 49d39c6b0c38d9f2badfc37450ea45a40493669561d588ee81d9e5b7ed4478b7 + md5: bda05f8f4c205124348c764dd82db33a depends: - - expat >=2.5.0,<3.0a0 - - freetype >=2.12.1,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: MIT - license_family: MIT - size: 237068 - timestamp: 1674829100063 + - __osx >=10.12 + - gflags >=2.2.2,<2.3.0a0 + - libcxx >=16 + license: BSD-3-Clause + license_family: BSD + size: 115506 + timestamp: 1708261022187 - kind: conda - name: fontconfig - version: 2.14.2 - build: h82840c6_0 + name: glog + version: 0.7.0 + build: hc6770e3_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda - sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b - md5: f77d47ddb6d3cc5b39b9bdf65635afbb + url: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.0-hc6770e3_0.conda + sha256: eba67027affe097ef11e4e9ffbb131a5b2ca3494d1b50e5cc1dd337813b1ab5c + md5: 359f6720ba65b7a38b46a85d5ae13338 depends: - - expat >=2.5.0,<3.0a0 - - freetype >=2.12.1,<3.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: MIT - license_family: MIT - size: 237668 - timestamp: 1674829263740 + - gflags >=2.2.2,<2.3.0a0 + - libcxx >=16 + license: BSD-3-Clause + license_family: BSD + size: 110059 + timestamp: 1708261049813 - kind: conda - name: fontconfig - version: 2.14.2 - build: hbde0cde_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda - sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 - md5: 08767992f1a4f1336a257af1241034bd + name: glog + version: 0.7.0 + build: hed5481d_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.0-hed5481d_0.conda + sha256: 19f41db8f189ed9caec68ffb9ec97d5518b5ee6b58e0636d185f392f688a84a1 + md5: a9ea19c48e11754899299f8123070f4e depends: - - expat >=2.5.0,<3.0a0 - - freetype >=2.12.1,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vs2015_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 190111 - timestamp: 1674829354122 + - gflags >=2.2.2,<2.3.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 143596 + timestamp: 1708260910243 - kind: conda - name: fonts-conda-ecosystem - version: '1' - build: '0' - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - md5: fee5683a3f04bd15cbd8318b096a27ab + name: gmp + version: 6.3.0 + build: h59595ed_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda + sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 + md5: e358c7c5f6824c272b5034b3816438a7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 569852 + timestamp: 1710169507479 +- kind: conda + name: gmp + version: 6.3.0 + build: h73e2aa4_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda + sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 + md5: 92f8d748d95d97f92fc26cfac9bb5b6e depends: - - fonts-conda-forge - license: BSD-3-Clause - license_family: BSD - size: 3667 - timestamp: 1566974674465 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 519804 + timestamp: 1710170159201 - kind: conda - name: fonts-conda-forge - version: '1' - build: '0' - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 - md5: f766549260d6815b0c52253f1fb1bb29 + name: gmp + version: 6.3.0 + build: hebf3989_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-hebf3989_1.conda + sha256: 0ed5aff70675dc0ed5c2f39bb02b908b864e8eee4ceb56e1c798ba8d7509551f + md5: 64f45819921ba710398706e1a6404eb5 depends: - - font-ttf-dejavu-sans-mono - - font-ttf-inconsolata - - font-ttf-source-code-pro - - font-ttf-ubuntu - license: BSD-3-Clause - license_family: BSD - size: 4102 - timestamp: 1566932280397 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 448714 + timestamp: 1710169869298 - kind: conda - name: freeglut - version: 3.2.2 - build: h63175ca_2 - build_number: 2 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/freeglut-3.2.2-h63175ca_2.conda - sha256: 42fd40d97dab1adb63ff0bb001e4ed9b3eef377a2de5e572bf989c6db79262c8 - md5: e2d290a0159d485932abed83878e6952 + name: gnutls + version: 3.7.9 + build: h1951705_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.9-h1951705_0.conda + sha256: 6754e835f78733ddded127e0a044c476be466f67f6b5881b685730590bf8436f + md5: b43bd7c59ff7f7163106a58a493b51f9 depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 111787 - timestamp: 1684688787619 + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - libcxx >=16.0.6 + - libidn2 >=2,<3.0a0 + - libtasn1 >=4.19.0,<5.0a0 + - nettle >=3.9.1,<3.10.0a0 + - p11-kit >=0.24.1,<0.25.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 1980037 + timestamp: 1701111603786 - kind: conda - name: freeglut - version: 3.2.2 - build: hac7e632_2 - build_number: 2 + name: gnutls + version: 3.7.9 + build: hb077bed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda - sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f - md5: 6e553df297f6e64668efb54302e0f139 + url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda + sha256: 52d824a5d2b8a5566cd469cae6ad6920469b5a15b3e0ddc609dd29151be71be2 + md5: 33eded89024f21659b1975886a4acf70 depends: - libgcc-ng >=12 + - libidn2 >=2,<3.0a0 - libstdcxx-ng >=12 - - libxcb >=1.15,<1.16.0a0 - - xorg-libx11 >=1.8.4,<2.0a0 - - xorg-libxau >=1.0.11,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxfixes - - xorg-libxi - license: MIT - license_family: MIT - size: 142933 - timestamp: 1684688443008 + - libtasn1 >=4.19.0,<5.0a0 + - nettle >=3.9.1,<3.10.0a0 + - p11-kit >=0.24.1,<0.25.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 1974935 + timestamp: 1701111180127 - kind: conda - name: freetype - version: 2.12.1 - build: h267a509_2 - build_number: 2 + name: gnutls + version: 3.7.9 + build: hd26332c_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.9-hd26332c_0.conda + sha256: 800eceea27032e6d3edbb0186a76d62ed4e4c05963a7d43b35c2ced9ce27ba68 + md5: 64af58bb3f2a635471dfbe798a1b81f5 + depends: + - __osx >=10.9 + - gettext >=0.21.1,<1.0a0 + - libcxx >=16.0.6 + - libidn2 >=2,<3.0a0 + - libtasn1 >=4.19.0,<5.0a0 + - nettle >=3.9.1,<3.10.0a0 + - p11-kit >=0.24.1,<0.25.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 1829713 + timestamp: 1701110534084 +- kind: conda + name: hdf5 + version: 1.14.3 + build: nompi_h4f84152_100 + build_number: 100 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda - sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6 - md5: 9ae35c3d96db2c94ce0cef86efdfa2cb + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda + sha256: b814f8f9598cc6e50127533ec256725183ba69db5fd8cf5443223627f19e3e59 + md5: d471a5c3abc984b662d9bae3bb7fd8a5 depends: + - libaec >=1.1.2,<2.0a0 + - libcurl >=8.4.0,<9.0a0 - libgcc-ng >=12 - - libpng >=1.6.39,<1.7.0a0 + - libgfortran-ng + - libgfortran5 >=12.3.0 + - libstdcxx-ng >=12 - libzlib >=1.2.13,<1.3.0a0 - license: GPL-2.0-only OR FTL - size: 634972 - timestamp: 1694615932610 + - openssl >=3.2.0,<4.0a0 + license: LicenseRef-HDF5 + license_family: BSD + size: 3892189 + timestamp: 1701791599022 - kind: conda - name: freetype - version: 2.12.1 - build: h60636b9_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda - sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e - md5: 25152fce119320c980e5470e64834b50 + name: hdf5 + version: 1.14.3 + build: nompi_h5bb55e9_100 + build_number: 100 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.3-nompi_h5bb55e9_100.conda + sha256: 22331a0ac71a4dd1868f05f8197c36815a41a9f2dcfd01b73ff0d87d9e0ea087 + md5: 120fefd1da806c4d708ecdfe31263f0c depends: - - libpng >=1.6.39,<1.7.0a0 + - __osx >=10.9 + - libaec >=1.1.2,<2.0a0 + - libcurl >=8.4.0,<9.0a0 + - libcxx >=16.0.6 + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - libgfortran5 >=13.2.0 - libzlib >=1.2.13,<1.3.0a0 - license: GPL-2.0-only OR FTL - size: 599300 - timestamp: 1694616137838 + - openssl >=3.2.0,<4.0a0 + license: LicenseRef-HDF5 + license_family: BSD + size: 3454453 + timestamp: 1701791479858 - kind: conda - name: freetype - version: 2.12.1 - build: hadb7bae_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda - sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9 - md5: e6085e516a3e304ce41a8ee08b9b89ad + name: hdf5 + version: 1.14.3 + build: nompi_h691f4bf_100 + build_number: 100 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda + sha256: 158dd2ab901659b47e8f7ee0ec1d9e45a1fedc4871391a44a1c8b9e8ba4c9c6b + md5: 8e2ac4ae815a8c9743fe37d70f48f075 depends: - - libpng >=1.6.39,<1.7.0a0 + - __osx >=10.9 + - libaec >=1.1.2,<2.0a0 + - libcurl >=8.4.0,<9.0a0 + - libcxx >=16.0.6 + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - libgfortran5 >=13.2.0 - libzlib >=1.2.13,<1.3.0a0 - license: GPL-2.0-only OR FTL - size: 596430 - timestamp: 1694616332835 + - openssl >=3.2.0,<4.0a0 + license: LicenseRef-HDF5 + license_family: BSD + size: 3720132 + timestamp: 1701792909005 - kind: conda - name: freetype - version: 2.12.1 - build: hdaf720e_2 - build_number: 2 + name: hdf5 + version: 1.14.3 + build: nompi_h73e8ff5_100 + build_number: 100 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda - sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728 - md5: 3761b23693f768dc75a8fd0a73ca053f + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_h73e8ff5_100.conda + sha256: 89bbb2c878e1b6c6073ef5f1f25eac97ed48393541a4a44a7d182da5ede3dc98 + md5: 1e91ce0f3a914b0dab762539c0df4ff1 depends: - - libpng >=1.6.39,<1.7.0a0 + - libaec >=1.1.2,<2.0a0 + - libcurl >=8.4.0,<9.0a0 - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.0,<4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: GPL-2.0-only OR FTL - size: 510306 - timestamp: 1694616398888 + license: LicenseRef-HDF5 + license_family: BSD + size: 2045774 + timestamp: 1701791365837 +- kind: conda + name: icu + version: '73.2' + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 + md5: cc47e1facc155f91abd89b11e48e72ff + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 12089150 + timestamp: 1692900650789 - kind: conda - name: gettext - version: 0.21.1 - build: h0186832_0 + name: icu + version: '73.2' + build: hc8870d7_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 - sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e - md5: 63d2ff6fddfa74e5458488fd311bf635 - depends: - - libiconv >=1.17,<2.0a0 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 4021036 - timestamp: 1665674192347 + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1 + md5: 8521bd47c0e11c5902535bb1a17c565f + license: MIT + license_family: MIT + size: 11997841 + timestamp: 1692902104771 - kind: conda - name: gettext - version: 0.21.1 - build: h27087fc_0 + name: icu + version: '73.2' + build: hf5e326d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 + md5: 5cc301d759ec03f28328428e28f65591 + license: MIT + license_family: MIT + size: 11787527 + timestamp: 1692901622519 +- kind: conda + name: imgui + version: 1.90.4 + build: h293081c_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 - sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a - md5: 14947d8770185e5153fdd04d4673ed37 + url: https://conda.anaconda.org/conda-forge/linux-64/imgui-1.90.4-h293081c_1.conda + sha256: 909253d5186afec2b3b5830e49d83de3b354e7b5abe837917d90ede467322b6d + md5: adcd60219476a0a62c9e2fb8be930b59 depends: + - glfw >=3.4,<4.0a0 - libgcc-ng >=12 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 4320628 - timestamp: 1665673494324 + - libstdcxx-ng >=12 + - sdl2 >=2.28.5,<3.0a0 + license: MIT + license_family: MIT + size: 640360 + timestamp: 1709377629179 - kind: conda - name: gettext - version: 0.21.1 - build: h8a4c099_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 - sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 - md5: 1e3aff29ce703d421c43f371ad676cc5 + name: imgui + version: 1.90.4 + build: h3287d9b_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/imgui-1.90.4-h3287d9b_1.conda + sha256: c83ee3e26e34240e8325c2fc9deca274e56fb1b4527a443f4b2a65c2f1c37853 + md5: 93479b68cacde7bbfcc45a31211f8956 depends: - - libiconv >=1.17,<2.0a0 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 4153781 - timestamp: 1665674106245 + - glfw >=3.4,<4.0a0 + - libcxx >=16 + - sdl2 >=2.28.5,<3.0a0 + license: MIT + license_family: MIT + size: 606060 + timestamp: 1709377801922 - kind: conda - name: glfw - version: '3.4' - build: h10d778d_0 + name: imgui + version: 1.90.4 + build: h9157268_1 + build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/glfw-3.4-h10d778d_0.conda - sha256: 4429c311b064e19f58b4484ff07346eed2fb862a93db322daaedd1cebd9f7df9 - md5: 1e64b2a03d3978cc25b5b83985275272 - license: Zlib - size: 114753 - timestamp: 1708788983681 -- kind: conda - name: glfw - version: '3.4' - build: h93a5062_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/glfw-3.4-h93a5062_0.conda - sha256: fd01d62b690e42adf9b9d3fd7f4bbe7185dd8d9fa60aca315137f0367e9c989d - md5: b7bf4ccb27f1e75c9292a218974dcfac - license: Zlib - size: 113768 - timestamp: 1708789054033 + url: https://conda.anaconda.org/conda-forge/osx-64/imgui-1.90.4-h9157268_1.conda + sha256: 63f86fc4b843ce26b85bef3dea2453882cfd973e456a7f8ce078b3962af21b5a + md5: 8633a067540efd8c01b290dec799c8fb + depends: + - __osx >=10.15 + - glfw >=3.4,<4.0a0 + - libcxx >=16 + - sdl2 >=2.28.5,<3.0a0 + license: MIT + license_family: MIT + size: 655943 + timestamp: 1709377938157 - kind: conda - name: glfw - version: '3.4' - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/glfw-3.4-hd590300_0.conda - sha256: 852298b9d1b6e58d8653d943049f7bce0ef3774c87fccd5ac1e8b04d5d702d40 - md5: 4c7a044d25e000fef39b77c10a102ea1 + name: iniconfig + version: 2.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + md5: f800d2da156d08e289b14e87e43c1ae5 depends: - - libgcc-ng >=12 - - libxkbcommon >=1.6.0,<2.0a0 - - wayland >=1.22.0,<2.0a0 - - xorg-libx11 >=1.8.7,<2.0a0 - - xorg-libxinerama >=1.1.5,<1.2.0a0 - license: Zlib - size: 167421 - timestamp: 1708788896752 + - python >=3.7 + license: MIT + license_family: MIT + size: 11101 + timestamp: 1673103208955 - kind: conda - name: gmp - version: 6.3.0 - build: h59595ed_1 + name: intel-openmp + version: 2024.0.0 + build: h57928b3_49841 + build_number: 49841 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.0.0-h57928b3_49841.conda + sha256: 6ee8eb9080bb3268654e015dd17ad79d0c1ea98b2eee6b928ecd27f01d6b38e8 + md5: e3255c8cdaf1d52f15816d1970f9c77a + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 2325424 + timestamp: 1706182537883 +- kind: conda + name: ipopt + version: 3.14.14 + build: h04b96a2_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda - sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 - md5: e358c7c5f6824c272b5034b3816438a7 + url: https://conda.anaconda.org/conda-forge/linux-64/ipopt-3.14.14-h04b96a2_1.conda + sha256: 196622c65a65c28781642befd098a79f3afc485ef25458faa8fa2dc8d8cc7141 + md5: 8e82b739d2ee8eb3b83e7882c18292f3 depends: + - ampl-mp >=3.1.0,<3.2.0a0 + - libblas >=3.9.0,<4.0a0 - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=12.3.0 + - liblapack >=3.9.0,<4.0a0 + - libspral >=2023.9.7,<2023.9.8.0a0 - libstdcxx-ng >=12 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 569852 - timestamp: 1710169507479 + - metis >=5.1.0,<5.1.1.0a0 + - mumps-seq >=5.6.2,<5.6.3.0a0 + license: EPL-1.0 + size: 1020625 + timestamp: 1705695208814 - kind: conda - name: gmp - version: 6.3.0 - build: h73e2aa4_1 + name: ipopt + version: 3.14.14 + build: h09c0c07_1 build_number: 1 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda - sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 - md5: 92f8d748d95d97f92fc26cfac9bb5b6e + url: https://conda.anaconda.org/conda-forge/osx-64/ipopt-3.14.14-h09c0c07_1.conda + sha256: 6d9a8a848a090b2a3f56c872e8ca083650b6200618181ec2fe7db8df4aba9b67 + md5: 500df5bafb93562771057b7093f96dc8 depends: - - libcxx >=16 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 519804 - timestamp: 1710170159201 + - ampl-mp >=3.1.0,<3.2.0a0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=15 + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - metis >=5.1.0,<5.1.1.0a0 + - mumps-seq >=5.6.2,<5.6.3.0a0 + license: EPL-1.0 + size: 819742 + timestamp: 1705695597921 - kind: conda - name: gmp - version: 6.3.0 - build: hebf3989_1 + name: ipopt + version: 3.14.14 + build: h1709daf_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-hebf3989_1.conda - sha256: 0ed5aff70675dc0ed5c2f39bb02b908b864e8eee4ceb56e1c798ba8d7509551f - md5: 64f45819921ba710398706e1a6404eb5 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/ipopt-3.14.14-h1709daf_1.conda + sha256: 99889a51a5cc7d672a8173e1fcfb3ae24a1be1b8aa1bf4977551be975ca75f3b + md5: 372691bce000bdd78d0aab46bc9bf248 depends: - - libcxx >=16 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 448714 - timestamp: 1710169869298 + - libblas >=3.9.0,<4.0a0 + - libflang >=5.0.0,<6.0.0.a0 + - liblapack >=3.9.0,<4.0a0 + - metis >=5.1.0,<5.1.1.0a0 + - mumps-seq >=5.6.2,<5.6.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: EPL-1.0 + size: 906170 + timestamp: 1705695938763 - kind: conda - name: gnutls - version: 3.7.9 - build: h1951705_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.9-h1951705_0.conda - sha256: 6754e835f78733ddded127e0a044c476be466f67f6b5881b685730590bf8436f - md5: b43bd7c59ff7f7163106a58a493b51f9 + name: ipopt + version: 3.14.14 + build: h6639f4a_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ipopt-3.14.14-h6639f4a_1.conda + sha256: 28f8ebe16a0787146f81d9164878d89a29f4473aa03c8f600664e26a38a9ed39 + md5: 7d485b84d4955e999fed77071b7114db depends: - - __osx >=10.9 - - gettext >=0.21.1,<1.0a0 - - libcxx >=16.0.6 - - libidn2 >=2,<3.0a0 - - libtasn1 >=4.19.0,<5.0a0 - - nettle >=3.9.1,<3.10.0a0 - - p11-kit >=0.24.1,<0.25.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 1980037 - timestamp: 1701111603786 + - ampl-mp >=3.1.0,<3.2.0a0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=15 + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - metis >=5.1.0,<5.1.1.0a0 + - mumps-seq >=5.6.2,<5.6.3.0a0 + license: EPL-1.0 + size: 757806 + timestamp: 1705695882554 - kind: conda - name: gnutls - version: 3.7.9 - build: hb077bed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda - sha256: 52d824a5d2b8a5566cd469cae6ad6920469b5a15b3e0ddc609dd29151be71be2 - md5: 33eded89024f21659b1975886a4acf70 + name: isort + version: 5.13.2 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_0.conda + sha256: 78a7e2037029366d2149f73c8d02e93cac903d535e208cc4517808b0b42e85f2 + md5: 1d25ed2b95b92b026aaa795eabec8d91 depends: - - libgcc-ng >=12 - - libidn2 >=2,<3.0a0 - - libstdcxx-ng >=12 - - libtasn1 >=4.19.0,<5.0a0 - - nettle >=3.9.1,<3.10.0a0 - - p11-kit >=0.24.1,<0.25.0a0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 1974935 - timestamp: 1701111180127 + - python >=3.8,<4.0 + - setuptools + license: MIT + license_family: MIT + size: 73783 + timestamp: 1702518633821 - kind: conda - name: gnutls - version: 3.7.9 - build: hd26332c_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.9-hd26332c_0.conda - sha256: 800eceea27032e6d3edbb0186a76d62ed4e4c05963a7d43b35c2ced9ce27ba68 - md5: 64af58bb3f2a635471dfbe798a1b81f5 + name: keyutils + version: 1.6.1 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + md5: 30186d27e2c9fa62b45fb1476b7200e3 depends: - - __osx >=10.9 - - gettext >=0.21.1,<1.0a0 - - libcxx >=16.0.6 - - libidn2 >=2,<3.0a0 - - libtasn1 >=4.19.0,<5.0a0 - - nettle >=3.9.1,<3.10.0a0 - - p11-kit >=0.24.1,<0.25.0a0 + - libgcc-ng >=10.3.0 license: LGPL-2.1-or-later - license_family: LGPL - size: 1829713 - timestamp: 1701110534084 + size: 117831 + timestamp: 1646151697040 - kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_h4f84152_100 - build_number: 100 + name: krb5 + version: 1.21.2 + build: h659d440_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda - sha256: b814f8f9598cc6e50127533ec256725183ba69db5fd8cf5443223627f19e3e59 - md5: d471a5c3abc984b662d9bae3bb7fd8a5 + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: cd95826dbd331ed1be26bdf401432844 depends: - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.4.0,<9.0a0 + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - libstdcxx-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: LicenseRef-HDF5 - license_family: BSD - size: 3892189 - timestamp: 1701791599022 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + size: 1371181 + timestamp: 1692097755782 - kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_h5bb55e9_100 - build_number: 100 + name: krb5 + version: 1.21.2 + build: h92f50d5_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.3-nompi_h5bb55e9_100.conda - sha256: 22331a0ac71a4dd1868f05f8197c36815a41a9f2dcfd01b73ff0d87d9e0ea087 - md5: 120fefd1da806c4d708ecdfe31263f0c + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda + sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875 + md5: 92f1cff174a538e0722bf2efb16fc0b2 depends: - - __osx >=10.9 - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.4.0,<9.0a0 - - libcxx >=16.0.6 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: LicenseRef-HDF5 - license_family: BSD - size: 3454453 - timestamp: 1701791479858 + - libcxx >=15.0.7 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + size: 1195575 + timestamp: 1692098070699 - kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_h691f4bf_100 - build_number: 100 + name: krb5 + version: 1.21.2 + build: hb884880_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda - sha256: 158dd2ab901659b47e8f7ee0ec1d9e45a1fedc4871391a44a1c8b9e8ba4c9c6b - md5: 8e2ac4ae815a8c9743fe37d70f48f075 + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: 80505a68783f01dc8d7308c075261b2f depends: - - __osx >=10.9 - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.4.0,<9.0a0 - - libcxx >=16.0.6 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 - license: LicenseRef-HDF5 - license_family: BSD - size: 3720132 - timestamp: 1701792909005 + - libcxx >=15.0.7 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + size: 1183568 + timestamp: 1692098004387 - kind: conda - name: hdf5 - version: 1.14.3 - build: nompi_h73e8ff5_100 - build_number: 100 + name: krb5 + version: 1.21.2 + build: heb0366b_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_h73e8ff5_100.conda - sha256: 89bbb2c878e1b6c6073ef5f1f25eac97ed48393541a4a44a7d182da5ede3dc98 - md5: 1e91ce0f3a914b0dab762539c0df4ff1 + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda + sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b + md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 depends: - - libaec >=1.1.2,<2.0a0 - - libcurl >=8.4.0,<9.0a0 - - libzlib >=1.2.13,<1.3.0a0 - - openssl >=3.2.0,<4.0a0 + - openssl >=3.1.2,<4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: LicenseRef-HDF5 - license_family: BSD - size: 2045774 - timestamp: 1701791365837 + license: MIT + license_family: MIT + size: 710894 + timestamp: 1692098129546 - kind: conda - name: icu - version: '73.2' - build: h59595ed_0 + name: lame + version: '3.100' + build: h166bdaf_1003 + build_number: 1003 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 - md5: cc47e1facc155f91abd89b11e48e72ff + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: a8832b479f93521a9e7b5b743803be51 depends: - libgcc-ng >=12 - - libstdcxx-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- kind: conda + name: lame + version: '3.100' + build: h1a8c8d9_1003 + build_number: 1003 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + md5: bff0e851d66725f78dc2fd8b032ddb7e + license: LGPL-2.0-only + license_family: LGPL + size: 528805 + timestamp: 1664996399305 +- kind: conda + name: lame + version: '3.100' + build: hb7f2c08_1003 + build_number: 1003 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 + sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e + md5: 3342b33c9a0921b22b767ed68ee25861 + license: LGPL-2.0-only + license_family: LGPL + size: 542681 + timestamp: 1664996421531 +- kind: conda + name: lcms2 + version: '2.16' + build: h67d730c_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda + sha256: f9fd9e80e46358a57d9bb97b1e37a03da4022143b019aa3c4476d8a7795de290 + md5: d3592435917b62a8becff3a60db674f6 + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 12089150 - timestamp: 1692900650789 + size: 507632 + timestamp: 1701648249706 - kind: conda - name: icu - version: '73.2' - build: hc8870d7_0 + name: lcms2 + version: '2.16' + build: ha0e7c42_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda - sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1 - md5: 8521bd47c0e11c5902535bb1a17c565f + url: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda + sha256: 151e0c84feb7e0747fabcc85006b8973b22f5abbc3af76a9add0b0ef0320ebe4 + md5: 66f6c134e76fe13cce8a9ea5814b5dd5 + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 license: MIT license_family: MIT - size: 11997841 - timestamp: 1692902104771 + size: 211959 + timestamp: 1701647962657 - kind: conda - name: icu - version: '73.2' - build: hf5e326d_0 + name: lcms2 + version: '2.16' + build: ha2f27b4_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 - md5: 5cc301d759ec03f28328428e28f65591 + url: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda + sha256: 222ebc0a55544b9922f61e75015d02861e65b48f12113af41d48ba0814e14e4e + md5: 1442db8f03517834843666c422238c9b + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 license: MIT license_family: MIT - size: 11787527 - timestamp: 1692901622519 + size: 224432 + timestamp: 1701648089496 - kind: conda - name: imgui - version: 1.90.4 - build: h293081c_1 - build_number: 1 + name: lcms2 + version: '2.16' + build: hb7c19ff_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/imgui-1.90.4-h293081c_1.conda - sha256: 909253d5186afec2b3b5830e49d83de3b354e7b5abe837917d90ede467322b6d - md5: adcd60219476a0a62c9e2fb8be930b59 + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda + sha256: 5c878d104b461b7ef922abe6320711c0d01772f4cd55de18b674f88547870041 + md5: 51bb7010fc86f70eee639b4bb7a894f5 depends: - - glfw >=3.4,<4.0a0 - libgcc-ng >=12 - - libstdcxx-ng >=12 - - sdl2 >=2.28.5,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 license: MIT license_family: MIT - size: 640360 - timestamp: 1709377629179 + size: 245247 + timestamp: 1701647787198 - kind: conda - name: imgui - version: 1.90.4 - build: h3287d9b_1 - build_number: 1 + name: ld_impl_linux-64 + version: '2.40' + build: h41732ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: 7aca3059a1729aa76c597603f10b0dd3 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + size: 704696 + timestamp: 1674833944779 +- kind: conda + name: lerc + version: 4.0.0 + build: h27087fc_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 76bbff344f0134279f225174e9064c8f + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 281798 + timestamp: 1657977462600 +- kind: conda + name: lerc + version: 4.0.0 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: 1900cb3cab5055833cfddb0ba233b074 + depends: + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30037 + license: Apache-2.0 + license_family: Apache + size: 194365 + timestamp: 1657977692274 +- kind: conda + name: lerc + version: 4.0.0 + build: h9a09cb3_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/imgui-1.90.4-h3287d9b_1.conda - sha256: c83ee3e26e34240e8325c2fc9deca274e56fb1b4527a443f4b2a65c2f1c37853 - md5: 93479b68cacde7bbfcc45a31211f8956 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + md5: de462d5aacda3b30721b512c5da4e742 depends: - - glfw >=3.4,<4.0a0 - - libcxx >=16 - - sdl2 >=2.28.5,<3.0a0 - license: MIT - license_family: MIT - size: 606060 - timestamp: 1709377801922 + - libcxx >=13.0.1 + license: Apache-2.0 + license_family: Apache + size: 215721 + timestamp: 1657977558796 - kind: conda - name: imgui - version: 1.90.4 - build: h9157268_1 - build_number: 1 + name: lerc + version: 4.0.0 + build: hb486fe8_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/imgui-1.90.4-h9157268_1.conda - sha256: 63f86fc4b843ce26b85bef3dea2453882cfd973e456a7f8ce078b3962af21b5a - md5: 8633a067540efd8c01b290dec799c8fb + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + md5: f9d6a4c82889d5ecedec1d90eb673c55 depends: - - __osx >=10.15 - - glfw >=3.4,<4.0a0 - - libcxx >=16 - - sdl2 >=2.28.5,<3.0a0 - license: MIT - license_family: MIT - size: 655943 - timestamp: 1709377938157 + - libcxx >=13.0.1 + license: Apache-2.0 + license_family: Apache + size: 290319 + timestamp: 1657977526749 - kind: conda - name: iniconfig - version: 2.0.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - md5: f800d2da156d08e289b14e87e43c1ae5 + name: libabseil + version: '20240116.1' + build: cxx17_h59595ed_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda + sha256: 9951421311285dd4335ad3aceffb223a4d3bc90fb804245508cd27aceb184a29 + md5: 75648bc5dd3b8eab22406876c24d81ec depends: - - python >=3.7 - license: MIT - license_family: MIT - size: 11101 - timestamp: 1673103208955 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + constrains: + - libabseil-static =20240116.1=cxx17* + - abseil-cpp =20240116.1 + license: Apache-2.0 + license_family: Apache + size: 1266503 + timestamp: 1709159756788 - kind: conda - name: intel-openmp - version: 2024.0.0 - build: h57928b3_49841 - build_number: 49841 + name: libabseil + version: '20240116.1' + build: cxx17_h63175ca_2 + build_number: 2 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.0.0-h57928b3_49841.conda - sha256: 6ee8eb9080bb3268654e015dd17ad79d0c1ea98b2eee6b928ecd27f01d6b38e8 - md5: e3255c8cdaf1d52f15816d1970f9c77a - license: LicenseRef-ProprietaryIntel - license_family: Proprietary - size: 2325424 - timestamp: 1706182537883 + url: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240116.1-cxx17_h63175ca_2.conda + sha256: 565071112e6339051b037bb9c5dae3f4bbc3b45c6f7b8ee598d0ec9056346c93 + md5: bda6bc65300c4188933d8c68abc97923 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libabseil-static =20240116.1=cxx17* + - abseil-cpp =20240116.1 + license: Apache-2.0 + license_family: Apache + size: 1737645 + timestamp: 1709160246325 - kind: conda - name: ipopt - version: 3.14.14 - build: h04b96a2_1 + name: libabseil + version: '20240116.1' + build: cxx17_hc1bcbd7_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda + sha256: 30c0f569949a2fa0c5fd9aae3416e3f6623b9dd6fccdaa8d3437f143b67cca2a + md5: 819934a15bc13a0d30778bf18446ada6 + depends: + - libcxx >=16 + constrains: + - libabseil-static =20240116.1=cxx17* + - __osx >=10.13 + - abseil-cpp =20240116.1 + license: Apache-2.0 + license_family: Apache + size: 1133225 + timestamp: 1709160179404 +- kind: conda + name: libabseil + version: '20240116.1' + build: cxx17_hebf3989_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.1-cxx17_hebf3989_2.conda + sha256: 3e87e8da8e40c71f6107386f6e87aeadc8c7b42e2736f6ac894abe50c763d642 + md5: 0b85aac2fab429166f76940791de071a + depends: + - libcxx >=16 + constrains: + - abseil-cpp =20240116.1 + - libabseil-static =20240116.1=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1144666 + timestamp: 1709160261245 +- kind: conda + name: libaec + version: 1.1.2 + build: h13dd4ca_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ipopt-3.14.14-h04b96a2_1.conda - sha256: 196622c65a65c28781642befd098a79f3afc485ef25458faa8fa2dc8d8cc7141 - md5: 8e82b739d2ee8eb3b83e7882c18292f3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.2-h13dd4ca_1.conda + sha256: c9d6f01d511bd3686ce590addf829f34031b95e3feb34418496cbb45924c5d17 + md5: b7962cdc2cedcc9f8d12928824c11fbd depends: - - ampl-mp >=3.1.0,<3.2.0a0 - - libblas >=3.9.0,<4.0a0 - - libgcc-ng >=12 - - libgfortran-ng - - libgfortran5 >=12.3.0 - - liblapack >=3.9.0,<4.0a0 - - libspral >=2023.9.7,<2023.9.8.0a0 - - libstdcxx-ng >=12 - - metis >=5.1.0,<5.1.1.0a0 - - mumps-seq >=5.6.2,<5.6.3.0a0 - license: EPL-1.0 - size: 1020625 - timestamp: 1705695208814 + - libcxx >=15.0.7 + license: BSD-2-Clause + license_family: BSD + size: 29002 + timestamp: 1696474168895 - kind: conda - name: ipopt - version: 3.14.14 - build: h09c0c07_1 + name: libaec + version: 1.1.2 + build: h59595ed_1 build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ipopt-3.14.14-h09c0c07_1.conda - sha256: 6d9a8a848a090b2a3f56c872e8ca083650b6200618181ec2fe7db8df4aba9b67 - md5: 500df5bafb93562771057b7093f96dc8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda + sha256: fdde15e74dc099ab1083823ec0f615958e53d9a8fae10405af977de251668bea + md5: 127b0be54c1c90760d7fe02ea7a56426 depends: - - ampl-mp >=3.1.0,<3.2.0a0 - - libblas >=3.9.0,<4.0a0 - - libcxx >=15 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - liblapack >=3.9.0,<4.0a0 - - metis >=5.1.0,<5.1.1.0a0 - - mumps-seq >=5.6.2,<5.6.3.0a0 - license: EPL-1.0 - size: 819742 - timestamp: 1705695597921 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 35228 + timestamp: 1696474021700 - kind: conda - name: ipopt - version: 3.14.14 - build: h1709daf_1 + name: libaec + version: 1.1.2 + build: h63175ca_1 build_number: 1 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ipopt-3.14.14-h1709daf_1.conda - sha256: 99889a51a5cc7d672a8173e1fcfb3ae24a1be1b8aa1bf4977551be975ca75f3b - md5: 372691bce000bdd78d0aab46bc9bf248 + url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.2-h63175ca_1.conda + sha256: 731dc77bce7d6425e2113b902023fba146e827cfe301bac565f92cc4e749588a + md5: 0b252d2bf460364bccb1523bcdbe4af6 depends: - - libblas >=3.9.0,<4.0a0 - - libflang >=5.0.0,<6.0.0.a0 - - liblapack >=3.9.0,<4.0a0 - - metis >=5.1.0,<5.1.1.0a0 - - mumps-seq >=5.6.2,<5.6.3.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: EPL-1.0 - size: 906170 - timestamp: 1705695938763 + license: BSD-2-Clause + license_family: BSD + size: 33554 + timestamp: 1696474526588 - kind: conda - name: ipopt - version: 3.14.14 - build: h6639f4a_1 + name: libaec + version: 1.1.2 + build: he965462_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ipopt-3.14.14-h6639f4a_1.conda - sha256: 28f8ebe16a0787146f81d9164878d89a29f4473aa03c8f600664e26a38a9ed39 - md5: 7d485b84d4955e999fed77071b7114db + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.2-he965462_1.conda + sha256: 1b0a0b9b67e8f155ebdc7205a7421c7aff4850a740fc9f88b3fa23282c98ed72 + md5: faa179050abc6af1385e0fe9dd074f91 depends: - - ampl-mp >=3.1.0,<3.2.0a0 - - libblas >=3.9.0,<4.0a0 - - libcxx >=15 - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 - - liblapack >=3.9.0,<4.0a0 - - metis >=5.1.0,<5.1.1.0a0 - - mumps-seq >=5.6.2,<5.6.3.0a0 - license: EPL-1.0 - size: 757806 - timestamp: 1705695882554 + - libcxx >=15.0.7 + license: BSD-2-Clause + license_family: BSD + size: 29027 + timestamp: 1696474151758 - kind: conda - name: isort - version: 5.13.2 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_0.conda - sha256: 78a7e2037029366d2149f73c8d02e93cac903d535e208cc4517808b0b42e85f2 - md5: 1d25ed2b95b92b026aaa795eabec8d91 + name: libarrow + version: 15.0.2 + build: h2a83f13_0_cpu + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-15.0.2-h2a83f13_0_cpu.conda + sha256: d6924853c8263c433a3f8d4267ea26accd2151bab0d4ba0868b3d33486c68a51 + md5: 9c66ceeea78b6b2681cb5d5748335dd5 depends: - - python >=3.8,<4.0 - - setuptools - license: MIT - license_family: MIT - size: 73783 - timestamp: 1702518633821 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl >=8.6.0,<9.0a0 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - openssl >=3.2.1,<4.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - arrow-cpp <0.0a0 + - parquet-cpp <0.0a0 + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 5038629 + timestamp: 1710809718896 - kind: conda - name: keyutils - version: 1.6.1 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - md5: 30186d27e2c9fa62b45fb1476b7200e3 + name: libarrow + version: 15.0.2 + build: h49b82c4_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-15.0.2-h49b82c4_0_cpu.conda + sha256: 616110445702feba69da73538f73c4c538539d7abd241bba890154e5b3e5a154 + md5: 4c7575a0ee28c893a79db4e489f8397d depends: - - libgcc-ng >=10.3.0 - license: LGPL-2.1-or-later - size: 117831 - timestamp: 1646151697040 + - __osx >=10.13 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.7.0,<0.8.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libcxx >=16 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - parquet-cpp <0.0a0 + - apache-arrow-proc =*=cpu + - arrow-cpp <0.0a0 + license: Apache-2.0 + license_family: APACHE + size: 5716603 + timestamp: 1710810689352 - kind: conda - name: krb5 - version: 1.21.2 - build: h659d440_0 + name: libarrow + version: 15.0.2 + build: h6bfc85a_0_cpu subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 - md5: cd95826dbd331ed1be26bdf401432844 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-15.0.2-h6bfc85a_0_cpu.conda + sha256: 5f823bcc8be280136f39b400e1acc77564fe24fe55a9a6810623f501c57cee70 + md5: 264579aaf4c30e0e3993adac8148f4e8 depends: - - keyutils >=1.6.1,<2.0a0 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.7.0,<0.8.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 - libgcc-ng >=12 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 - libstdcxx-ng >=12 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT - size: 1371181 - timestamp: 1692097755782 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - arrow-cpp <0.0a0 + - parquet-cpp <0.0a0 + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 8188626 + timestamp: 1710809146720 - kind: conda - name: krb5 - version: 1.21.2 - build: h92f50d5_0 + name: libarrow + version: 15.0.2 + build: h8eee870_0_cpu subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda - sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875 - md5: 92f1cff174a538e0722bf2efb16fc0b2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-15.0.2-h8eee870_0_cpu.conda + sha256: 76822bca0d24d5685680955f33611f7907a7e28fe6e5525a20b4225fa6434865 + md5: 9091cceb2b8fe58b50971e2d92d76239 depends: - - libcxx >=15.0.7 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT - size: 1195575 - timestamp: 1692098070699 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.7.0,<0.8.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libcxx >=16 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - apache-arrow-proc =*=cpu + - arrow-cpp <0.0a0 + - parquet-cpp <0.0a0 + license: Apache-2.0 + license_family: APACHE + size: 5115806 + timestamp: 1710809646010 - kind: conda - name: krb5 - version: 1.21.2 - build: hb884880_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 - md5: 80505a68783f01dc8d7308c075261b2f + name: libarrow-acero + version: 15.0.2 + build: h59595ed_0_cpu + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-15.0.2-h59595ed_0_cpu.conda + sha256: 9576e5909d9da92dfa428ad878fabd061b371413ed5b7c6a31dad876e3042ab0 + md5: 22817ab872736063dcc6de8c0946ab29 depends: - - libcxx >=15.0.7 - - libedit >=3.1.20191231,<3.2.0a0 - - libedit >=3.1.20191231,<4.0a0 - - openssl >=3.1.2,<4.0a0 - license: MIT - license_family: MIT - size: 1183568 - timestamp: 1692098004387 + - libarrow 15.0.2 h6bfc85a_0_cpu + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 598137 + timestamp: 1710809206011 - kind: conda - name: krb5 - version: 1.21.2 - build: heb0366b_0 + name: libarrow-acero + version: 15.0.2 + build: h63175ca_0_cpu subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda - sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b - md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-15.0.2-h63175ca_0_cpu.conda + sha256: 9dbf64202cbe3d10a78ab0c7d43b7d2262396abf386a1d4625a5a366376da09a + md5: e6e9f2f2bd3aab6da2990e6ef96604c5 depends: - - openssl >=3.1.2,<4.0a0 + - libarrow 15.0.2 h2a83f13_0_cpu - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: MIT - license_family: MIT - size: 710894 - timestamp: 1692098129546 + license: Apache-2.0 + license_family: APACHE + size: 445295 + timestamp: 1710809806366 - kind: conda - name: lame - version: '3.100' - build: h166bdaf_1003 - build_number: 1003 + name: libarrow-acero + version: 15.0.2 + build: hd427752_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-15.0.2-hd427752_0_cpu.conda + sha256: fbee77c9303a286859db48930aab1534b07dddb0646575ea71d969b606808ed0 + md5: 6d5dd116455078505ad87c7f5721f74c + depends: + - libarrow 15.0.2 h49b82c4_0_cpu + - libcxx >=16 + license: Apache-2.0 + license_family: APACHE + size: 522472 + timestamp: 1710810806589 +- kind: conda + name: libarrow-acero + version: 15.0.2 + build: hebf3989_0_cpu + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-15.0.2-hebf3989_0_cpu.conda + sha256: 386116e4fc010e937aa5368e88161f045562005d9dcb6b4db399106b9ff13699 + md5: 3b38cc5f833605bc270d86d2d8dd6c3d + depends: + - libarrow 15.0.2 h8eee870_0_cpu + - libcxx >=16 + license: Apache-2.0 + license_family: APACHE + size: 483793 + timestamp: 1710809737422 +- kind: conda + name: libarrow-dataset + version: 15.0.2 + build: h59595ed_0_cpu subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab - md5: a8832b479f93521a9e7b5b743803be51 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-15.0.2-h59595ed_0_cpu.conda + sha256: 2f214172fed5d7bfb37b2ba2e123c7a995701d70aece96f1ddb8da07819e7466 + md5: a0c56d498a36835131fac72f38171e00 depends: + - libarrow 15.0.2 h6bfc85a_0_cpu + - libarrow-acero 15.0.2 h59595ed_0_cpu - libgcc-ng >=12 - license: LGPL-2.0-only - license_family: LGPL - size: 508258 - timestamp: 1664996250081 + - libparquet 15.0.2 h352af49_0_cpu + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 584257 + timestamp: 1710809351100 - kind: conda - name: lame - version: '3.100' - build: h1a8c8d9_1003 - build_number: 1003 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 - sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c - md5: bff0e851d66725f78dc2fd8b032ddb7e - license: LGPL-2.0-only - license_family: LGPL - size: 528805 - timestamp: 1664996399305 + name: libarrow-dataset + version: 15.0.2 + build: h63175ca_0_cpu + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-15.0.2-h63175ca_0_cpu.conda + sha256: 1d26e5f81b95d72bab4d6f25d87b1acd7d0b8d062348990421f97b2bb26f32ef + md5: 1cc2397b4e8e8c0783d1fcb63b2bce25 + depends: + - libarrow 15.0.2 h2a83f13_0_cpu + - libarrow-acero 15.0.2 h63175ca_0_cpu + - libparquet 15.0.2 h7ec3a38_0_cpu + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 430682 + timestamp: 1710810145834 - kind: conda - name: lame - version: '3.100' - build: hb7f2c08_1003 - build_number: 1003 + name: libarrow-dataset + version: 15.0.2 + build: hd427752_0_cpu subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 - sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e - md5: 3342b33c9a0921b22b767ed68ee25861 - license: LGPL-2.0-only - license_family: LGPL - size: 542681 - timestamp: 1664996421531 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-15.0.2-hd427752_0_cpu.conda + sha256: f24bd050b9a83bb5664f31b26108d91482df2b6ce9e857fb948aafc887b07e10 + md5: fcb4e6c7bad12b2f40a79af42da16bdd + depends: + - libarrow 15.0.2 h49b82c4_0_cpu + - libarrow-acero 15.0.2 hd427752_0_cpu + - libcxx >=16 + - libparquet 15.0.2 h089a9f7_0_cpu + license: Apache-2.0 + license_family: APACHE + size: 512308 + timestamp: 1710811147769 +- kind: conda + name: libarrow-dataset + version: 15.0.2 + build: hebf3989_0_cpu + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-15.0.2-hebf3989_0_cpu.conda + sha256: dfee80ca0dfde9759bd29e2b0c42e780663ef8e879f6855eb6fce779363136e2 + md5: 95b177dc1112842d3f768c28d1f47852 + depends: + - libarrow 15.0.2 h8eee870_0_cpu + - libarrow-acero 15.0.2 hebf3989_0_cpu + - libcxx >=16 + - libparquet 15.0.2 h278d484_0_cpu + license: Apache-2.0 + license_family: APACHE + size: 488340 + timestamp: 1710810096831 +- kind: conda + name: libarrow-flight + version: 15.0.2 + build: h02312f3_0_cpu + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-15.0.2-h02312f3_0_cpu.conda + sha256: fd8081535a6cd44654084bb67f9c33a94330b09a25175b6d5b98e6e861cfffe7 + md5: 38b45c6a970a0ac9c82cdac3c72b104f + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h2a83f13_0_cpu + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 289160 + timestamp: 1710809891541 +- kind: conda + name: libarrow-flight + version: 15.0.2 + build: h1f98dca_0_cpu + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-15.0.2-h1f98dca_0_cpu.conda + sha256: 186a57fd29e058dff0c93fc444de1e6c2d73ed034c9286d2cc4d26d71245eff8 + md5: 733adb80c56aa73c5ccf5b26516d1305 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h8eee870_0_cpu + - libcxx >=16 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 311291 + timestamp: 1710809847088 - kind: conda - name: ld_impl_linux-64 - version: '2.40' - build: h41732ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd - md5: 7aca3059a1729aa76c597603f10b0dd3 - constrains: - - binutils_impl_linux-64 2.40 - license: GPL-3.0-only - license_family: GPL - size: 704696 - timestamp: 1674833944779 + name: libarrow-flight + version: 15.0.2 + build: h39e3226_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-15.0.2-h39e3226_0_cpu.conda + sha256: 9c204a13cd7f189178697315641abf0242fb153b81f55673f82dba625ec89f3b + md5: e1ba53280ea6b16e1089d93f670403e5 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h49b82c4_0_cpu + - libcxx >=16 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 322525 + timestamp: 1710810894467 - kind: conda - name: lerc - version: 4.0.0 - build: h27087fc_0 + name: libarrow-flight + version: 15.0.2 + build: hc6145d9_0_cpu subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 - md5: 76bbff344f0134279f225174e9064c8f + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-15.0.2-hc6145d9_0_cpu.conda + sha256: 8cbf2d896874d878fdc8543781dc23b243a351d9d225e26321997e52e5ed2b94 + md5: 74056e00f807ccc546578fd19f7b2151 depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h6bfc85a_0_cpu - libgcc-ng >=12 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx-ng >=12 + - ucx >=1.15.0,<1.16.0a0 license: Apache-2.0 - license_family: Apache - size: 281798 - timestamp: 1657977462600 + license_family: APACHE + size: 504063 + timestamp: 1710809241519 - kind: conda - name: lerc - version: 4.0.0 - build: h63175ca_0 + name: libarrow-flight-sql + version: 15.0.2 + build: h1a3ed6a_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-sql-15.0.2-h1a3ed6a_0_cpu.conda + sha256: 304f59bfaa2c71bb7e9ffb811de20399dab5ad5e64a9fa9683b8e0052d6e5f46 + md5: 7c022134731015c20776afc2ada9ed36 + depends: + - __osx >=10.13 + - libarrow 15.0.2 h49b82c4_0_cpu + - libarrow-flight 15.0.2 h39e3226_0_cpu + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 153887 + timestamp: 1710811227883 +- kind: conda + name: libarrow-flight-sql + version: 15.0.2 + build: h55b4db4_0_cpu subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 - md5: 1900cb3cab5055833cfddb0ba233b074 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-15.0.2-h55b4db4_0_cpu.conda + sha256: f33e14c02496daf28924eda0d9a8bac903455f81e4a2a3e385909a24eee30ff4 + md5: f44cb6cd842607b3dd9ec7d70833a65b depends: + - libarrow 15.0.2 h2a83f13_0_cpu + - libarrow-flight 15.0.2 h02312f3_0_cpu + - libprotobuf >=4.25.3,<4.25.4.0a0 + - ucrt >=10.0.20348.0 - vc >=14.2,<15 - - vs2015_runtime >=14.29.30037 + - vc14_runtime >=14.29.30139 license: Apache-2.0 - license_family: Apache - size: 194365 - timestamp: 1657977692274 + license_family: APACHE + size: 235596 + timestamp: 1710810227919 - kind: conda - name: lerc - version: 4.0.0 - build: h9a09cb3_0 + name: libarrow-flight-sql + version: 15.0.2 + build: h757c851_0_cpu + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-sql-15.0.2-h757c851_0_cpu.conda + sha256: ed9d46ec1eed1295c0d3369c7ea9afd9b01926f4566a7d0c0b7383c81172011b + md5: 7bfc32845eb60af5b79bfd79e335a548 + depends: + - libarrow 15.0.2 h6bfc85a_0_cpu + - libarrow-flight 15.0.2 hc6145d9_0_cpu + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 194614 + timestamp: 1710809385541 +- kind: conda + name: libarrow-flight-sql + version: 15.0.2 + build: hb095944_0_cpu subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 - sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 - md5: de462d5aacda3b30721b512c5da4e742 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-sql-15.0.2-hb095944_0_cpu.conda + sha256: e5b0bc10ea022b04fd5d537ff504158351ac2756b7188852bd4df0f7abe51402 + md5: 6c7c707f155569a2827ba90ae2472ee9 depends: - - libcxx >=13.0.1 + - libarrow 15.0.2 h8eee870_0_cpu + - libarrow-flight 15.0.2 h1f98dca_0_cpu + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 license: Apache-2.0 - license_family: Apache - size: 215721 - timestamp: 1657977558796 + license_family: APACHE + size: 153542 + timestamp: 1710810179829 - kind: conda - name: lerc - version: 4.0.0 - build: hb486fe8_0 + name: libarrow-gandiva + version: 15.0.2 + build: h2c81988_0_cpu + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-gandiva-15.0.2-h2c81988_0_cpu.conda + sha256: 2f42fdf7704a253ff21760e7caf9a40b0071a7de6b79f0c4235acf08af04070b + md5: 8a195c1f905e3799085833e71342a6c7 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h8eee870_0_cpu + - libcxx >=16 + - libllvm16 >=16.0.6,<16.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + license: Apache-2.0 + license_family: APACHE + size: 685676 + timestamp: 1710809932312 +- kind: conda + name: libarrow-gandiva + version: 15.0.2 + build: h3f2ff47_0_cpu + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-15.0.2-h3f2ff47_0_cpu.conda + sha256: 41a445902b59912fe940d61d742536cd87cb8253e94faf4ce1b6ad00ba0c15f9 + md5: 28935302152c1c3be366a92cae9600c9 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h2a83f13_0_cpu + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 + license_family: APACHE + size: 10715908 + timestamp: 1710809971170 +- kind: conda + name: libarrow-gandiva + version: 15.0.2 + build: h43798cf_0_cpu subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 - md5: f9d6a4c82889d5ecedec1d90eb673c55 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-gandiva-15.0.2-h43798cf_0_cpu.conda + sha256: 64d7723c3b0ed3f14b2c9b0e57cf91f3e882469319150a2094e502b7971060aa + md5: f1130794c73f3dfe93d3e2ac42b96ba1 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h49b82c4_0_cpu + - libcxx >=16 + - libllvm16 >=16.0.6,<16.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + license: Apache-2.0 + license_family: APACHE + size: 700399 + timestamp: 1710810980480 +- kind: conda + name: libarrow-gandiva + version: 15.0.2 + build: hb016d2e_0_cpu + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-gandiva-15.0.2-hb016d2e_0_cpu.conda + sha256: 20d9dde9e6951c26bfa24fd868cfe67d9cdbb0e1dcacab526f13facfb0c12c8b + md5: f726794e5792692e98712d054d4d5d20 depends: - - libcxx >=13.0.1 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h6bfc85a_0_cpu + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 license: Apache-2.0 - license_family: Apache - size: 290319 - timestamp: 1657977526749 + license_family: APACHE + size: 896348 + timestamp: 1710809278664 - kind: conda - name: libaec - version: 1.1.2 - build: h13dd4ca_1 - build_number: 1 + name: libarrow-substrait + version: 15.0.2 + build: h1a3ed6a_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-15.0.2-h1a3ed6a_0_cpu.conda + sha256: aa685dab8037f5e4af7ca7058deae2be16776f55d2d3a595c6da5e94496881d2 + md5: 58e6c0b83bcd6ebeb96fdd4ad47fc6ba + depends: + - __osx >=10.13 + - libarrow 15.0.2 h49b82c4_0_cpu + - libarrow-acero 15.0.2 hd427752_0_cpu + - libarrow-dataset 15.0.2 hd427752_0_cpu + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 450479 + timestamp: 1710811310929 +- kind: conda + name: libarrow-substrait + version: 15.0.2 + build: h50959cf_0_cpu subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.2-h13dd4ca_1.conda - sha256: c9d6f01d511bd3686ce590addf829f34031b95e3feb34418496cbb45924c5d17 - md5: b7962cdc2cedcc9f8d12928824c11fbd + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-15.0.2-h50959cf_0_cpu.conda + sha256: 03ad4ab52f77f33e68933186d9dd2e1bffd278ddce8766b0ad7057416c0567a6 + md5: 3db36fef443dae02e12466f59756a562 depends: - - libcxx >=15.0.7 - license: BSD-2-Clause - license_family: BSD - size: 29002 - timestamp: 1696474168895 + - libarrow 15.0.2 h8eee870_0_cpu + - libarrow-acero 15.0.2 hebf3989_0_cpu + - libarrow-dataset 15.0.2 hebf3989_0_cpu + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 439155 + timestamp: 1710810290370 - kind: conda - name: libaec - version: 1.1.2 - build: h59595ed_1 - build_number: 1 + name: libarrow-substrait + version: 15.0.2 + build: h757c851_0_cpu subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda - sha256: fdde15e74dc099ab1083823ec0f615958e53d9a8fae10405af977de251668bea - md5: 127b0be54c1c90760d7fe02ea7a56426 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-15.0.2-h757c851_0_cpu.conda + sha256: 7235e23ad8310b5ef455c94ddb554a700c578df48f280d17b0e3e51288ce0afe + md5: c70f0e169c54b1b79c67ab11d5abb401 depends: + - libarrow 15.0.2 h6bfc85a_0_cpu + - libarrow-acero 15.0.2 h59595ed_0_cpu + - libarrow-dataset 15.0.2 h59595ed_0_cpu - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx-ng >=12 - license: BSD-2-Clause - license_family: BSD - size: 35228 - timestamp: 1696474021700 + license: Apache-2.0 + license_family: APACHE + size: 519713 + timestamp: 1710809420564 - kind: conda - name: libaec - version: 1.1.2 - build: h63175ca_1 - build_number: 1 + name: libarrow-substrait + version: 15.0.2 + build: h89268de_0_cpu subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.2-h63175ca_1.conda - sha256: 731dc77bce7d6425e2113b902023fba146e827cfe301bac565f92cc4e749588a - md5: 0b252d2bf460364bccb1523bcdbe4af6 - depends: + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-15.0.2-h89268de_0_cpu.conda + sha256: d12e0f0132116fba2e5785a6289eeac3ec78af241627be124cb2689a15585ac2 + md5: c7c78a1f05e8da97eb0457a135043c54 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 15.0.2 h2a83f13_0_cpu + - libarrow-acero 15.0.2 h63175ca_0_cpu + - libarrow-dataset 15.0.2 h63175ca_0_cpu + - libprotobuf >=4.25.3,<4.25.4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - license: BSD-2-Clause - license_family: BSD - size: 33554 - timestamp: 1696474526588 -- kind: conda - name: libaec - version: 1.1.2 - build: he965462_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.2-he965462_1.conda - sha256: 1b0a0b9b67e8f155ebdc7205a7421c7aff4850a740fc9f88b3fa23282c98ed72 - md5: faa179050abc6af1385e0fe9dd074f91 - depends: - - libcxx >=15.0.7 - license: BSD-2-Clause - license_family: BSD - size: 29027 - timestamp: 1696474151758 + license: Apache-2.0 + license_family: APACHE + size: 361060 + timestamp: 1710810317130 - kind: conda name: libblas version: 3.9.0 @@ -3176,6 +5205,192 @@ packages: license: BSL-1.0 size: 2008092 timestamp: 1700827593029 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda + sha256: f57c57c442ef371982619f82af8735f93a4f50293022cfd1ffaf2ff89c2e0b2a + md5: 9e6c31441c9aa24e41ace40d6151aab6 + license: MIT + license_family: MIT + size: 67476 + timestamp: 1695990207321 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda + sha256: 556f0fddf4bd4d35febab404d98cb6862ce3b7ca843e393da0451bfc4654cf07 + md5: cd68f024df0304be41d29a9088162b02 + license: MIT + license_family: MIT + size: 68579 + timestamp: 1695990426128 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda + sha256: f75fed29b0cc503d1b149a4945eaa32df56e19da5e2933de29e8f03947203709 + md5: f77f319fb82980166569e1280d5b2864 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 70598 + timestamp: 1695990405143 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda + sha256: 40f29d1fab92c847b083739af86ad2f36d8154008cf99b64194e4705a1725d78 + md5: aec6c91c7371c26392a06708a73c70e5 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 69403 + timestamp: 1695990007212 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda + sha256: b11939c4c93c29448660ab5f63273216969d1f2f315dd9be60f3c43c4e61a50c + md5: 9ee0bab91b2ca579e10353738be36063 + depends: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + size: 30327 + timestamp: 1695990232422 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda + sha256: c1c85937828ad3bc434ac60b7bcbde376f4d2ea4ee42d15d369bf2a591775b4a + md5: ee1a519335cc10d0ec7e097602058c0a + depends: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 28928 + timestamp: 1695990463780 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda + sha256: 1b352ee05931ea24c11cd4a994d673890fd1cc690c21e023e736bdaac2632e93 + md5: 19ce3e1dacc7912b3d6ff40690ba9ae0 + depends: + - libbrotlicommon 1.1.0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 32788 + timestamp: 1695990443165 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda + sha256: 86fc861246fbe5ad85c1b6b3882aaffc89590a48b42d794d3d5c8e6d99e5f926 + md5: f07002e225d7a60a694d42a7bf5ff53f + depends: + - libbrotlicommon 1.1.0 hd590300_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 32775 + timestamp: 1695990022788 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: h0dc2134_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda + sha256: bc964c23e1a60ca1afe7bac38a9c1f2af3db4a8072c9f2eac4e4de537a844ac7 + md5: 8a421fe09c6187f0eb5e2338a8a8be6d + depends: + - libbrotlicommon 1.1.0 h0dc2134_1 + license: MIT + license_family: MIT + size: 299092 + timestamp: 1695990259225 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: hb547adb_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda + sha256: 690dfc98e891ee1871c54166d30f6e22edfc2d7d6b29e7988dde5f1ce271c81a + md5: d7e077f326a98b2cc60087eaff7c730b + depends: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 280943 + timestamp: 1695990509392 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: hcfcfb64_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda + sha256: eae6b76154e594c6d211160c6d1aeed848672618152a562e0eabdfa641d34aca + md5: 71e890a0b361fd58743a13f77e1506b7 + depends: + - libbrotlicommon 1.1.0 hcfcfb64_1 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 246515 + timestamp: 1695990479484 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: hd590300_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda + sha256: f751b8b1c4754a2a8dfdc3b4040fa7818f35bbf6b10e905a47d3a194b746b071 + md5: 5fc11c6020d421960607d821310fcd4d + depends: + - libbrotlicommon 1.1.0 hd590300_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 282523 + timestamp: 1695990038302 - kind: conda name: libcap version: '2.69' @@ -3388,6 +5603,64 @@ packages: license_family: Apache size: 11897758 timestamp: 1684412176370 +- kind: conda + name: libcrc32c + version: 1.1.2 + build: h0e60522_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 + sha256: 75e60fbe436ba8a11c170c89af5213e8bec0418f88b7771ab7e3d9710b70c54e + md5: cd4cc2d0c610c8cb5419ccc979f2d6ce + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 25694 + timestamp: 1633684287072 +- kind: conda + name: libcrc32c + version: 1.1.2 + build: h9c3ff4c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 + sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5 + md5: c965a5aa0d5c1c37ffc62dff36e28400 + depends: + - libgcc-ng >=9.4.0 + - libstdcxx-ng >=9.4.0 + license: BSD-3-Clause + license_family: BSD + size: 20440 + timestamp: 1633683576494 +- kind: conda + name: libcrc32c + version: 1.1.2 + build: hbdafb3b_0 + subdir: osx-arm64 + url: 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 +- kind: conda + name: libcrc32c + version: 1.1.2 + build: he49afe7_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 + sha256: 3043869ac1ee84554f177695e92f2f3c2c507b260edad38a0bf3981fce1632ff + md5: 23d6d5a69918a438355d7cbc4c3d54c9 + depends: + - libcxx >=11.1.0 + license: BSD-3-Clause + license_family: BSD + size: 20128 + timestamp: 1633683906221 - kind: conda name: libcurl version: 8.6.0 @@ -3645,6 +5918,70 @@ packages: license_family: BSD size: 112766 timestamp: 1702146165126 +- kind: conda + name: libevent + version: 2.1.12 + build: h2757513_1 + build_number: 1 + subdir: osx-arm64 + url: 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 +- kind: conda + name: libevent + version: 2.1.12 + build: h3671451_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda + sha256: af03882afb7a7135288becf340c2f0cf8aa8221138a9a7b108aaeb308a486da1 + md5: 25efbd786caceef438be46da78a7b5ef + depends: + - openssl >=3.1.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 410555 + timestamp: 1685726568668 +- kind: conda + name: libevent + version: 2.1.12 + build: ha90c15b_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda + sha256: e0bd9af2a29f8dd74309c0ae4f17a7c2b8c4b89f875ff1d6540c941eefbd07fb + md5: e38e467e577bd193a7d5de7c2c540b04 + depends: + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 372661 + timestamp: 1685726378869 +- kind: conda + name: libevent + version: 2.1.12 + build: hf998b51_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda + sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131 + md5: a1cfcc585f0c42bf8d5546bb1dfb668d + depends: + - libgcc-ng >=12 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 427426 + timestamp: 1685725977222 - kind: conda name: libexpat version: 2.6.2 @@ -3999,6 +6336,189 @@ packages: license_family: GPL size: 419751 timestamp: 1706819107383 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: h651e89d_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda + sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 + md5: 3f2faf53ecb3b51b92b3eee155b50233 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 849198 + timestamp: 1709738549021 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: h9be4e54_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda + sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed + md5: 4b4e36a91e7dabf7345b82d85767a7c3 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgcc-ng >=12 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 1209816 + timestamp: 1709737846418 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: h9cad5c0_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.22.0-h9cad5c0_1.conda + sha256: f76e892d13e1db405777c968787678d8ba912b7e4eef7f950fcdcca185e06e71 + md5: 63cd44a71f00d4e72844bf0e8be56be4 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - openssl >=3.2.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 14420 + timestamp: 1709737037941 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: hbebe991_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.22.0-hbebe991_1.conda + sha256: a114b4d46eebede7e514abaf9203ea8c952a6382c5c57d1b989da062e3899bd7 + md5: ec7ea95b08e8cbc39fa16b6eafee36e6 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 836916 + timestamp: 1709739767863 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: h8a76758_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.22.0-h8a76758_1.conda + sha256: e23be5896fd78e0e8b1098aab8803192f0c4a328d3d30a57d20d80194045d793 + md5: a89fb5b36b08efaae128d4933e593315 + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libcxx >=16 + - libgoogle-cloud 2.22.0 hbebe991_1 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 507478 + timestamp: 1709740510222 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: ha67e85c_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda + sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 + md5: 0c25180c34b1a58d309b28386698fb6e + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libcxx >=16 + - libgoogle-cloud 2.22.0 h651e89d_1 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 523045 + timestamp: 1709739227970 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: hb581fae_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.22.0-hb581fae_1.conda + sha256: 5ee34f168948211db14874f521e6edf9b4032d533c61fd429caaa282be1d0e7b + md5: f63348292dea55cf834e631cf26e2669 + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libgoogle-cloud 2.22.0 h9cad5c0_1 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 14330 + timestamp: 1709737542249 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: hc7a4891_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda + sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 + md5: 7811f043944e010e54640918ea82cecd + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libgcc-ng >=12 + - libgoogle-cloud 2.22.0 h9be4e54_1 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 748818 + timestamp: 1709738181078 - kind: conda name: libgpg-error version: '1.48' @@ -4015,6 +6535,106 @@ packages: license_family: GPL size: 266447 timestamp: 1708702470365 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h15f2491_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda + sha256: 1d4ece94dfef73d904dcba0fd9d56098796f5fdc62ea5f9edff60c71be7a3d63 + md5: 564517a8cbd095cff75eb996d33d2b7e + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 7667664 + timestamp: 1709938059287 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h384b2fc_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + sha256: 8c9898d259e2343df52259b599ec342c386679e1c420df603cba6f06078fcdd6 + md5: 2ac05daca7276a4d6ca4465707670380 + depends: + - __osx >=10.13 + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 4432823 + timestamp: 1709938959215 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h5273850_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.62.1-h5273850_0.conda + sha256: 338cb58d1095ee651acd168af9636834b41908f7a94e613088e284dc53d2947c + md5: 99ac2f772591801641ec692fee843796 + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 15963245 + timestamp: 1709939262816 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h9c18a4f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.1-h9c18a4f_0.conda + sha256: b8c6b48430d0778e9452df88fa7c07fc7828aac87291372ac42dbe78be4078d5 + md5: 24f15c1a9e111825d39bf77881430107 + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 4753906 + timestamp: 1709939281511 - kind: conda name: libhwloc version: 2.9.3 @@ -4369,6 +6989,61 @@ packages: license_family: Apache size: 20571387 timestamp: 1690559110016 +- kind: conda + name: libllvm16 + version: 16.0.6 + build: haab561b_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm16-16.0.6-haab561b_3.conda + sha256: f240f3776b02c39a32ce7397d6f2de072510321c835f4def452fc62e5c3babc0 + md5: 9900d62ede9ce25b569beeeab1da094e + depends: + - libcxx >=16 + - libxml2 >=2.12.1,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23347663 + timestamp: 1701374993634 +- kind: conda + name: libllvm16 + version: 16.0.6 + build: hb3ce162_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libllvm16-16.0.6-hb3ce162_3.conda + sha256: 624fa4012397bc5a8c9269247bf9baa7d907eb59079aefc6f6fa6a40f10fd0ba + md5: a4d48c40dd5c60edbab7fd69c9a88967 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.12.1,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 35359734 + timestamp: 1701375139881 +- kind: conda + name: libllvm16 + version: 16.0.6 + build: hbedff68_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda + sha256: ad848dc0bb02b1dbe54324ee5700b050a2e5f63c095f5229b2de58249a3e268e + md5: 8fd56c0adc07a37f93bd44aa61a97c90 + depends: + - libcxx >=16 + - libxml2 >=2.12.1,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25196932 + timestamp: 1701379796962 - kind: conda name: libnghttp2 version: 1.58.0 @@ -4432,6 +7107,20 @@ packages: license_family: MIT size: 565451 timestamp: 1702130473930 +- kind: conda + name: libnl + version: 3.9.0 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.9.0-hd590300_0.conda + sha256: aae03117811e704c3f3666e8374dd2e632f1d78bef0c27330e7298b24004819e + md5: d27c451db4f1d3c983c78167d2fdabc2 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + license_family: LGPL + size: 732866 + timestamp: 1702657849946 - kind: conda name: libnsl version: 2.0.1 @@ -4588,20 +7277,91 @@ packages: size: 5578031 timestamp: 1704950143521 - kind: conda - name: libopus - version: 1.3.1 - build: h7f98852_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - md5: 15345e56d527b330e1cacbdf58676e8f + name: libopus + version: 1.3.1 + build: h7f98852_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + md5: 15345e56d527b330e1cacbdf58676e8f + depends: + - libgcc-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 260658 + timestamp: 1606823578035 +- kind: conda + name: libparquet + version: 15.0.2 + build: h089a9f7_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libparquet-15.0.2-h089a9f7_0_cpu.conda + sha256: 8d202e27f5a42b4423504743eb8347fada10ea4538cd05c4b76eff1302904cab + md5: 7c809c9247181cc92e8e2d419f4a467d + depends: + - libarrow 15.0.2 h49b82c4_0_cpu + - libcxx >=16 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 921869 + timestamp: 1710811066048 +- kind: conda + name: libparquet + version: 15.0.2 + build: h278d484_0_cpu + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-15.0.2-h278d484_0_cpu.conda + sha256: eba22470f14cdf49cf8bfa6301bb6dae9a929ea0545db6fc43ee61d1f019f417 + md5: 4f166f00b177cd9760630591ebaa6d43 + depends: + - libarrow 15.0.2 h8eee870_0_cpu + - libcxx >=16 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 863645 + timestamp: 1710810017618 +- kind: conda + name: libparquet + version: 15.0.2 + build: h352af49_0_cpu + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-15.0.2-h352af49_0_cpu.conda + sha256: 7c4b921d2e6c8f6c51c3b2b3348362907c58d5d01684ed988937ac5177b3c27a + md5: ef28915350dafd7d1e06ce67fb7c1c6a + depends: + - libarrow 15.0.2 h6bfc85a_0_cpu + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 1180231 + timestamp: 1710809315201 +- kind: conda + name: libparquet + version: 15.0.2 + build: h7ec3a38_0_cpu + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libparquet-15.0.2-h7ec3a38_0_cpu.conda + sha256: b6bd7e01f0414cd72451dc81d21681946a532d842c2675900007da460baf0ce3 + md5: 608792a54750b5136a1228090f2d6464 depends: - - libgcc-ng >=9.3.0 - license: BSD-3-Clause - license_family: BSD - size: 260658 - timestamp: 1606823578035 + - libarrow 15.0.2 h2a83f13_0_cpu + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 792775 + timestamp: 1710810064132 - kind: conda name: libpciaccess version: '0.18' @@ -4672,6 +7432,158 @@ packages: license: zlib-acknowledgement size: 268524 timestamp: 1708780496420 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h08a7969_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda + sha256: 70e0eef046033af2e8d21251a785563ad738ed5281c74e21c31c457780845dcd + md5: 6945825cebd2aeb16af4c69d97c32c13 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2811207 + timestamp: 1709514552541 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h4e4d658_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda + sha256: 3f126769fb5820387d436370ad48600e05d038a28689fdf9988b64e1059947a8 + md5: 57b7ee4f1fd8573781cfdabaec4a7782 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2216001 + timestamp: 1709514908146 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h503648d_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.3-h503648d_0.conda + sha256: 5d4c5592be3994657ebf47e52f26b734cc50b0ea9db007d920e2e31762aac216 + md5: 4da7de0ba35777742edf67bf7a1075df + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 5650604 + timestamp: 1709514804631 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: hbfab5d5_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hbfab5d5_0.conda + sha256: d754519abc3ddbdedab2a38d0639170f5347c1573eef80c707f3a8dc5dff706a + md5: 5f70b2b945a9741cba7e6dfe735a02a7 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2154402 + timestamp: 1709514097574 +- kind: conda + name: libre2-11 + version: 2023.09.01 + build: h5a48ba9_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda + sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff + md5: 41c69fba59d495e8cf5ffda48a607e35 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + constrains: + - re2 2023.09.01.* + license: BSD-3-Clause + license_family: BSD + size: 232603 + timestamp: 1708946763521 +- kind: conda + name: libre2-11 + version: 2023.09.01 + build: h7b2c953_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda + sha256: c8a0a6e7a627dc9c66ffb8858f8f6d499f67fd269b6636b25dc5169760610f05 + md5: 0b7b2ced046d6b5fe6e9d46b1ee0324c + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + constrains: + - re2 2023.09.01.* + license: BSD-3-Clause + license_family: BSD + size: 171443 + timestamp: 1708947163461 +- kind: conda + name: libre2-11 + version: 2023.09.01 + build: h81f5012_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda + sha256: 384b72a09bd4bb29c1aa085110b2f940dba431587ffb4e2c1a28f605887a1867 + md5: c5c36ec64e3c86504728c38b79011d08 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + constrains: + - re2 2023.09.01.* + license: BSD-3-Clause + license_family: BSD + size: 184017 + timestamp: 1708947106275 +- kind: conda + name: libre2-11 + version: 2023.09.01 + build: hf8d8778_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2023.09.01-hf8d8778_2.conda + sha256: 04331dad30a076ebb24c683197a5feabf4fd9be0fa0e06f416767096f287f900 + md5: cf54cb5077a60797d53a132d37af25fc + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - re2 2023.09.01.* + license: BSD-3-Clause + license_family: BSD + size: 256561 + timestamp: 1708947458481 - kind: conda name: libscotch version: 7.0.4 @@ -4969,6 +7881,81 @@ packages: license_family: GPL size: 118785 timestamp: 1661325967954 +- kind: conda + name: libthrift + version: 0.19.0 + build: h026a170_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda + sha256: b2c1b30d36f0412c0c0313db76a0236d736f3a9b887b8ed16182f531e4b7cb80 + md5: 4b8b21eb00d9019e9fa351141da2a6ac + depends: + - libcxx >=15.0.7 + - libevent >=2.1.12,<2.1.13.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 331154 + timestamp: 1695958512679 +- kind: conda + name: libthrift + version: 0.19.0 + build: h064b379_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda + sha256: 4346c25ef6e2ff3d0fc93074238508531188ecd0dbea6414f6cb93a7775072c4 + md5: b152655bfad7c2374ff03be0596052b6 + depends: + - libcxx >=15.0.7 + - libevent >=2.1.12,<2.1.13.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 325415 + timestamp: 1695958330036 +- kind: conda + name: libthrift + version: 0.19.0 + build: ha2b3283_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda + sha256: 89bbc59898c827429a52315c9c0dd888ea73ab1157a8c86098aeae7d13454ac4 + md5: d3432b9d4950e91d2fdf3bed91248ee0 + depends: + - libevent >=2.1.12,<2.1.13.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 612342 + timestamp: 1695958519927 +- kind: conda + name: libthrift + version: 0.19.0 + build: hb90f79a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda + sha256: 719add2cf20d144ef9962c57cd0f77178259bdb3aae1cded2e2b2b7c646092f5 + md5: 8cdb7d41faa0260875ba92414c487e2d + depends: + - libevent >=2.1.12,<2.1.13.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 409409 + timestamp: 1695958011498 - kind: conda name: libtiff version: 4.6.0 @@ -5090,6 +8077,60 @@ packages: license: GPL-3.0-only OR LGPL-3.0-only size: 1433436 timestamp: 1626955018689 +- kind: conda + name: libutf8proc + version: 2.8.0 + build: h166bdaf_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 + sha256: 49082ee8d01339b225f7f8c60f32a2a2c05fe3b16f31b554b4fb2c1dea237d1c + md5: ede4266dc02e875fe1ea77b25dd43747 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 101070 + timestamp: 1667316029302 +- kind: conda + name: libutf8proc + version: 2.8.0 + build: h1a8c8d9_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 + sha256: a3faddac08efd930fa3a1cc254b5053b4ed9428c49a888d437bf084d403c931a + md5: f8c9c41a122ab3abdf8943b13f4957ee + license: MIT + license_family: MIT + size: 103492 + timestamp: 1667316405233 +- kind: conda + name: libutf8proc + version: 2.8.0 + build: h82a8f57_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 + sha256: 6efa83e3f2fb9acaf096a18d21d0f679d110934798348c5defc780d4b759a76c + md5: 076894846fe9f068f91c57d158c90cba + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 104389 + timestamp: 1667316359211 +- kind: conda + name: libutf8proc + version: 2.8.0 + build: hb7f2c08_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 + sha256: 55a7f96b2802e94def207fdfe92bc52c24d705d139bb6cdb3d936cbe85e1c505 + md5: db98dc3e58cbc11583180609c429c17d + license: MIT + license_family: MIT + size: 98942 + timestamp: 1667316472080 - kind: conda name: libuuid version: 2.38.1 @@ -5246,6 +8287,24 @@ packages: license_family: BSD size: 273844 timestamp: 1694709510635 +- kind: conda + name: libwebp-base + version: 1.3.2 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.2-hcfcfb64_0.conda + sha256: af1453fab10d1fb8b379c61a78882614051a8bac37307d7ac4fb58eac667709e + md5: dcde8820959e64378d4e06147ffecfdd + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libwebp 1.3.2 + license: BSD-3-Clause + license_family: BSD + size: 268870 + timestamp: 1694709461733 - kind: conda name: libwebp-base version: 1.3.2 @@ -5295,6 +8354,24 @@ packages: license_family: MIT size: 313793 timestamp: 1682083036825 +- kind: conda + name: libxcb + version: '1.15' + build: hcd874cb_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda + sha256: d01322c693580f53f8d07a7420cd6879289f5ddad5531b372c3efd1c37cac3bf + md5: 090d91b69396f14afef450c285f9758c + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - pthread-stubs + - xorg-libxau + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 969788 + timestamp: 1682083087243 - kind: conda name: libxcb version: '1.15' @@ -5580,6 +8657,83 @@ packages: license_family: BSD size: 156415 timestamp: 1674727335352 +- kind: conda + name: m2w64-gcc-libgfortran + version: 5.3.0 + build: '6' + build_number: 6 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 + md5: 066552ac6b907ec6d72c0ddab29050dc + depends: + - m2w64-gcc-libs-core + - msys2-conda-epoch ==20160418 + license: GPL, LGPL, FDL, custom + size: 350687 + timestamp: 1608163451316 +- kind: conda + name: m2w64-gcc-libs + version: 5.3.0 + build: '7' + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa + md5: fe759119b8b3bfa720b8762c6fdc35de + depends: + - m2w64-gcc-libgfortran + - m2w64-gcc-libs-core + - m2w64-gmp + - m2w64-libwinpthread-git + - msys2-conda-epoch ==20160418 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 532390 + timestamp: 1608163512830 +- kind: conda + name: m2w64-gcc-libs-core + version: 5.3.0 + build: '7' + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 + md5: 4289d80fb4d272f1f3b56cfe87ac90bd + depends: + - m2w64-gmp + - m2w64-libwinpthread-git + - msys2-conda-epoch ==20160418 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 219240 + timestamp: 1608163481341 +- kind: conda + name: m2w64-gmp + version: 6.1.0 + build: '2' + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 + md5: 53a1c73e1e3d185516d7e3af177596d9 + depends: + - msys2-conda-epoch ==20160418 + license: LGPL3 + size: 743501 + timestamp: 1608163782057 +- kind: conda + name: m2w64-libwinpthread-git + version: 5.0.0.4634.697f757 + build: '2' + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 + md5: 774130a326dee16f1ceb05cc687ee4f0 + depends: + - msys2-conda-epoch ==20160418 + license: MIT, BSD + size: 31928 + timestamp: 1608166099896 - kind: conda name: metis version: 5.1.0 @@ -5669,6 +8823,17 @@ packages: license_family: LGPL size: 491061 timestamp: 1704980200966 +- kind: conda + name: msys2-conda-epoch + version: '20160418' + build: '1' + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 + md5: b0309b72560df66f71a9d5e34a5efdfa + size: 3227 + timestamp: 1608166968312 - kind: conda name: mumps-include version: 5.6.2 @@ -6228,6 +9393,77 @@ packages: license_family: BSD size: 671537 timestamp: 1675880810146 +- kind: conda + name: openjpeg + version: 2.5.2 + build: h3d672ee_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda + sha256: dda71cbe094234ab208f3552dec1f4ca6f2e614175d010808d6cb66ecf0bc753 + md5: 7e7099ad94ac3b599808950cec30ad4e + depends: + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 237974 + timestamp: 1709159764160 +- kind: conda + name: openjpeg + version: 2.5.2 + build: h488ebb8_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda + sha256: 5600a0b82df042bd27d01e4e687187411561dfc11cc05143a08ce29b64bf2af2 + md5: 7f2e286780f072ed750df46dc2631138 + depends: + - libgcc-ng >=12 + - libpng >=1.6.43,<1.7.0a0 + - libstdcxx-ng >=12 + - libtiff >=4.6.0,<4.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 341592 + timestamp: 1709159244431 +- kind: conda + name: openjpeg + version: 2.5.2 + build: h7310d3a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda + sha256: dc9c405119b9b54f8ca5984da27ba498bd848ab4f0f580da6f293009ca5adc13 + md5: 05a14cc9d725dd74995927968d6547e3 + depends: + - libcxx >=16 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 331273 + timestamp: 1709159538792 +- kind: conda + name: openjpeg + version: 2.5.2 + build: h9f1df11_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.2-h9f1df11_0.conda + sha256: 472d6eaffc1996e6af35ec8e91c967f472a536a470079bfa56383cc0dbf4d463 + md5: 5029846003f0bc14414b9128a1f7c84b + depends: + - libcxx >=16 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 316603 + timestamp: 1709159627299 - kind: conda name: openmp version: 5.0.0 @@ -6425,25 +9661,103 @@ packages: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache - size: 2865379 - timestamp: 1710793235846 + size: 2865379 + timestamp: 1710793235846 +- kind: conda + name: openssl + version: 3.2.1 + build: hd75f5a5_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: 570a6f04802df580be529f3a72d2bbf7 + depends: + - ca-certificates + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2506344 + timestamp: 1710793930515 +- kind: conda + name: orc + version: 2.0.0 + build: h1e5e2c1_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.0-h1e5e2c1_0.conda + sha256: ed8cfe1f35e8ef703e540e7731e77fade1410bba406e17727a10dee08c37d5b4 + md5: 53e8f030579d34e1a36a735d527c021f + depends: + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 + license_family: Apache + size: 1028974 + timestamp: 1710232781925 +- kind: conda + name: orc + version: 2.0.0 + build: h3d3088e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.0-h3d3088e_0.conda + sha256: 6a1f553e2ea3d2df3c465b02c7ece5c001cc2d3afb1fe7e2678a7ff7a5a14168 + md5: a8e452c3f2b6fecfd86e8f2b72450a9b + depends: + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 + license_family: Apache + size: 413922 + timestamp: 1710233361620 - kind: conda - name: openssl - version: 3.2.1 - build: hd75f5a5_1 - build_number: 1 + name: orc + version: 2.0.0 + build: h6c6cd50_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 - md5: 570a6f04802df580be529f3a72d2bbf7 + url: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.0-h6c6cd50_0.conda + sha256: 0c198b6a8de238d53002e7c03e4b1e94e769cf388adac2717fdaadfee9381a14 + md5: 5ce58b9a5679fe6640d6d68228099ce9 depends: - - ca-certificates - constrains: - - pyopenssl >=22.1 + - __osx >=10.13 + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 2506344 - timestamp: 1710793930515 + size: 433224 + timestamp: 1710233383447 +- kind: conda + name: orc + version: 2.0.0 + build: heb0c069_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.0-heb0c069_0.conda + sha256: 5a9c0904f38e5c2e1d1494bd192ff98fca13ca07ed1590497b16a801bef497a0 + md5: 2733034196c084cdc07e0facfea995ea + depends: + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 + license_family: Apache + size: 953672 + timestamp: 1710233287310 - kind: conda name: p11-kit version: 0.24.1 @@ -6702,6 +10016,103 @@ packages: license_family: BSD size: 950847 timestamp: 1708118050286 +- kind: conda + name: pillow + version: 10.2.0 + build: py312h0c70c2f_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pillow-10.2.0-py312h0c70c2f_0.conda + sha256: ce465f778b7a0629cfb72aff8e7d6888c8c65971538d17824defeed8c5d05736 + md5: 0cc3674239ad12c6836cb4174f106c92 + depends: + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libwebp-base >=1.3.2,<2.0a0 + - libxcb >=1.15,<1.16.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42002130 + timestamp: 1704252457388 +- kind: conda + name: pillow + version: 10.2.0 + build: py312hac22aec_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-10.2.0-py312hac22aec_0.conda + sha256: 83ebcca5ca6c63bd15a80806a0110d45431fed7c432234d3299202e00f28c0e4 + md5: 486a50718de90e091df0bef6e6af2c48 + depends: + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libwebp-base >=1.3.2,<2.0a0 + - libxcb >=1.15,<1.16.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42299342 + timestamp: 1704252620409 +- kind: conda + name: pillow + version: 10.2.0 + build: py312he768995_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.2.0-py312he768995_0.conda + sha256: 56f616c3167037f291443a879efec6a359ce59ee2b1304c392c11eba0e236d40 + md5: de84e99e45dac3fa9e86fcdb24d991f2 + depends: + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libwebp-base >=1.3.2,<2.0a0 + - libxcb >=1.15,<1.16.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: HPND + size: 41526920 + timestamp: 1704252825539 +- kind: conda + name: pillow + version: 10.2.0 + build: py312hf3581a9_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.2.0-py312hf3581a9_0.conda + sha256: 27f589c316efae5b57b9fea207757574b7b455addf470929099c4bab93aaa1d2 + md5: f35cb852483290b40b5a47e117e80a1d + depends: + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libgcc-ng >=12 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.7.0a0 + - libwebp-base >=1.3.2,<2.0a0 + - libxcb >=1.15,<1.16.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openjpeg >=2.5.0,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42452810 + timestamp: 1704252215643 - kind: conda name: pip version: '24.0' @@ -6874,6 +10285,21 @@ packages: license_family: MIT size: 5653 timestamp: 1606147699844 +- kind: conda + name: pthread-stubs + version: '0.4' + build: hcd874cb_1001 + build_number: 1001 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 + sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a + md5: a1f820480193ea83582b13249a7e7bd9 + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 6417 + timestamp: 1606147814351 - kind: conda name: pthreads-win32 version: 2.9.1 @@ -6908,6 +10334,118 @@ packages: license_family: LGPL size: 757633 timestamp: 1705690081905 +- kind: conda + name: pyarrow + version: 15.0.2 + build: py312h1251918_0_cpu + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-15.0.2-py312h1251918_0_cpu.conda + sha256: 29d91c7755d30400994d7c10d0dfca763c1d5c2d0becfb70ae3cdaf98987b91f + md5: c3f4910abbd70b9d3c29a85f35ad6146 + depends: + - libarrow 15.0.2 h8eee870_0_cpu + - libarrow-acero 15.0.2 hebf3989_0_cpu + - libarrow-dataset 15.0.2 hebf3989_0_cpu + - libarrow-flight 15.0.2 h1f98dca_0_cpu + - libarrow-flight-sql 15.0.2 hb095944_0_cpu + - libarrow-gandiva 15.0.2 h2c81988_0_cpu + - libarrow-substrait 15.0.2 h50959cf_0_cpu + - libcxx >=16 + - libparquet 15.0.2 h278d484_0_cpu + - numpy >=1.26.4,<2.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 3941931 + timestamp: 1710811066436 +- kind: conda + name: pyarrow + version: 15.0.2 + build: py312h176e3d2_0_cpu + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-15.0.2-py312h176e3d2_0_cpu.conda + sha256: 0e8bf94427192aa6f46f56469c8608f65f0cb8779e7a889578ae0ee0c88c32ba + md5: 2aa181d6d6744bb94e3a36098fe0d330 + depends: + - libarrow 15.0.2 h6bfc85a_0_cpu + - libarrow-acero 15.0.2 h59595ed_0_cpu + - libarrow-dataset 15.0.2 h59595ed_0_cpu + - libarrow-flight 15.0.2 hc6145d9_0_cpu + - libarrow-flight-sql 15.0.2 h757c851_0_cpu + - libarrow-gandiva 15.0.2 hb016d2e_0_cpu + - libarrow-substrait 15.0.2 h757c851_0_cpu + - libgcc-ng >=12 + - libparquet 15.0.2 h352af49_0_cpu + - libstdcxx-ng >=12 + - numpy >=1.26.4,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 4536607 + timestamp: 1710811248576 +- kind: conda + name: pyarrow + version: 15.0.2 + build: py312h85e32bb_0_cpu + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-15.0.2-py312h85e32bb_0_cpu.conda + sha256: 881dd58c685076dc9fd6352117e61455e37f60179579be9d93d9eb31479ede8b + md5: ca8ef6aa3d478b217f8f42f1f96ff9e6 + depends: + - libarrow 15.0.2 h2a83f13_0_cpu + - libarrow-acero 15.0.2 h63175ca_0_cpu + - libarrow-dataset 15.0.2 h63175ca_0_cpu + - libarrow-flight 15.0.2 h02312f3_0_cpu + - libarrow-flight-sql 15.0.2 h55b4db4_0_cpu + - libarrow-gandiva 15.0.2 h3f2ff47_0_cpu + - libarrow-substrait 15.0.2 h89268de_0_cpu + - libparquet 15.0.2 h7ec3a38_0_cpu + - numpy >=1.26.4,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 3473153 + timestamp: 1710812714885 +- kind: conda + name: pyarrow + version: 15.0.2 + build: py312hc4c33ac_0_cpu + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-15.0.2-py312hc4c33ac_0_cpu.conda + sha256: 89b1bd258baadcc730870648a7293975cbc2e7450992149898201a64613d125f + md5: dcbaf6c3e968ee6642e11cb357add3e8 + depends: + - libarrow 15.0.2 h49b82c4_0_cpu + - libarrow-acero 15.0.2 hd427752_0_cpu + - libarrow-dataset 15.0.2 hd427752_0_cpu + - libarrow-flight 15.0.2 h39e3226_0_cpu + - libarrow-flight-sql 15.0.2 h1a3ed6a_0_cpu + - libarrow-gandiva 15.0.2 h43798cf_0_cpu + - libarrow-substrait 15.0.2 h1a3ed6a_0_cpu + - libcxx >=16 + - libparquet 15.0.2 h089a9f7_0_cpu + - numpy >=1.26.4,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 3992404 + timestamp: 1710814502744 - kind: conda name: pytest version: 8.1.1 @@ -7097,6 +10635,84 @@ packages: license_family: BSD size: 6785 timestamp: 1695147430513 +- kind: conda + name: rdma-core + version: '50.0' + build: hd3aeb46_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-50.0-hd3aeb46_1.conda + sha256: 85e38508eb4921e53cf1cb97435f9c9408ea2ddc582c6588ec50f3f3ec3abdc0 + md5: f462219598fcf46c0cdfb985c3482b4f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libnl >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + license: Linux-OpenIB + license_family: BSD + size: 4713842 + timestamp: 1710157799992 +- kind: conda + name: re2 + version: 2023.09.01 + build: h4cba328_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda + sha256: 0e0d44414381c39a7e6f3da442cb41c637df0dcb383a07425f19c19ccffa0118 + md5: 0342882197116478a42fa4ea35af79c1 + depends: + - libre2-11 2023.09.01 h7b2c953_2 + license: BSD-3-Clause + license_family: BSD + size: 26770 + timestamp: 1708947220914 +- kind: conda + name: re2 + version: 2023.09.01 + build: h7f4b329_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda + sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 + md5: 8f70e36268dea8eb666ef14c29bd3cda + depends: + - libre2-11 2023.09.01 h5a48ba9_2 + license: BSD-3-Clause + license_family: BSD + size: 26617 + timestamp: 1708946796423 +- kind: conda + name: re2 + version: 2023.09.01 + build: hb168e87_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda + sha256: 5739ed2cfa62ed7f828eb4b9e6e69ff1df56cb9a9aacdc296451a3cb647034eb + md5: 266f8ca8528fc7e0fa31066c309ad864 + depends: + - libre2-11 2023.09.01 h81f5012_2 + license: BSD-3-Clause + license_family: BSD + size: 26814 + timestamp: 1708947195067 +- kind: conda + name: re2 + version: 2023.09.01 + build: hd3b24a8_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda + sha256: 929744a982215ea19f6f9a9d00c782969cd690bfddeeb650a39df1536af577fe + md5: ffeb985810bc7d103662e1465c758847 + depends: + - libre2-11 2023.09.01 hf8d8778_2 + license: BSD-3-Clause + license_family: BSD + size: 207315 + timestamp: 1708947529390 - kind: conda name: readline version: '8.2' @@ -7143,6 +10759,98 @@ packages: license_family: GPL size: 255870 timestamp: 1679532707590 +- kind: conda + name: rerun-sdk + version: 0.14.1 + build: py312h60fbdae_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/rerun-sdk-0.14.1-py312h60fbdae_1.conda + sha256: a2a5746843480337b90f55e44d604e10a998f0f753fa78cea7b405b7acea67c5 + md5: 21f71c7773d7271d2d2395e76c153a3b + depends: + - attrs >=23.1.0 + - numpy >=1.23 + - pillow + - pyarrow >=14.0.2 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.5 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT OR Apache-2.0 + size: 12544773 + timestamp: 1711044172200 +- kind: conda + name: rerun-sdk + version: 0.14.1 + build: py312h6a27564_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rerun-sdk-0.14.1-py312h6a27564_1.conda + sha256: f6e9e3186793310cc74176c7ff5746c2054a32633f0e43fbd04e35bad7e7582e + md5: 3decccdd6b7c12090eb19d9373580e9a + depends: + - __osx >=11.0 + - attrs >=23.1.0 + - libcxx >=16 + - numpy >=1.23 + - pillow + - pyarrow >=14.0.2 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.5 + license: MIT OR Apache-2.0 + size: 13442157 + timestamp: 1711044207390 +- kind: conda + name: rerun-sdk + version: 0.14.1 + build: py312h9118e91_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rerun-sdk-0.14.1-py312h9118e91_1.conda + sha256: 010d9a6248f6e081d66dbd104b56c945b6309152715208307911ceb997dbdfa7 + md5: c62677c1c5c93199585c3c5b9361f936 + depends: + - attrs >=23.1.0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - numpy >=1.23 + - pillow + - pyarrow >=14.0.2 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.5 + license: MIT OR Apache-2.0 + size: 17333034 + timestamp: 1711041933019 +- kind: conda + name: rerun-sdk + version: 0.14.1 + build: py312hbe1a6d7_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rerun-sdk-0.14.1-py312hbe1a6d7_1.conda + sha256: 63f8477bcdef70dcd3e026f85baeee76531ae829b90e23dcf73e9bb9d4965cee + md5: ded1147b5d65c4eb2d615ab456f2832f + depends: + - __osx >=10.12 + - attrs >=23.1.0 + - libcxx >=16 + - numpy >=1.23 + - pillow + - pyarrow >=14.0.2 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - typing_extensions >=4.5 + constrains: + - __osx >=10.12 + license: MIT OR Apache-2.0 + size: 13918230 + timestamp: 1711044163050 - kind: conda name: rhash version: 1.4.3 @@ -7184,6 +10892,21 @@ packages: license_family: MIT size: 184509 timestamp: 1693427593121 +- kind: conda + name: s2n + version: 1.4.7 + build: h06160fa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.7-h06160fa_0.conda + sha256: c46f77d6280f2f22e7c63b160c9177627278056742370f8aec7aeb1b3c5393a9 + md5: bd39dff72c2daebd9b38c5a27b3ad207 + depends: + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 339411 + timestamp: 1710451148936 - kind: conda name: scotch version: 7.0.4 @@ -7287,6 +11010,65 @@ packages: license_family: MIT size: 469644 timestamp: 1708702431036 +- kind: conda + name: snappy + version: 1.1.10 + build: h17c5cce_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda + sha256: dfae03cd2339587871e53b42833657faa4c9e42e3e2c56ee9e32bc60797c7f62 + md5: ac82a611d1a67a598096ebaa857198e3 + depends: + - libcxx >=14.0.6 + license: BSD-3-Clause + license_family: BSD + size: 33879 + timestamp: 1678534968831 +- kind: conda + name: snappy + version: 1.1.10 + build: h225ccf5_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b + md5: 4320a8781f14cd959689b86e349f3b73 + depends: + - libcxx >=14.0.6 + license: BSD-3-Clause + license_family: BSD + size: 34657 + timestamp: 1678534768395 +- kind: conda + name: snappy + version: 1.1.10 + build: h9fff704_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda + sha256: 02219f2382b4fe39250627dade087a4412d811936a5a445636b7260477164eac + md5: e6d228cd0bb74a51dd18f5bfce0b4115 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 38865 + timestamp: 1678534590321 +- kind: conda + name: snappy + version: 1.1.10 + build: hfb803bf_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda + sha256: 2a195b38cb63f03ad9f73a82db52434ebefe216fb70f7ea3defe4ddf263d408a + md5: cff1df79c9cff719460eb2dd172568de + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 57065 + timestamp: 1678534804734 - kind: conda name: spdlog version: 1.12.0 @@ -7615,6 +11397,21 @@ packages: license_family: MIT size: 15940 timestamp: 1644342331069 +- kind: conda + name: typing_extensions + version: 4.10.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + sha256: 4be24d557897b2f6609f5d5f7c437833c62f4d4a96581e39530067e96a2d0451 + md5: 16ae769069b380646c47142d719ef466 + depends: + - python >=3.8 + license: PSF-2.0 + license_family: PSF + size: 37018 + timestamp: 1708904796013 - kind: conda name: tzdata version: 2024a @@ -7641,6 +11438,25 @@ packages: license_family: PROPRIETARY size: 1283972 timestamp: 1666630199266 +- kind: conda + name: ucx + version: 1.15.0 + build: h11edf95_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h11edf95_7.conda + sha256: 3e381ec5918045a43e0f349214a4d38e53990897ba07a6abf025f9e0156acaf2 + md5: 20a94f617ad76922f8737ad1fe317f4d + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - rdma-core >=50.0 + constrains: + - cuda-version >=11.2,<12 + license: BSD-3-Clause + license_family: BSD + size: 6847943 + timestamp: 1710357262334 - kind: conda name: unixodbc version: 2.3.12 @@ -8314,6 +12130,21 @@ packages: license_family: MIT size: 13667 timestamp: 1684638272445 +- kind: conda + name: xorg-libxau + version: 1.0.11 + build: hcd874cb_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda + sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77 + md5: c46ba8712093cb0114404ae8a7582e1a + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: MIT + license_family: MIT + size: 51297 + timestamp: 1684638355740 - kind: conda name: xorg-libxau version: 1.0.11 @@ -8366,6 +12197,20 @@ packages: license_family: MIT size: 19126 timestamp: 1610071769228 +- kind: conda + name: xorg-libxdmcp + version: 1.1.3 + build: hcd874cb_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 + sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93 + md5: 46878ebb6b9cbd8afcf8088d7ef00ece + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 67908 + timestamp: 1610072296570 - kind: conda name: xorg-libxext version: 1.3.4 diff --git a/pixi.toml b/pixi.toml index 68663b9ae38cd..f6bfe4d93587a 100644 --- a/pixi.toml +++ b/pixi.toml @@ -13,6 +13,7 @@ install-local = { cmd = "cmake --install build --prefix $CONDA_PREFIX", depends_ "configure_local", "build", ] } + example-hello-world = { cmd = "cmake --build build --target hello_world --parallel && ./build/bin/hello_world", depends_on = [ "configure", ] } @@ -22,6 +23,10 @@ example-atlas-puppet = { cmd = "cmake --build build --target atlas_puppet --para example-atlas-simbicon = { cmd = "cmake --build build --target atlas_simbicon --parallel && ./build/bin/atlas_simbicon", depends_on = [ "configure", ] } +example-rerun = { cmd = "cmake --build build --target example-rerun --parallel && ./build/bin/example-rerun", depends_on = [ + "configure", +] } + bm-empty = { cmd = "cmake --build build --target BM_INTEGRATION_empty --parallel && ./build/bin/BM_INTEGRATION_empty", depends_on = [ "configure", ] } @@ -36,16 +41,17 @@ console_bridge = ">=1.0.2,<1.1" eigen = ">=3.4.0,<3.5" fcl = ">=0.7.0,<0.8" fmt = ">=10.2.1,<10.3" +ipopt = ">=3.14.14,<3.15" libode = ">=0.16.2,<0.17" +nlopt = ">=2.7.1,<2.8" +numpy = ">=1.26.4,<1.27" octomap = ">=1.9.8,<1.10" openscenegraph = ">=3.6.5,<3.7" +pagmo = ">=2.19.0,<2.20" +rerun-sdk = ">=0.14.1,<0.15" spdlog = ">=1.12.0,<1.13" tinyxml2 = ">=10.0.0,<10.1" urdfdom = ">=4.0.0,<4.1" -ipopt = ">=3.14.14,<3.15" -nlopt = ">=2.7.1,<2.8" -pagmo = ">=2.19.0,<2.20" -numpy = ">=1.26.4,<1.27" [build-dependencies] cmake = "3.22.*" @@ -64,7 +70,7 @@ freeglut = ">=3.2.2,<3.3" imgui = ">=1.90.4,<1.91" [target.linux-64.tasks] -configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON" +configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON -DDART_BUILD_RERUN=ON" lint = { cmd = "cmake --build build --target format && black . && isort .", depends_on = [ "configure", ] } @@ -94,7 +100,7 @@ test-all = { cmd = "cmake --build build -j --target ALL", depends_on = [ clang-format-14 = ">=14.0.6,<14.1" [target.osx-64.tasks] -configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON" +configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON -DDART_BUILD_RERUN=ON" lint = { cmd = "cmake --build build --target format && black . && isort .", depends_on = [ "configure", ] } @@ -127,7 +133,7 @@ clang-format-14 = ">=14.0.6,<14.1" imgui = ">=1.90.4,<1.91" [target.osx-arm64.tasks] -configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON" +configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON -DDART_BUILD_RERUN=ON" lint = { cmd = "cmake --build build --target format && black . && isort .", depends_on = [ "configure", ] } @@ -161,7 +167,7 @@ imgui = ">=1.90.4,<1.91" freeglut = ">=3.2.2,<3.3" [target.win-64.tasks] -configure = "cmake -S . -B build -G 'Visual Studio 17 2022' -DCMAKE_BUILD_TYPE=Release -DDART_MSVC_DEFAULT_OPTIONS=ON -DBUILD_SHARED_LIBS=OFF -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=OFF" +configure = "cmake -S . -B build -G 'Visual Studio 17 2022' -DCMAKE_BUILD_TYPE=Release -DDART_MSVC_DEFAULT_OPTIONS=ON -DBUILD_SHARED_LIBS=OFF -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=OFF -DDART_BUILD_RERUN=ON" lint = { cmd = "black . && isort .", depends_on = ["configure"] } check-lint = { cmd = "black . --check && isort . --check", depends_on = [ "configure",