diff --git a/.github/workflows/end-to-end.yml b/.github/workflows/end-to-end.yml index e11ab971a..079192865 100644 --- a/.github/workflows/end-to-end.yml +++ b/.github/workflows/end-to-end.yml @@ -30,11 +30,10 @@ jobs: - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@master with: - toolchain: 1.70.0 + toolchain: 1.73.0 - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.5.0 - cache: true + pixi-version: v0.10.0 # build in release mode so that it's reasonably fast to run the tests - run: cargo build --release - run: cargo test -p rust-tests -- --test-threads 1 diff --git a/.github/workflows/rust-compile.yml b/.github/workflows/rust-compile.yml deleted file mode 100644 index 5de4671e3..000000000 --- a/.github/workflows/rust-compile.yml +++ /dev/null @@ -1,307 +0,0 @@ -on: - push: - branches: [main] - tags: - - 'v*.*.*' - pull_request: - workflow_dispatch: - -name: Continuous integration - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -env: - RUST_LOG: info - RUST_BACKTRACE: 1 - RUSTFLAGS: "-D warnings" - CARGO_TERM_COLOR: always - CICD_INTERMEDIATES_DIR: "_cicd-intermediates" - -jobs: - check: - name: Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - uses: Swatinem/rust-cache@v2 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: 1.70.0 - - run: cargo check - - # check-rustdoc-links: - # name: Check intra-doc links - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v4 - # with: - # submodules: recursive - # - uses: dtolnay/rust-toolchain@master - # with: - # toolchain: 1.70.0 - # - run: | - # for package in $(cargo metadata --no-deps --format-version=1 | jq -r '.packages[] | .name'); do - # cargo rustdoc -p "$package" --all-features -- -D warnings -W unreachable-pub - # done - - test: - name: Test Suite - runs-on: ${{ matrix.os }} - needs: check - strategy: - fail-fast: false - matrix: - os: ["ubuntu-latest", "windows-latest"] - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - # fetch all history so that the tests against v0.1.3 work - fetch-depth: 0 - # The tests require data that is stored in LFS - lfs: true - - uses: Swatinem/rust-cache@v2 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: 1.70.0 - - run: cargo test --all-features -- --nocapture - - build: - name: ${{ matrix.job.target }} (${{ matrix.job.os }}) - needs: [fmt, check] - runs-on: ${{ matrix.job.os }} - strategy: - fail-fast: false - matrix: - job: - # - { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } - # - { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04, use-cross: true } - # - { target: arm-unknown-linux-musleabihf, os: ubuntu-20.04, use-cross: true } - # - { target: i686-pc-windows-msvc , os: windows-2019 } - # - { target: i686-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } - # - { target: i686-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } - - { target: x86_64-apple-darwin , os: macos-11 } - - { target: aarch64-apple-darwin , os: macos-11 } - # - { target: x86_64-pc-windows-gnu , os: windows-2019 } - - { target: x86_64-pc-windows-msvc , os: windows-2019 } - - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 } - # - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } - env: - BUILD_CMD: cargo - steps: - - name: Checkout source code - uses: actions/checkout@v4 - - - name: Install prerequisites - shell: bash - run: | - case ${{ matrix.job.target }} in - arm-unknown-linux-*) sudo apt-get -y update ; sudo apt-get -y install gcc-arm-linux-gnueabihf ;; - aarch64-unknown-linux-gnu) sudo apt-get -y update ; sudo apt-get -y install gcc-aarch64-linux-gnu ;; - esac - - - name: Extract crate information - shell: bash - run: | - echo "PROJECT_NAME=$(sed -n 's/^name = "\(.*\)"/\1/p' Cargo.toml | head -n1)" >> $GITHUB_ENV - echo "PROJECT_VERSION=$(sed -n 's/^version = "\(.*\)"/\1/p' Cargo.toml | head -n1)" >> $GITHUB_ENV - echo "PROJECT_MAINTAINER=$(sed -n 's/^authors = \["\(.*\)"\]/\1/p' Cargo.toml)" >> $GITHUB_ENV - echo "PROJECT_HOMEPAGE=$(sed -n 's/^homepage = "\(.*\)"/\1/p' Cargo.toml)" >> $GITHUB_ENV - - - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@master - with: - toolchain: 1.70.0 - targets: ${{ matrix.job.target }} - - - name: Install cross - if: matrix.job.use-cross - uses: taiki-e/install-action@v2 - with: - tool: cross - - - name: Overwrite build command env variable - if: matrix.job.use-cross - shell: bash - run: echo "BUILD_CMD=cross" >> $GITHUB_ENV - - - name: Add macOS cross build capability - if: matrix.job.target == 'aarch64-apple-darwin' - shell: bash - run: | - echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV - echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV - rustup default stable-aarch64-apple-darwin - - - name: Show version information (Rust, cargo, GCC) - shell: bash - run: | - gcc --version || true - rustup -V - rustup toolchain list - rustup default - cargo -V - rustc -V - - - name: Set build options - id: build-options - shell: bash - run: | - unset CARGO_BUILD_OPTIONS - case ${{ matrix.job.target }} in - *-musl) CARGO_BUILD_OPTIONS="--no-default-features --features rustls-tls" ;; - *) CARGO_BUILD_OPTIONS="" ;; - esac - echo "CARGO_BUILD_OPTIONS=${CARGO_BUILD_OPTIONS}" >> $GITHUB_OUTPUT - - - name: Build - uses: actions-rs/cargo@v1 - with: - use-cross: ${{ matrix.job.use-cross }} - command: build - args: --locked --release --target=${{ matrix.job.target }} ${{ steps.build-options.outputs.CARGO_BUILD_OPTIONS}} - - - name: Strip debug information from executable - id: strip - shell: bash - run: | - # Figure out suffix of binary - EXE_suffix="" - case ${{ matrix.job.target }} in - *-pc-windows-*) EXE_suffix=".exe" ;; - esac; - - # Figure out what strip tool to use if any - STRIP="strip" - case ${{ matrix.job.target }} in - arm-unknown-linux-*) STRIP="arm-linux-gnueabihf-strip" ;; - aarch64-unknown-linux-gnu) STRIP="aarch64-linux-gnu-strip" ;; - *-pc-windows-msvc) STRIP="" ;; - esac; - - # Setup paths - BIN_DIR="${{ env.CICD_INTERMEDIATES_DIR }}/stripped-release-bin/" - mkdir -p "${BIN_DIR}" - BIN_NAME="${{ env.PROJECT_NAME }}${EXE_suffix}" - BIN_PATH="${BIN_DIR}/${BIN_NAME}" - - # Copy the release build binary to the result location - cp "target/${{ matrix.job.target }}/release/${BIN_NAME}" "${BIN_DIR}" - - # Also strip if possible - if [ -n "${STRIP}" ]; then - "${STRIP}" "${BIN_PATH}" - fi - - # Let subsequent steps know where to find the (stripped) bin - echo "BIN_PATH=${BIN_PATH}" >> $GITHUB_OUTPUT - echo "BIN_NAME=${BIN_NAME}" >> $GITHUB_OUTPUT - - - name: Set testing options - id: test-options - shell: bash - run: | - # test only library unit tests and binary for arm-type targets - unset CARGO_TEST_OPTIONS - unset CARGO_TEST_OPTIONS ; case ${{ matrix.job.target }} in arm-* | aarch64-*) CARGO_TEST_OPTIONS="--lib --bin ${PROJECT_NAME}" ;; esac; - echo "CARGO_TEST_OPTIONS=${CARGO_TEST_OPTIONS}" >> $GITHUB_OUTPUT - - # - name: Run tests - # shell: bash - # if: matrix.job.target != 'aarch64-apple-darwin' - # run: $BUILD_CMD test --locked --target=${{ matrix.job.target }} ${{ steps.build-options.outputs.CARGO_BUILD_OPTIONS}} ${{ steps.test-options.outputs.CARGO_TEST_OPTIONS}} - - - name: Create tarball - id: package - shell: bash - run: | - PKG_suffix=".tar.gz" ; case ${{ matrix.job.target }} in *-pc-windows-*) PKG_suffix=".zip" ;; esac; - PKG_BASENAME=${PROJECT_NAME}-v${PROJECT_VERSION}-${{ matrix.job.target }} - PKG_NAME=${PKG_BASENAME}${PKG_suffix} - echo "PKG_NAME=${PKG_NAME}" >> $GITHUB_OUTPUT - - PKG_STAGING="${{ env.CICD_INTERMEDIATES_DIR }}/package" - ARCHIVE_DIR="${PKG_STAGING}/${PKG_BASENAME}/" - mkdir -p "${ARCHIVE_DIR}" - # mkdir -p "${ARCHIVE_DIR}/autocomplete" - - # Binary - cp "${{ steps.strip.outputs.BIN_PATH }}" "$ARCHIVE_DIR" - - # README, LICENSE and CHANGELOG files - cp "README.md" "LICENSE" "$ARCHIVE_DIR" - - # Autocompletion files - # cp 'target/${{ matrix.job.target }}/release/build/${{ env.PROJECT_NAME }}'-*/out/assets/completions/bat.bash "$ARCHIVE_DIR/autocomplete/${{ env.PROJECT_NAME }}.bash" - # cp 'target/${{ matrix.job.target }}/release/build/${{ env.PROJECT_NAME }}'-*/out/assets/completions/bat.fish "$ARCHIVE_DIR/autocomplete/${{ env.PROJECT_NAME }}.fish" - # cp 'target/${{ matrix.job.target }}/release/build/${{ env.PROJECT_NAME }}'-*/out/assets/completions/_bat.ps1 "$ARCHIVE_DIR/autocomplete/_${{ env.PROJECT_NAME }}.ps1" - # cp 'target/${{ matrix.job.target }}/release/build/${{ env.PROJECT_NAME }}'-*/out/assets/completions/bat.zsh "$ARCHIVE_DIR/autocomplete/${{ env.PROJECT_NAME }}.zsh" - - # base compressed package - pushd "${PKG_STAGING}/" >/dev/null - case ${{ matrix.job.target }} in - *-pc-windows-*) 7z -y a "${PKG_NAME}" "${PKG_BASENAME}"/* | tail -2 ;; - *) tar czf "${PKG_NAME}" "${PKG_BASENAME}"/* ;; - esac; - popd >/dev/null - - # Let subsequent steps know where to find the compressed package - echo PKG_PATH="${PKG_STAGING}/${PKG_NAME}" >> $GITHUB_OUTPUT - - - name: "Artifact upload: tarball" - uses: actions/upload-artifact@master - with: - name: ${{ steps.package.outputs.PKG_NAME }} - path: ${{ steps.package.outputs.PKG_PATH }} - - - name: Check for release - id: is-release - shell: bash - run: | - unset IS_RELEASE ; if [[ $GITHUB_REF =~ ^refs/tags/v[0-9].* ]]; then IS_RELEASE='true' ; fi - echo "IS_RELEASE=${IS_RELEASE}" >> $GITHUB_OUTPUT - - - name: Publish archives and packages - uses: softprops/action-gh-release@v1 - if: steps.is-release.outputs.IS_RELEASE - with: - draft: true - files: | - ${{ steps.package.outputs.PKG_PATH }} - ${{ steps.debian-package.outputs.DPKG_PATH }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - fmt: - name: Rustfmt - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - uses: dtolnay/rust-toolchain@master - with: - components: rustfmt - toolchain: 1.70.0 - - uses: Swatinem/rust-cache@v2 - - run: cargo fmt --all -- --check - - clippy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - uses: dtolnay/rust-toolchain@master - with: - components: clippy - toolchain: 1.70.0 - - uses: Swatinem/rust-cache@v2 - - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features -- -D warnings diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 000000000..e731033d3 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,186 @@ +on: + push: + branches: [main] + tags: + - 'v*.*.*' + pull_request: + workflow_dispatch: + +name: Continuous integration + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +env: + RUST_LOG: info + RUST_BACKTRACE: 1 + RUSTFLAGS: "-D warnings" + CARGO_TERM_COLOR: always + +jobs: + test: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - uses: dtolnay/rust-toolchain@master + with: + toolchain: 1.73.0 + components: clippy,rustfmt + - uses: Swatinem/rust-cache@v2 + - name: Check + run: cargo check + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --all-features --verbose -- --nocapture + - name: Format + run: cargo fmt --all -- --check + - uses: giraffate/clippy-action@v1 + with: + reporter: 'github-pr-check' + github_token: ${{ secrets.GITHUB_TOKEN }} + + build: + name: Build ${{ matrix.target }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + include: + - target: x86_64-unknown-linux-musl + os: ubuntu-22.04 + - target: aarch64-unknown-linux-musl + os: ubuntu-22.04 + use-cross: true + # - target: powerpc64le-unknown-linux-musl + # os: ubuntu-22.04 + # use-cross: true + - target: x86_64-apple-darwin + os: macos-13 + - target: aarch64-apple-darwin + os: macos-13 + - target: x86_64-pc-windows-gnu + os: windows-2022 + - target: x86_64-pc-windows-msvc + os: windows-2022 + steps: + - name: Checkout source code + uses: actions/checkout@v4 + + - name: Extract version + shell: bash + id: metadata + run: | + echo "project-version=$(yq '.package.version' Cargo.toml)" >> $GITHUB_OUTPUT + + - name: Install Rust toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: 1.73.0 + targets: ${{ matrix.target }} + + - name: Install musl-gcc + if: matrix.target == 'x86_64-unknown-linux-musl' + run: sudo apt install musl-tools + + - uses: Swatinem/rust-cache@v2 + + - name: Install cross + if: matrix.use-cross + uses: taiki-e/install-action@v2 + with: + tool: cross + + - name: Add macOS cross build capability + if: matrix.target == 'aarch64-apple-darwin' + run: | + echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV + echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV + rustup default stable-aarch64-apple-darwin + + - name: Show version information (Rust, cargo, GCC) + run: | + gcc --version || true + rustup -V + rustup toolchain list + rustup default + cargo -V + rustc -V + + - name: Set build options + id: options + shell: bash + run: | + unset CARGO_BUILD_OPTIONS + case ${{ matrix.target }} in + *-musl) CARGO_BUILD_OPTIONS="--no-default-features --features rustls-tls" ;; + *) CARGO_BUILD_OPTIONS="" ;; + esac + echo "cargo-build-options=${CARGO_BUILD_OPTIONS}" >> "$GITHUB_OUTPUT" + + # test only library unit tests and binary for arm-type targets + unset CARGO_TEST_OPTIONS + case ${{ matrix.target }} in + arm-* | aarch64-*) CARGO_TEST_OPTIONS="--lib --bin rattler-build" ;; + esac + echo "cargo-test-options=${CARGO_TEST_OPTIONS}" >> $GITHUB_OUTPUT + + - name: Build + run: >- + ${{ matrix.use-cross && 'cross' || 'cargo' }} + build + --locked + --release + --target=${{ matrix.target }} + ${{ steps.options.outputs.cargo-build-options }} + + - name: Run tests + shell: bash + if: matrix.target != 'aarch64-apple-darwin' + run: ${{ matrix.use-cross && 'cross' || 'cargo' }} test --locked --target=${{ matrix.target }} ${{ steps.options.outputs.cargo-build-options }} ${{ steps.options.outputs.cargo-test-options }} + + - name: Create tarball + id: package + shell: bash + run: | + PKG_BASENAME=rattler-build-v${{ steps.metadata.outputs.project-version }}-${{ matrix.target }} + PKG_NAME=${PKG_BASENAME}${{ contains(matrix.target, 'pc-windows') && '.zip' || '.tar.gz' }} + + ARCHIVE_DIR="pkg/${PKG_BASENAME}" + mkdir -p "${ARCHIVE_DIR}" + + cp "target/${{ matrix.target }}/release/rattler-build${{ contains(matrix.target, 'pc-windows') && '.exe' || '' }}" "$ARCHIVE_DIR" + cp README.md LICENSE "$ARCHIVE_DIR" + + pushd pkg >/dev/null + case ${{ matrix.target }} in + *-pc-windows-*) 7z -y a "${PKG_NAME}" "${PKG_BASENAME}"/* | tail -2 ;; + *) tar czf "${PKG_NAME}" "${PKG_BASENAME}"/* ;; + esac; + popd >/dev/null + + echo "pkg-name=${PKG_NAME}" >> $GITHUB_OUTPUT + echo pkg-path="${ARCHIVE_DIR}" >> $GITHUB_OUTPUT + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: ${{ steps.package.outputs.pkg-name }} + path: ${{ steps.package.outputs.pkg-path }} + + - name: Publish archives and packages + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/v') + with: + draft: true + files: | + ${{ steps.package.outputs.pkg-path }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/Cargo.toml b/Cargo.toml index 01a3872e4..3e0fdc473 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ walkdir = "2.4.0" sha2 = "0.10.8" hex = "0.4.3" serde_json = "1.0.108" -reqwest = "0.11.22" +reqwest = { version = "0.11.22", default-features = false } tokio = { version = "1.34.0", features = ["rt", "macros", "rt-multi-thread"] } itertools = "0.12.0" content_inspector = "0.2.4" diff --git a/pixi.lock b/pixi.lock index 86e92db8c..53dffe82b 100644 --- a/pixi.lock +++ b/pixi.lock @@ -1,3 +1,4 @@ +version: 3 metadata: content_hash: linux-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d @@ -18,17 +19,16 @@ metadata: inputs_metadata: null custom_metadata: null package: -- name: _libgcc_mutex +- platform: linux-64 + name: _libgcc_mutex version: '0.1' + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 hash: md5: d7c89558ba9fa0495403155b64376d81 sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - optional: false - category: main build: conda_forge arch: x86_64 subdir: linux-64 @@ -36,19 +36,18 @@ package: license: None size: 2562 timestamp: 1578324546067 -- name: _openmp_mutex +- platform: linux-64 + name: _openmp_mutex version: '4.5' + category: main manager: conda - platform: linux-64 dependencies: - _libgcc_mutex: ==0.1 conda_forge - libgomp: '>=7.5.0' + - _libgcc_mutex ==0.1 conda_forge + - libgomp >=7.5.0 url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 hash: md5: 73aaf86a425cc6e73fcf236a5a46396d sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - optional: false - category: main build: 2_gnu arch: x86_64 subdir: linux-64 @@ -59,18 +58,17 @@ package: license_family: BSD size: 23621 timestamp: 1650670423406 -- name: binutils +- platform: linux-64 + name: binutils version: '2.40' + category: main manager: conda - platform: linux-64 dependencies: - binutils_impl_linux-64: '>=2.40,<2.41.0a0' + - binutils_impl_linux-64 >=2.40,<2.41.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda hash: md5: ccc940fddbc3fcd3d79cd4c654c4b5c4 sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c - optional: false - category: main build: hdd6e379_0 arch: x86_64 subdir: linux-64 @@ -79,19 +77,18 @@ package: license_family: GPL size: 30469 timestamp: 1674833987166 -- name: binutils_impl_linux-64 +- platform: linux-64 + name: binutils_impl_linux-64 version: '2.40' + category: main manager: conda - platform: linux-64 dependencies: - ld_impl_linux-64: ==2.40 h41732ed_0 - sysroot_linux-64: '*' + - ld_impl_linux-64 ==2.40 h41732ed_0 + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda hash: md5: 33084421a8c0af6aef1b439707f7662a sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d - optional: false - category: main build: hf600244_0 arch: x86_64 subdir: linux-64 @@ -100,19 +97,18 @@ package: license_family: GPL size: 5414922 timestamp: 1674833958334 -- name: binutils_linux-64 +- platform: linux-64 + name: binutils_linux-64 version: '2.40' + category: main manager: conda - platform: linux-64 dependencies: - binutils_impl_linux-64: 2.40.* - sysroot_linux-64: '*' + - binutils_impl_linux-64 2.40.* + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hbdbef99_2.conda hash: md5: adfebae9fdc63a598495dfe3b006973a sha256: 333f3339d94c93bcc02a723e3e460cb6ff6075e05f5247e15bef5dcdcec541a3 - optional: false - category: main build: hbdbef99_2 arch: x86_64 subdir: linux-64 @@ -121,18 +117,17 @@ package: license_family: BSD size: 28178 timestamp: 1694604071236 -- name: bzip2 +- platform: linux-64 + name: bzip2 version: 1.0.8 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' + - libgcc-ng >=9.3.0 url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 hash: md5: a1fd65c7ccbf10880423d82bca54eb54 sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - optional: false - category: main build: h7f98852_4 arch: x86_64 subdir: linux-64 @@ -141,17 +136,16 @@ package: license_family: BSD size: 495686 timestamp: 1606604745109 -- name: bzip2 +- platform: osx-64 + name: bzip2 version: 1.0.8 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 hash: md5: 37edc4e6304ca87316e160f5ca0bd1b5 sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 - optional: false - category: main build: h0d85af4_4 arch: x86_64 subdir: osx-64 @@ -160,17 +154,16 @@ package: license_family: BSD size: 158829 timestamp: 1618862580095 -- name: bzip2 +- platform: osx-arm64 + name: bzip2 version: 1.0.8 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 hash: md5: fc76ace7b94fb1f694988ab1b14dd248 sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 - optional: false - category: main build: h3422bc3_4 arch: aarch64 subdir: osx-arm64 @@ -179,19 +172,18 @@ package: license_family: BSD size: 151850 timestamp: 1618862645215 -- name: bzip2 +- platform: win-64 + name: bzip2 version: 1.0.8 + category: main manager: conda - platform: win-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 hash: md5: 7c03c66026944073040cb19a4f3ec3c9 sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 - optional: false - category: main build: h8ffe710_4 arch: x86_64 subdir: win-64 @@ -200,18 +192,17 @@ package: license_family: BSD size: 152247 timestamp: 1606605223049 -- name: c-ares +- platform: linux-64 + name: c-ares version: 1.19.1 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda hash: md5: e8c18d865be43e2fb3f7a145b6adf1f5 sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 - optional: false - category: main build: hd590300_0 arch: x86_64 subdir: linux-64 @@ -220,17 +211,16 @@ package: license_family: MIT size: 113362 timestamp: 1684782732180 -- name: c-ares +- platform: osx-64 + name: c-ares version: 1.19.1 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.19.1-h0dc2134_0.conda hash: md5: b3e62631b4e1b9801477523ce1d6f355 sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c - optional: false - category: main build: h0dc2134_0 arch: x86_64 subdir: osx-64 @@ -239,17 +229,16 @@ package: license_family: MIT size: 103004 timestamp: 1684783034995 -- name: c-ares +- platform: osx-arm64 + name: c-ares version: 1.19.1 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda hash: md5: e7fc7430440d255e3a9c7e5a52f7b294 sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 - optional: false - category: main build: hb547adb_0 arch: aarch64 subdir: osx-arm64 @@ -258,20 +247,19 @@ package: license_family: MIT size: 101998 timestamp: 1684783026131 -- name: c-compiler +- platform: linux-64 + name: c-compiler version: 1.6.0 + category: main manager: conda - platform: linux-64 dependencies: - binutils: '*' - gcc: '*' - gcc_linux-64: 12.* + - binutils * + - gcc * + - gcc_linux-64 12.* url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.6.0-hd590300_0.conda hash: md5: ea6c792f792bdd7ae6e7e2dee32f0a48 sha256: d741ff93d5f71a83a9be0f592682f31ca2d468c37177f18a8d1a2469bb821c05 - optional: false - category: main build: hd590300_0 arch: x86_64 subdir: linux-64 @@ -279,21 +267,20 @@ package: license: BSD size: 6184 timestamp: 1689097480051 -- name: c-compiler +- platform: osx-64 + name: c-compiler version: 1.6.0 + category: main manager: conda - platform: osx-64 dependencies: - cctools: '>=949.0.1' - clang_osx-64: 15.* - ld64: '>=530' - llvm-openmp: '*' + - cctools >=949.0.1 + - clang_osx-64 15.* + - ld64 >=530 + - llvm-openmp * url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.6.0-h63c33a9_0.conda hash: md5: d7f3b8d3a85b4e7eded31adb611bb665 sha256: fe43bbe1b7c809b618808123a662333c20417bc98ffa5dc7d6da23c3c8ec236b - optional: false - category: main build: h63c33a9_0 arch: x86_64 subdir: osx-64 @@ -301,21 +288,20 @@ package: license: BSD size: 6250 timestamp: 1689097835926 -- name: c-compiler +- platform: osx-arm64 + name: c-compiler version: 1.6.0 + category: main manager: conda - platform: osx-arm64 dependencies: - cctools: '>=949.0.1' - clang_osx-arm64: 15.* - ld64: '>=530' - llvm-openmp: '*' + - cctools >=949.0.1 + - clang_osx-arm64 15.* + - ld64 >=530 + - llvm-openmp * url: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.6.0-hd291e01_0.conda hash: md5: 7d58fb216ad601b545826449d8d4c34e sha256: f2e837668ff628ef8b5d54fffbfe9596cdd3820f7c5a3fc5ad48b259ff99a501 - optional: false - category: main build: hd291e01_0 arch: aarch64 subdir: osx-arm64 @@ -323,18 +309,17 @@ package: license: BSD size: 6269 timestamp: 1689097851052 -- name: c-compiler +- platform: win-64 + name: c-compiler version: 1.6.0 + category: main manager: conda - platform: win-64 dependencies: - vs2019_win-64: '*' + - vs2019_win-64 * url: https://conda.anaconda.org/conda-forge/win-64/c-compiler-1.6.0-hcfcfb64_0.conda hash: md5: 9246624ea9ea636c9801b3279f88f3a4 sha256: 10d113359a3906d9eda66062ab3a36e0f21381c8448ec50c7a9e09e0a9bb4f21 - optional: false - category: main build: hcfcfb64_0 arch: x86_64 subdir: win-64 @@ -342,17 +327,16 @@ package: license: BSD size: 6381 timestamp: 1689097760340 -- name: ca-certificates +- platform: linux-64 + name: ca-certificates version: 2023.7.22 + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda hash: md5: a73ecd2988327ad4c8f2c331482917f2 sha256: 525b7b6b5135b952ec1808de84e5eca57c7c7ff144e29ef3e96ae4040ff432c1 - optional: false - category: main build: hbcca054_0 arch: x86_64 subdir: linux-64 @@ -360,17 +344,16 @@ package: license: ISC size: 149515 timestamp: 1690026108541 -- name: ca-certificates +- platform: osx-64 + name: ca-certificates version: 2023.7.22 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda hash: md5: bf2c54c18997bf3542af074c10191771 sha256: 27de15e18a12117e83ac1eb8a8e52eb65731cc7f0b607a7922206a15e2460c7b - optional: false - category: main build: h8857fd0_0 arch: x86_64 subdir: osx-64 @@ -378,17 +361,16 @@ package: license: ISC size: 149911 timestamp: 1690026363769 -- name: ca-certificates +- platform: osx-arm64 + name: ca-certificates version: 2023.7.22 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.7.22-hf0a4a13_0.conda hash: md5: e1b99ac4dbcee71a71682996f67f7965 sha256: b220c001b0c1448a47cc49b42a622e06a540ec60b3f7a1e057fca1f37ce515e4 - optional: false - category: main build: hf0a4a13_0 arch: aarch64 subdir: osx-arm64 @@ -396,17 +378,16 @@ package: license: ISC size: 149918 timestamp: 1690026385821 -- name: ca-certificates +- platform: win-64 + name: ca-certificates version: 2023.7.22 + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda hash: md5: b1c2327b36f1a25d96f2039b0d3e3739 sha256: b85a6f307f8e1c803cb570bdfb9e4d811a361417873ecd2ecf687587405a72e0 - optional: false - category: main build: h56e8100_0 arch: x86_64 subdir: win-64 @@ -414,20 +395,19 @@ package: license: ISC size: 150013 timestamp: 1690026269050 -- name: cctools +- platform: osx-64 + name: cctools version: 973.0.1 + category: main manager: conda - platform: osx-64 dependencies: - cctools_osx-64: ==973.0.1 habff3f6_14 - ld64: ==609 ha91a046_14 - libllvm15: '>=15.0.7,<15.1.0a0' + - cctools_osx-64 ==973.0.1 habff3f6_14 + - ld64 ==609 ha91a046_14 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-hd9ad811_14.conda hash: md5: 2fbb98b0cef591025f5f1b17730a0b5b sha256: 2466d8a164ab7d6d9308445bec0413fac4c6f488df4a5b6b903bca2b0f4c4b08 - optional: false - category: main build: hd9ad811_14 arch: x86_64 subdir: osx-64 @@ -436,20 +416,19 @@ package: license_family: Other size: 21930 timestamp: 1690768082194 -- name: cctools +- platform: osx-arm64 + name: cctools version: 973.0.1 + category: main manager: conda - platform: osx-arm64 dependencies: - cctools_osx-arm64: ==973.0.1 h2a25c60_14 - ld64: ==609 h89fa09d_14 - libllvm15: '>=15.0.7,<15.1.0a0' + - cctools_osx-arm64 ==973.0.1 h2a25c60_14 + - ld64 ==609 h89fa09d_14 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hd1ac623_14.conda hash: md5: 46c0f28ac1c5f417f46e028212f72f91 sha256: d7520a360b9d9ea0690f20403d19a9bee5069f5844aa2f092c5bd24816f0a84d - optional: false - category: main build: hd1ac623_14 arch: aarch64 subdir: osx-arm64 @@ -458,22 +437,21 @@ package: license_family: Other size: 22053 timestamp: 1690768497252 -- name: cctools_osx-64 +- platform: osx-64 + name: cctools_osx-64 version: 973.0.1 + category: main manager: conda - platform: osx-64 dependencies: - ld64_osx-64: '>=609,<610.0a0' - libcxx: '*' - libllvm15: '>=15.0.7,<15.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - sigtool: '*' + - ld64_osx-64 >=609,<610.0a0 + - libcxx * + - libllvm15 >=15.0.7,<15.1.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - sigtool * url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-habff3f6_14.conda hash: md5: f08fbd275d1df88503af3ad946c08582 sha256: ddb114073cd1f3004a0a2f243d6d5d14ce0d30c3d94794e1706e9bda5a42237a - optional: false - category: main build: habff3f6_14 arch: x86_64 subdir: osx-64 @@ -486,22 +464,21 @@ package: license_family: Other size: 1117928 timestamp: 1690768048658 -- name: cctools_osx-arm64 +- platform: osx-arm64 + name: cctools_osx-arm64 version: 973.0.1 + category: main manager: conda - platform: osx-arm64 dependencies: - ld64_osx-arm64: '>=609,<610.0a0' - libcxx: '*' - libllvm15: '>=15.0.7,<15.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - sigtool: '*' + - ld64_osx-arm64 >=609,<610.0a0 + - libcxx * + - libllvm15 >=15.0.7,<15.1.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - sigtool * url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-h2a25c60_14.conda hash: md5: 09f973985e770a7fbbca9a299af51a8b sha256: 3c0b4237f5751617c2fa63180ae56ae8c39c349b1b30d78a651b0274758b65d1 - optional: false - category: main build: h2a25c60_14 arch: aarch64 subdir: osx-arm64 @@ -514,22 +491,21 @@ package: license_family: Other size: 1122294 timestamp: 1690768462517 -- name: cffi +- platform: linux-64 + name: cffi version: 1.16.0 + category: main manager: conda - platform: linux-64 dependencies: - libffi: '>=3.4,<4.0a0' - libgcc-ng: '>=12' - pycparser: '*' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - pycparser * + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py312hf06ca03_0.conda hash: md5: 56b0ca764ce23cc54f3f7e2a7b970f6d sha256: 5a36e2c254603c367d26378fa3a205bd92263e30acf195f488749562b4c44251 - optional: false - category: main build: py312hf06ca03_0 arch: x86_64 subdir: linux-64 @@ -538,21 +514,20 @@ package: license_family: MIT size: 294523 timestamp: 1696001868949 -- name: cffi +- platform: osx-64 + name: cffi version: 1.16.0 + category: main manager: conda - platform: osx-64 dependencies: - libffi: '>=3.4,<4.0a0' - pycparser: '*' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 + - libffi >=3.4,<4.0a0 + - pycparser * + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py312h38bf5a0_0.conda hash: md5: a45759c013ab20b9017ef9539d234dd7 sha256: 8b856583b56fc30f064a7cb286f85e4b5725f2bd4fda8ba0c4e94bffe258741e - optional: false - category: main build: py312h38bf5a0_0 arch: x86_64 subdir: osx-64 @@ -561,21 +536,20 @@ package: license_family: MIT size: 282370 timestamp: 1696002004433 -- name: cffi +- platform: osx-arm64 + name: cffi version: 1.16.0 + category: main manager: conda - platform: osx-arm64 dependencies: - libffi: '>=3.4,<4.0a0' - pycparser: '*' - python: '>=3.12.0rc3,<3.13.0a0 *_cpython' - python_abi: 3.12.* *_cp312 + - libffi >=3.4,<4.0a0 + - pycparser * + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py312h8e38eb3_0.conda hash: md5: 960ecbd65860d3b1de5e30373e1bffb1 sha256: 1544403cb1a5ca2aeabf0dac86d9ce6066d6fb4363493643b33ffd1b78038d18 - optional: false - category: main build: py312h8e38eb3_0 arch: aarch64 subdir: osx-arm64 @@ -584,23 +558,22 @@ package: license_family: MIT size: 284245 timestamp: 1696002181644 -- name: cffi +- platform: win-64 + name: cffi version: 1.16.0 + category: main manager: conda - platform: win-64 dependencies: - pycparser: '*' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - pycparser * + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py312he70551f_0.conda hash: md5: 5a51096925d52332c62bfd8904899055 sha256: dd39e594f5c6bca52dfed343de2af9326a99700ce2ba3404bd89706926fc0137 - optional: false - category: main build: py312he70551f_0 arch: x86_64 subdir: win-64 @@ -609,18 +582,17 @@ package: license_family: MIT size: 287805 timestamp: 1696002408940 -- name: cfgv +- platform: linux-64 + name: cfgv version: 3.3.1 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.6.1' + - python >=3.6.1 url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 hash: md5: ebb5f5f7dc4f1a3780ef7ea7738db08c sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -630,18 +602,17 @@ package: noarch: python size: 10788 timestamp: 1629909423398 -- name: cfgv +- platform: osx-64 + name: cfgv version: 3.3.1 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.6.1' + - python >=3.6.1 url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 hash: md5: ebb5f5f7dc4f1a3780ef7ea7738db08c sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -651,18 +622,17 @@ package: noarch: python size: 10788 timestamp: 1629909423398 -- name: cfgv +- platform: osx-arm64 + name: cfgv version: 3.3.1 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.6.1' + - python >=3.6.1 url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 hash: md5: ebb5f5f7dc4f1a3780ef7ea7738db08c sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -672,18 +642,17 @@ package: noarch: python size: 10788 timestamp: 1629909423398 -- name: cfgv +- platform: win-64 + name: cfgv version: 3.3.1 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.6.1' + - python >=3.6.1 url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 hash: md5: ebb5f5f7dc4f1a3780ef7ea7738db08c sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -693,18 +662,17 @@ package: noarch: python size: 10788 timestamp: 1629909423398 -- name: clang +- platform: osx-64 + name: clang version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - clang-15: ==15.0.7 default_hdb78580_3 + - clang-15 ==15.0.7 default_hdb78580_3 url: https://conda.anaconda.org/conda-forge/osx-64/clang-15.0.7-h694c41f_3.conda hash: md5: 8a48d466e519b8db7dda7c5d27cc1d31 sha256: 3eab054ba786b0b80609bea17342385dcbdce69c6158e6ec7443f4f940c92883 - optional: false - category: main build: h694c41f_3 arch: x86_64 subdir: osx-64 @@ -718,18 +686,17 @@ package: license_family: Apache size: 132843 timestamp: 1690549855885 -- name: clang +- platform: osx-arm64 + name: clang version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - clang-15: ==15.0.7 default_h5dc8d65_3 + - clang-15 ==15.0.7 default_h5dc8d65_3 url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-15.0.7-hce30654_3.conda hash: md5: 0871ba77c4bec31504b371a4f2525a7b sha256: 7eceef0863863c7e6c8752ca8359dedebc87cc9fba108856533115e2d9a8d9ba - optional: false - category: main build: hce30654_3 arch: aarch64 subdir: osx-arm64 @@ -743,20 +710,19 @@ package: license_family: Apache size: 133018 timestamp: 1690549798814 -- name: clang-15 +- platform: osx-64 + name: clang-15 version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - libclang-cpp15: ==15.0.7 default_hdb78580_3 - libcxx: '>=15.0.7' - libllvm15: '>=15.0.7,<15.1.0a0' + - libclang-cpp15 ==15.0.7 default_hdb78580_3 + - libcxx >=15.0.7 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/clang-15-15.0.7-default_hdb78580_3.conda hash: md5: 688d6b9e178cb7786a07e3cfca2a8f09 sha256: 686abd626e3fe42c040c77e38b5c07d4fe5cd6f1561feb4b92ffbbba6b36e262 - optional: false - category: main build: default_hdb78580_3 arch: x86_64 subdir: osx-64 @@ -770,20 +736,19 @@ package: license_family: Apache size: 794748 timestamp: 1690549737577 -- name: clang-15 +- platform: osx-arm64 + name: clang-15 version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - libclang-cpp15: ==15.0.7 default_h5dc8d65_3 - libcxx: '>=15.0.7' - libllvm15: '>=15.0.7,<15.1.0a0' + - libclang-cpp15 ==15.0.7 default_h5dc8d65_3 + - libcxx >=15.0.7 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-15-15.0.7-default_h5dc8d65_3.conda hash: md5: 3b214c8a23030d3a04389cbcd4bb84e4 sha256: 92d974b4675fa1f56f5ba1f396cc811a830ecbba0195ef1697235298535fad39 - optional: false - category: main build: default_h5dc8d65_3 arch: aarch64 subdir: osx-arm64 @@ -797,22 +762,21 @@ package: license_family: Apache size: 795051 timestamp: 1690549670667 -- name: clang_osx-64 +- platform: osx-64 + name: clang_osx-64 version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - cctools_osx-64: '*' - clang: 15.0.7.* - compiler-rt: 15.0.7.* - ld64_osx-64: '*' - llvm-tools: 15.0.7.* + - cctools_osx-64 * + - clang 15.0.7.* + - compiler-rt 15.0.7.* + - ld64_osx-64 * + - llvm-tools 15.0.7.* url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-15.0.7-h03d6864_3.conda hash: md5: 9dfd4e8cbc51c07a7b1ad59ad8415fad sha256: 1257bf432219240be7b3eddde72fcfad1e85c8eacea2871e6f9121d66eccd965 - optional: false - category: main build: h03d6864_3 arch: x86_64 subdir: osx-64 @@ -821,22 +785,21 @@ package: license_family: BSD size: 20620 timestamp: 1684463185776 -- name: clang_osx-arm64 +- platform: osx-arm64 + name: clang_osx-arm64 version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - cctools_osx-arm64: '*' - clang: 15.0.7.* - compiler-rt: 15.0.7.* - ld64_osx-arm64: '*' - llvm-tools: 15.0.7.* + - cctools_osx-arm64 * + - clang 15.0.7.* + - compiler-rt 15.0.7.* + - ld64_osx-arm64 * + - llvm-tools 15.0.7.* url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-15.0.7-h77e971b_3.conda hash: md5: 4799cb60f8ff17edaf3574b28681d2a0 sha256: 556ab57b9d190bf3ad2b9e7ba3c164157f8d163489a65235c0cfe52478521da0 - optional: false - category: main build: h77e971b_3 arch: aarch64 subdir: osx-arm64 @@ -845,19 +808,18 @@ package: license_family: BSD size: 20618 timestamp: 1684463162877 -- name: clangdev +- platform: win-64 + name: clangdev version: 5.0.0 + category: main manager: conda - platform: win-64 dependencies: - vs2015_runtime: '*' - vc: 14.* + - vs2015_runtime * + - vc 14.* url: https://conda.anaconda.org/conda-forge/win-64/clangdev-5.0.0-flang_3.tar.bz2 hash: md5: afbd5f59b9358ee37e73fbfb1515c3b6 sha256: e5661a405acc14bd4941c576daebc3959b6f94f0cfd22b66f2a3f3198a3ec609 - optional: false - category: main build: flang_3 arch: x86_64 subdir: win-64 @@ -865,18 +827,17 @@ package: features: flang license: NCSA size: 198174317 -- name: clangxx +- platform: osx-64 + name: clangxx version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - clang: ==15.0.7 h694c41f_3 + - clang ==15.0.7 h694c41f_3 url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-15.0.7-default_hdb78580_3.conda hash: md5: 58df9ff86fefc7684670be729b41412f sha256: b68fbe1f7c401401622b61f9e65be6fffae4104727c2f39feacede5c393fa65e - optional: false - category: main build: default_hdb78580_3 arch: x86_64 subdir: osx-64 @@ -885,18 +846,17 @@ package: license_family: Apache size: 132973 timestamp: 1690549872764 -- name: clangxx +- platform: osx-arm64 + name: clangxx version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - clang: ==15.0.7 hce30654_3 + - clang ==15.0.7 hce30654_3 url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-15.0.7-default_h610c423_3.conda hash: md5: 1919a441b26f5cd1181870be6b4ce31a sha256: 59e1545bac0207bb8b82c3718a16ec79dd9ac218eb00679f8cb5ed2cd115ffe3 - optional: false - category: main build: default_h610c423_3 arch: aarch64 subdir: osx-arm64 @@ -905,21 +865,20 @@ package: license_family: Apache size: 133212 timestamp: 1690549817560 -- name: clangxx_osx-64 +- platform: osx-64 + name: clangxx_osx-64 version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - clang_osx-64: ==15.0.7 h03d6864_3 - clangxx: 15.0.7.* - libcxx: '>=15.0.7' - libllvm15: '>=15.0.7,<15.1.0a0' + - clang_osx-64 ==15.0.7 h03d6864_3 + - clangxx 15.0.7.* + - libcxx >=15.0.7 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-15.0.7-h2133e9c_3.conda hash: md5: 2ff16b86a981da4b1a2658423db664bb sha256: 04900d8758347c81d8f3904ba513fced2cb86af258d6ce70f8377e2515c9ec51 - optional: false - category: main build: h2133e9c_3 arch: x86_64 subdir: osx-64 @@ -928,21 +887,20 @@ package: license_family: BSD size: 19427 timestamp: 1684463207952 -- name: clangxx_osx-arm64 +- platform: osx-arm64 + name: clangxx_osx-arm64 version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - clang_osx-arm64: ==15.0.7 h77e971b_3 - clangxx: 15.0.7.* - libcxx: '>=15.0.7' - libllvm15: '>=15.0.7,<15.1.0a0' + - clang_osx-arm64 ==15.0.7 h77e971b_3 + - clangxx 15.0.7.* + - libcxx >=15.0.7 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-15.0.7-h768a7fd_3.conda hash: md5: 16e11574eeb3cfa3da194692da449aeb sha256: 83c774c3dd206f4772a4a0abd10d21ad4aa9aa472fc9e2af16bf0b9a07476684 - optional: false - category: main build: h768a7fd_3 arch: aarch64 subdir: osx-arm64 @@ -951,28 +909,27 @@ package: license_family: BSD size: 19504 timestamp: 1684463181478 -- name: cmake +- platform: linux-64 + name: cmake version: 3.27.6 + category: main manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.3.0,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libuv: '>=1.46.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - rhash: '>=1.4.4,<2.0a0' - xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.3.0,<9.0a0 + - libexpat >=2.5.0,<3.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libuv >=1.46.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - rhash >=1.4.4,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.27.6-hcfe8598_0.conda hash: md5: 4c0101485c452ea86f846523c4fae698 sha256: 64e08c246195d6956f7a04fa7d96a53de696b26b1dae8b08cfe716950f696e12 - optional: false - category: main build: hcfe8598_0 arch: x86_64 subdir: linux-64 @@ -981,27 +938,26 @@ package: license_family: BSD size: 18494905 timestamp: 1695269729661 -- name: cmake +- platform: osx-64 + name: cmake version: 3.27.6 + category: main manager: conda - platform: osx-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.3.0,<9.0a0' - libcxx: '>=15.0.7' - libexpat: '>=2.5.0,<3.0a0' - libuv: '>=1.46.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - rhash: '>=1.4.4,<2.0a0' - xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.3.0,<9.0a0 + - libcxx >=15.0.7 + - libexpat >=2.5.0,<3.0a0 + - libuv >=1.46.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - rhash >=1.4.4,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.27.6-hf40c264_0.conda hash: md5: 771da6a52aaf0f9d84114d0ed0d0299f sha256: 9216698f88b82e99db950f8c372038931c54ea3e0b0b05e2a3ce03ec4b405df7 - optional: false - category: main build: hf40c264_0 arch: x86_64 subdir: osx-64 @@ -1010,27 +966,26 @@ package: license_family: BSD size: 16525734 timestamp: 1695270838345 -- name: cmake +- platform: osx-arm64 + name: cmake version: 3.27.6 + category: main manager: conda - platform: osx-arm64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.3.0,<9.0a0' - libcxx: '>=15.0.7' - libexpat: '>=2.5.0,<3.0a0' - libuv: '>=1.46.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - rhash: '>=1.4.4,<2.0a0' - xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.3.0,<9.0a0 + - libcxx >=15.0.7 + - libexpat >=2.5.0,<3.0a0 + - libuv >=1.46.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - rhash >=1.4.4,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.27.6-h1c59155_0.conda hash: md5: 3c0dd04401438fec44cd113247ba2852 sha256: 31be31e358e6f6f8818d8f9c9086da4404f8c6fc89d71d55887bed11ce6d463e - optional: false - category: main build: h1c59155_0 arch: aarch64 subdir: osx-arm64 @@ -1039,26 +994,25 @@ package: license_family: BSD size: 16007289 timestamp: 1695270816826 -- name: cmake +- platform: win-64 + name: cmake version: 3.27.6 + category: main manager: conda - platform: win-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.3.0,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' - libuv: '>=1.44.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ucrt: '>=10.0.20348.0' - vc14_runtime: '>=14.29.30139' - xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.3.0,<9.0a0 + - libexpat >=2.5.0,<3.0a0 + - libuv >=1.44.2,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc14_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/win-64/cmake-3.27.6-hf0feee3_0.conda hash: md5: 4dc81f3bf26f0949fedd4e31cecea1d1 sha256: 12b94bce6d7c76ff408f8ea240c7d78987b0bc3cb4f632f381c4b0efd30ebfe0 - optional: false - category: main build: hf0feee3_0 arch: x86_64 subdir: win-64 @@ -1067,18 +1021,17 @@ package: license_family: BSD size: 13777396 timestamp: 1695270971791 -- name: colorama +- platform: linux-64 + name: colorama version: 0.4.6 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 hash: md5: 3faab06a954c2a04039983f2c4a50d99 sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -1088,18 +1041,17 @@ package: noarch: python size: 25170 timestamp: 1666700778190 -- name: colorama +- platform: osx-64 + name: colorama version: 0.4.6 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 hash: md5: 3faab06a954c2a04039983f2c4a50d99 sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -1109,18 +1061,17 @@ package: noarch: python size: 25170 timestamp: 1666700778190 -- name: colorama +- platform: osx-arm64 + name: colorama version: 0.4.6 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 hash: md5: 3faab06a954c2a04039983f2c4a50d99 sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -1130,18 +1081,17 @@ package: noarch: python size: 25170 timestamp: 1666700778190 -- name: colorama +- platform: win-64 + name: colorama version: 0.4.6 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 hash: md5: 3faab06a954c2a04039983f2c4a50d99 sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -1151,20 +1101,19 @@ package: noarch: python size: 25170 timestamp: 1666700778190 -- name: compiler-rt +- platform: osx-64 + name: compiler-rt version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - clang: 15.0.7.* - clangxx: 15.0.7.* - compiler-rt_osx-64: 15.0.7.* + - clang 15.0.7.* + - clangxx 15.0.7.* + - compiler-rt_osx-64 15.0.7.* url: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-15.0.7-he1888fc_1.conda hash: md5: 8ec296a4b097aeb2d85eafaf745c770a sha256: 90a2dd7a9baf8d6ddde9d11ad682dbd74f74c1f40ce0e4e9df7c356b0275ca31 - optional: false - category: main build: he1888fc_1 arch: x86_64 subdir: osx-64 @@ -1173,20 +1122,19 @@ package: license_family: APACHE size: 92129 timestamp: 1684403261646 -- name: compiler-rt +- platform: osx-arm64 + name: compiler-rt version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - clang: 15.0.7.* - clangxx: 15.0.7.* - compiler-rt_osx-arm64: 15.0.7.* + - clang 15.0.7.* + - clangxx 15.0.7.* + - compiler-rt_osx-arm64 15.0.7.* url: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-15.0.7-hf8d1dfb_1.conda hash: md5: 355703f3e33fd12037800d28680845cb sha256: d2ab8bc610038e40dafdb6b6172343553f1f3aba4e9a4c540e878474062b1b89 - optional: false - category: main build: hf8d1dfb_1 arch: aarch64 subdir: osx-arm64 @@ -1195,19 +1143,18 @@ package: license_family: APACHE size: 92034 timestamp: 1684403020973 -- name: compiler-rt_osx-64 +- platform: osx-64 + name: compiler-rt_osx-64 version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - clang: 15.0.7.* - clangxx: 15.0.7.* + - clang 15.0.7.* + - clangxx 15.0.7.* url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-15.0.7-he1888fc_1.conda hash: md5: e1f93ea86259a549f2dcbfd245bf0422 sha256: a2c19b4ec885e668266f5dd0e90193d9436c0be63c370c91ae1b840a19071159 - optional: false - category: main build: he1888fc_1 arch: x86_64 subdir: osx-64 @@ -1219,19 +1166,18 @@ package: noarch: generic size: 11208907 timestamp: 1684403213219 -- name: compiler-rt_osx-arm64 +- platform: osx-arm64 + name: compiler-rt_osx-arm64 version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - clang: 15.0.7.* - clangxx: 15.0.7.* + - clang 15.0.7.* + - clangxx 15.0.7.* url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-15.0.7-hf8d1dfb_1.conda hash: md5: 0722cbdc69a52c82acc4e265913a21cd sha256: 5a801e344b2a18983199190cb34ad798e3ce5966a4a4031c74f7e395d8c38802 - optional: false - category: main build: hf8d1dfb_1 arch: aarch64 subdir: osx-arm64 @@ -1243,20 +1189,19 @@ package: noarch: generic size: 11283089 timestamp: 1684402974671 -- name: compilers +- platform: linux-64 + name: compilers version: 1.6.0 + category: main manager: conda - platform: linux-64 dependencies: - c-compiler: ==1.6.0 hd590300_0 - cxx-compiler: ==1.6.0 h00ab1b0_0 - fortran-compiler: ==1.6.0 heb67821_0 + - c-compiler ==1.6.0 hd590300_0 + - cxx-compiler ==1.6.0 h00ab1b0_0 + - fortran-compiler ==1.6.0 heb67821_0 url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.6.0-ha770c72_0.conda hash: md5: e2259de4640a51a28c21931ae98e4975 sha256: 05bce88c6f89327746ffcf53801994bce3eca758875e3c542594e12c09cb6db9 - optional: false - category: main build: ha770c72_0 arch: x86_64 subdir: linux-64 @@ -1265,20 +1210,19 @@ package: license_family: BSD size: 6983 timestamp: 1689097491629 -- name: compilers +- platform: osx-64 + name: compilers version: 1.6.0 + category: main manager: conda - platform: osx-64 dependencies: - c-compiler: ==1.6.0 h63c33a9_0 - cxx-compiler: ==1.6.0 h1c7c39f_0 - fortran-compiler: ==1.6.0 h932d759_0 + - c-compiler ==1.6.0 h63c33a9_0 + - cxx-compiler ==1.6.0 h1c7c39f_0 + - fortran-compiler ==1.6.0 h932d759_0 url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.6.0-h694c41f_0.conda hash: md5: d4c66ca84aa87a6c63f4c8a6498052d9 sha256: 6974c4b9a90e596f93af265fd5f01bb057cf5acb13c66f7c3d231998dde2a9bb - optional: false - category: main build: h694c41f_0 arch: x86_64 subdir: osx-64 @@ -1287,20 +1231,19 @@ package: license_family: BSD size: 7104 timestamp: 1689097861954 -- name: compilers +- platform: osx-arm64 + name: compilers version: 1.6.0 + category: main manager: conda - platform: osx-arm64 dependencies: - c-compiler: ==1.6.0 hd291e01_0 - cxx-compiler: ==1.6.0 h1995070_0 - fortran-compiler: ==1.6.0 h5a50232_0 + - c-compiler ==1.6.0 hd291e01_0 + - cxx-compiler ==1.6.0 h1995070_0 + - fortran-compiler ==1.6.0 h5a50232_0 url: https://conda.anaconda.org/conda-forge/osx-arm64/compilers-1.6.0-hce30654_0.conda hash: md5: 63282d3d857557088735f66775f44083 sha256: 458c434679254a6dd3cc12c1a3de5ddb05da18aa413c403cb3f4997c9b1d6f6d - optional: false - category: main build: hce30654_0 arch: aarch64 subdir: osx-arm64 @@ -1309,20 +1252,19 @@ package: license_family: BSD size: 7127 timestamp: 1689097909496 -- name: compilers +- platform: win-64 + name: compilers version: 1.6.0 + category: main manager: conda - platform: win-64 dependencies: - c-compiler: ==1.6.0 hcfcfb64_0 - cxx-compiler: ==1.6.0 h91493d7_0 - fortran-compiler: ==1.6.0 h9655429_0 + - c-compiler ==1.6.0 hcfcfb64_0 + - cxx-compiler ==1.6.0 h91493d7_0 + - fortran-compiler ==1.6.0 h9655429_0 url: https://conda.anaconda.org/conda-forge/win-64/compilers-1.6.0-h57928b3_0.conda hash: md5: facaaa8d95a05c2dd3ca06eb3dca3c2c sha256: 925898d204b2cb0c43e7001ac956e2c34154e7d5eba03aa2356701600cd44245 - optional: false - category: main build: h57928b3_0 arch: x86_64 subdir: win-64 @@ -1331,20 +1273,19 @@ package: license_family: BSD size: 7396 timestamp: 1689097773566 -- name: conda-package-handling +- platform: linux-64 + name: conda-package-handling version: 2.2.0 + category: main manager: conda - platform: linux-64 dependencies: - conda-package-streaming: '>=0.9.0' - python: '>=3.7' - zstandard: '>=0.15' + - conda-package-streaming >=0.9.0 + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda hash: md5: 8a3ae7f6318376aa08ea753367bb7dd6 sha256: 9a221808405d813d8c555efce6944379b907d36d79e77d526d573efa6b996d26 - optional: false - category: main build: pyh38be061_0 arch: x86_64 subdir: linux-64 @@ -1354,20 +1295,19 @@ package: noarch: python size: 255143 timestamp: 1691048232276 -- name: conda-package-handling +- platform: osx-64 + name: conda-package-handling version: 2.2.0 + category: main manager: conda - platform: osx-64 dependencies: - conda-package-streaming: '>=0.9.0' - python: '>=3.7' - zstandard: '>=0.15' + - conda-package-streaming >=0.9.0 + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda hash: md5: 8a3ae7f6318376aa08ea753367bb7dd6 sha256: 9a221808405d813d8c555efce6944379b907d36d79e77d526d573efa6b996d26 - optional: false - category: main build: pyh38be061_0 arch: x86_64 subdir: osx-64 @@ -1377,20 +1317,19 @@ package: noarch: python size: 255143 timestamp: 1691048232276 -- name: conda-package-handling +- platform: osx-arm64 + name: conda-package-handling version: 2.2.0 + category: main manager: conda - platform: osx-arm64 dependencies: - conda-package-streaming: '>=0.9.0' - python: '>=3.7' - zstandard: '>=0.15' + - conda-package-streaming >=0.9.0 + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda hash: md5: 8a3ae7f6318376aa08ea753367bb7dd6 sha256: 9a221808405d813d8c555efce6944379b907d36d79e77d526d573efa6b996d26 - optional: false - category: main build: pyh38be061_0 arch: aarch64 subdir: osx-arm64 @@ -1400,20 +1339,19 @@ package: noarch: python size: 255143 timestamp: 1691048232276 -- name: conda-package-handling +- platform: win-64 + name: conda-package-handling version: 2.2.0 + category: main manager: conda - platform: win-64 dependencies: - conda-package-streaming: '>=0.9.0' - python: '>=3.7' - zstandard: '>=0.15' + - conda-package-streaming >=0.9.0 + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.2.0-pyh38be061_0.conda hash: md5: 8a3ae7f6318376aa08ea753367bb7dd6 sha256: 9a221808405d813d8c555efce6944379b907d36d79e77d526d573efa6b996d26 - optional: false - category: main build: pyh38be061_0 arch: x86_64 subdir: win-64 @@ -1423,19 +1361,18 @@ package: noarch: python size: 255143 timestamp: 1691048232276 -- name: conda-package-streaming +- platform: linux-64 + name: conda-package-streaming version: 0.9.0 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' - zstandard: '>=0.15' + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda hash: md5: 38253361efb303deead3eab39ae9269b sha256: 654a2488f77bf43555787d952dbffdc5d97956ff4aa9e0414a7131bb741dcf4c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -1445,19 +1382,18 @@ package: noarch: python size: 19183 timestamp: 1691009348105 -- name: conda-package-streaming +- platform: osx-64 + name: conda-package-streaming version: 0.9.0 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' - zstandard: '>=0.15' + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda hash: md5: 38253361efb303deead3eab39ae9269b sha256: 654a2488f77bf43555787d952dbffdc5d97956ff4aa9e0414a7131bb741dcf4c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -1467,19 +1403,18 @@ package: noarch: python size: 19183 timestamp: 1691009348105 -- name: conda-package-streaming +- platform: osx-arm64 + name: conda-package-streaming version: 0.9.0 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' - zstandard: '>=0.15' + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda hash: md5: 38253361efb303deead3eab39ae9269b sha256: 654a2488f77bf43555787d952dbffdc5d97956ff4aa9e0414a7131bb741dcf4c - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -1489,19 +1424,18 @@ package: noarch: python size: 19183 timestamp: 1691009348105 -- name: conda-package-streaming +- platform: win-64 + name: conda-package-streaming version: 0.9.0 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' - zstandard: '>=0.15' + - python >=3.7 + - zstandard >=0.15 url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.9.0-pyhd8ed1ab_0.conda hash: md5: 38253361efb303deead3eab39ae9269b sha256: 654a2488f77bf43555787d952dbffdc5d97956ff4aa9e0414a7131bb741dcf4c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -1511,20 +1445,19 @@ package: noarch: python size: 19183 timestamp: 1691009348105 -- name: cxx-compiler +- platform: linux-64 + name: cxx-compiler version: 1.6.0 + category: main manager: conda - platform: linux-64 dependencies: - c-compiler: ==1.6.0 hd590300_0 - gxx: '*' - gxx_linux-64: 12.* + - c-compiler ==1.6.0 hd590300_0 + - gxx * + - gxx_linux-64 12.* url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.6.0-h00ab1b0_0.conda hash: md5: 364c6ae36c4e36fcbd4d273cf4db78af sha256: 472b6b7f967df1db634c67d71c6b31cd186d18b5d0548196c2e426833ff17d99 - optional: false - category: main build: h00ab1b0_0 arch: x86_64 subdir: linux-64 @@ -1532,19 +1465,18 @@ package: license: BSD size: 6179 timestamp: 1689097484095 -- name: cxx-compiler +- platform: osx-64 + name: cxx-compiler version: 1.6.0 + category: main manager: conda - platform: osx-64 dependencies: - c-compiler: ==1.6.0 h63c33a9_0 - clangxx_osx-64: 15.* + - c-compiler ==1.6.0 h63c33a9_0 + - clangxx_osx-64 15.* url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.6.0-h1c7c39f_0.conda hash: md5: 9adaf7c9d4e1e15e70a8dd46befbbab2 sha256: dc0860c05ef3083192b8ff4ac8242403f05a550cc42c7709ec8c9f4eaa88e993 - optional: false - category: main build: h1c7c39f_0 arch: x86_64 subdir: osx-64 @@ -1552,19 +1484,18 @@ package: license: BSD size: 6258 timestamp: 1689097854160 -- name: cxx-compiler +- platform: osx-arm64 + name: cxx-compiler version: 1.6.0 + category: main manager: conda - platform: osx-arm64 dependencies: - c-compiler: ==1.6.0 hd291e01_0 - clangxx_osx-arm64: 15.* + - c-compiler ==1.6.0 hd291e01_0 + - clangxx_osx-arm64 15.* url: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.6.0-h1995070_0.conda hash: md5: 35c1be0a08578238276ca9417fc1615c sha256: f0a94c6312d0fd9e3d3c3546894bafa9f9b8b20a411bee0767ad4dac916f3eb5 - optional: false - category: main build: h1995070_0 arch: aarch64 subdir: osx-arm64 @@ -1572,18 +1503,17 @@ package: license: BSD size: 6301 timestamp: 1689097905706 -- name: cxx-compiler +- platform: win-64 + name: cxx-compiler version: 1.6.0 + category: main manager: conda - platform: win-64 dependencies: - vs2019_win-64: '*' + - vs2019_win-64 * url: https://conda.anaconda.org/conda-forge/win-64/cxx-compiler-1.6.0-h91493d7_0.conda hash: md5: b1219f0b49bd243c7139cb9c42c4710c sha256: 625af0fe202d3df70ba29bb6c80f3e45887b571a87dfd5bff94fa75577e2c417 - optional: false - category: main build: h91493d7_0 arch: x86_64 subdir: win-64 @@ -1591,18 +1521,17 @@ package: license: BSD size: 6421 timestamp: 1689097764951 -- name: distlib +- platform: linux-64 + name: distlib version: 0.3.7 + category: main manager: conda - platform: linux-64 dependencies: - python: ==2.7|>=3.6 + - python ==2.7|>=3.6 url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda hash: md5: 12d8aae6994f342618443a8f05c652a0 sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -1612,18 +1541,17 @@ package: noarch: python size: 273692 timestamp: 1689598624555 -- name: distlib +- platform: osx-64 + name: distlib version: 0.3.7 + category: main manager: conda - platform: osx-64 dependencies: - python: ==2.7|>=3.6 + - python ==2.7|>=3.6 url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda hash: md5: 12d8aae6994f342618443a8f05c652a0 sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -1633,18 +1561,17 @@ package: noarch: python size: 273692 timestamp: 1689598624555 -- name: distlib +- platform: osx-arm64 + name: distlib version: 0.3.7 + category: main manager: conda - platform: osx-arm64 dependencies: - python: ==2.7|>=3.6 + - python ==2.7|>=3.6 url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda hash: md5: 12d8aae6994f342618443a8f05c652a0 sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -1654,18 +1581,17 @@ package: noarch: python size: 273692 timestamp: 1689598624555 -- name: distlib +- platform: win-64 + name: distlib version: 0.3.7 + category: main manager: conda - platform: win-64 dependencies: - python: ==2.7|>=3.6 + - python ==2.7|>=3.6 url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda hash: md5: 12d8aae6994f342618443a8f05c652a0 sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -1675,18 +1601,17 @@ package: noarch: python size: 273692 timestamp: 1689598624555 -- name: exceptiongroup +- platform: linux-64 + name: exceptiongroup version: 1.1.3 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda hash: md5: e6518222753f519e911e83136d2158d9 sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -1696,18 +1621,17 @@ package: noarch: python size: 19262 timestamp: 1692026296517 -- name: exceptiongroup +- platform: osx-64 + name: exceptiongroup version: 1.1.3 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda hash: md5: e6518222753f519e911e83136d2158d9 sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -1717,18 +1641,17 @@ package: noarch: python size: 19262 timestamp: 1692026296517 -- name: exceptiongroup +- platform: osx-arm64 + name: exceptiongroup version: 1.1.3 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda hash: md5: e6518222753f519e911e83136d2158d9 sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -1738,18 +1661,17 @@ package: noarch: python size: 19262 timestamp: 1692026296517 -- name: exceptiongroup +- platform: win-64 + name: exceptiongroup version: 1.1.3 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda hash: md5: e6518222753f519e911e83136d2158d9 sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -1759,18 +1681,17 @@ package: noarch: python size: 19262 timestamp: 1692026296517 -- name: filelock +- platform: linux-64 + name: filelock version: 3.12.4 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda hash: md5: 5173d4b8267a0699a43d73231e0b6596 sha256: 7463c64364c14b34a7a69a7550a880ccd1ec6d3014001e55913e6e4e8b0c7395 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -1779,18 +1700,17 @@ package: noarch: python size: 15153 timestamp: 1694629394497 -- name: filelock +- platform: osx-64 + name: filelock version: 3.12.4 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda hash: md5: 5173d4b8267a0699a43d73231e0b6596 sha256: 7463c64364c14b34a7a69a7550a880ccd1ec6d3014001e55913e6e4e8b0c7395 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -1799,18 +1719,17 @@ package: noarch: python size: 15153 timestamp: 1694629394497 -- name: filelock +- platform: osx-arm64 + name: filelock version: 3.12.4 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda hash: md5: 5173d4b8267a0699a43d73231e0b6596 sha256: 7463c64364c14b34a7a69a7550a880ccd1ec6d3014001e55913e6e4e8b0c7395 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -1819,18 +1738,17 @@ package: noarch: python size: 15153 timestamp: 1694629394497 -- name: filelock +- platform: win-64 + name: filelock version: 3.12.4 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda hash: md5: 5173d4b8267a0699a43d73231e0b6596 sha256: 7463c64364c14b34a7a69a7550a880ccd1ec6d3014001e55913e6e4e8b0c7395 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -1839,66 +1757,61 @@ package: noarch: python size: 15153 timestamp: 1694629394497 -- name: flang +- platform: win-64 + name: flang version: 5.0.0 + category: main manager: conda - platform: win-64 dependencies: - clangdev: '* flang*' - libflang: ==5.0.0 h6538335_20180525 - openmp: ==5.0.0 - vc: '>=14,<15.0a0' + - clangdev * flang* + - libflang ==5.0.0 h6538335_20180525 + - openmp ==5.0.0 + - vc >=14,<15.0a0 url: https://conda.anaconda.org/conda-forge/win-64/flang-5.0.0-he025d50_20180525.tar.bz2 hash: md5: 6a25fea497e9da30b0aa386db4722fc2 sha256: 7094bc2242e52aea89b8c83e54770028b0668b12e063b405c3423fbfb94f6fa2 - optional: false - category: main build: he025d50_20180525 arch: x86_64 subdir: win-64 build_number: 20180525 - track_features: - - flang + track_features: flang license: Apache 2.0 size: 2777448 timestamp: 1527899241687 -- name: flang_win-64 +- platform: win-64 + name: flang_win-64 version: 5.0.0 + category: main manager: conda - platform: win-64 dependencies: - flang: 5.0.0.* + - flang 5.0.0.* url: https://conda.anaconda.org/conda-forge/win-64/flang_win-64-5.0.0-h13ae965_20180526.tar.bz2 hash: md5: 311b7fe1652dab00ff1086865e965764 sha256: 7d006dbff4b97a598b7909c8c00e6f6c770f720ba60e2745137aad2183cbb8a8 - optional: false - category: main build: h13ae965_20180526 arch: x86_64 subdir: win-64 build_number: 20180526 - track_features: - - flang + track_features: flang license: Apache 2.0 size: 4799 timestamp: 1611788765006 -- name: fortran-compiler +- platform: linux-64 + name: fortran-compiler version: 1.6.0 + category: main manager: conda - platform: linux-64 dependencies: - binutils: '*' - c-compiler: ==1.6.0 hd590300_0 - gfortran: '*' - gfortran_linux-64: 12.* + - binutils * + - c-compiler ==1.6.0 hd590300_0 + - gfortran * + - gfortran_linux-64 12.* url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.6.0-heb67821_0.conda hash: md5: b65c49dda97ae497abcbdf3a8ba0018f sha256: 6b7be32c77fc70740c9f6ff7fd3a99af2d333255072f1044757fbf0641769bd5 - optional: false - category: main build: heb67821_0 arch: x86_64 subdir: linux-64 @@ -1906,22 +1819,21 @@ package: license: BSD size: 6192 timestamp: 1689097488167 -- name: fortran-compiler +- platform: osx-64 + name: fortran-compiler version: 1.6.0 + category: main manager: conda - platform: osx-64 dependencies: - cctools: '>=949.0.1' - gfortran: '*' - gfortran_osx-64: 12.* - ld64: '>=530' - llvm-openmp: '*' + - cctools >=949.0.1 + - gfortran * + - gfortran_osx-64 12.* + - ld64 >=530 + - llvm-openmp * url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.6.0-h932d759_0.conda hash: md5: d2bc049eae716dd6879079ddd209ffc3 sha256: 7f06cc52100448d728e2d22ec048972d3fc6e502939cb05d08517a116003e7ed - optional: false - category: main build: h932d759_0 arch: x86_64 subdir: osx-64 @@ -1929,22 +1841,21 @@ package: license: BSD size: 6274 timestamp: 1689097845528 -- name: fortran-compiler +- platform: osx-arm64 + name: fortran-compiler version: 1.6.0 + category: main manager: conda - platform: osx-arm64 dependencies: - cctools: '>=949.0.1' - gfortran: '*' - gfortran_osx-arm64: 12.* - ld64: '>=530' - llvm-openmp: '*' + - cctools >=949.0.1 + - gfortran * + - gfortran_osx-arm64 12.* + - ld64 >=530 + - llvm-openmp * url: https://conda.anaconda.org/conda-forge/osx-arm64/fortran-compiler-1.6.0-h5a50232_0.conda hash: md5: acf45cbd8bb968abe2e1476536d565c9 sha256: 05803f2bf726adb85b4ad4b6acbd68e3710f8f09936be10b17bb72ded0fff318 - optional: false - category: main build: h5a50232_0 arch: aarch64 subdir: osx-arm64 @@ -1952,18 +1863,17 @@ package: license: BSD size: 6334 timestamp: 1689097892948 -- name: fortran-compiler +- platform: win-64 + name: fortran-compiler version: 1.6.0 + category: main manager: conda - platform: win-64 dependencies: - flang_win-64: 5.* + - flang_win-64 5.* url: https://conda.anaconda.org/conda-forge/win-64/fortran-compiler-1.6.0-h9655429_0.conda hash: md5: a6a7c4a0852e2eaf6960b784da4b290b sha256: 57cf596104ba80fe6d21303de2b5c11dc4a93d465f9025db47d38684921df0da - optional: false - category: main build: h9655429_0 arch: x86_64 subdir: win-64 @@ -1971,18 +1881,17 @@ package: license: BSD size: 6450 timestamp: 1689097769579 -- name: gcc +- platform: linux-64 + name: gcc version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - gcc_impl_linux-64: 12.3.0.* + - gcc_impl_linux-64 12.3.0.* url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h8d2909c_2.conda hash: md5: e2f2f81f367e14ca1f77a870bda2fe59 sha256: 1bbf077688822993c39518056fb43d83ff0920eb42fef11e8714d2a298cc0f27 - optional: false - category: main build: h8d2909c_2 arch: x86_64 subdir: linux-64 @@ -1991,24 +1900,23 @@ package: license_family: BSD size: 27086 timestamp: 1694604171830 -- name: gcc_impl_linux-64 +- platform: linux-64 + name: gcc_impl_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - binutils_impl_linux-64: '>=2.39' - libgcc-devel_linux-64: ==12.3.0 h8bca6fd_2 - libgcc-ng: '>=12.3.0' - libgomp: '>=12.3.0' - libsanitizer: ==12.3.0 h0f45ef3_2 - libstdcxx-ng: '>=12.3.0' - sysroot_linux-64: '*' + - binutils_impl_linux-64 >=2.39 + - libgcc-devel_linux-64 ==12.3.0 h8bca6fd_2 + - libgcc-ng >=12.3.0 + - libgomp >=12.3.0 + - libsanitizer ==12.3.0 h0f45ef3_2 + - libstdcxx-ng >=12.3.0 + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_2.conda hash: md5: 2f4d8677dc7dd87f93e9abfb2ce86808 sha256: 62a897343229e6dc4a3ace4f419a30e60a0a22ce7d0eac0b9bfb8f0308cf3de5 - optional: false - category: main build: he2b93b0_2 arch: x86_64 subdir: linux-64 @@ -2017,20 +1925,19 @@ package: license_family: GPL size: 51573870 timestamp: 1695218760476 -- name: gcc_linux-64 +- platform: linux-64 + name: gcc_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - binutils_linux-64: ==2.40 hbdbef99_2 - gcc_impl_linux-64: 12.3.0.* - sysroot_linux-64: '*' + - binutils_linux-64 ==2.40 hbdbef99_2 + - gcc_impl_linux-64 12.3.0.* + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h76fc315_2.conda hash: md5: 11517e7b5c910c5b5d6985c0c7eb7f50 sha256: 86f6db7399ec0362e4c4025939debbfebc8ad9ccef75e3c0e4069f85b149f24d - optional: false - category: main build: h76fc315_2 arch: x86_64 subdir: linux-64 @@ -2039,18 +1946,17 @@ package: license_family: BSD size: 30351 timestamp: 1694604476800 -- name: gettext +- platform: osx-arm64 + name: gettext version: 0.21.1 + category: main manager: conda - platform: osx-arm64 dependencies: - libiconv: '>=1.17,<2.0a0' + - libiconv >=1.17,<2.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 hash: md5: 63d2ff6fddfa74e5458488fd311bf635 sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e - optional: false - category: main build: h0186832_0 arch: aarch64 subdir: osx-arm64 @@ -2058,18 +1964,17 @@ package: license: LGPL-2.1-or-later AND GPL-3.0-or-later size: 4021036 timestamp: 1665674192347 -- name: gettext +- platform: win-64 + name: gettext version: 0.21.1 + category: main manager: conda - platform: win-64 dependencies: - libiconv: '>=1.17,<2.0a0' + - libiconv >=1.17,<2.0a0 url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 hash: md5: 299d4fd6798a45337042ff5a48219e5f sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 - optional: false - category: main build: h5728263_0 arch: x86_64 subdir: win-64 @@ -2077,20 +1982,19 @@ package: license: LGPL-2.1-or-later AND GPL-3.0-or-later size: 5579416 timestamp: 1665676022441 -- name: gfortran +- platform: linux-64 + name: gfortran version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - gcc: 12.3.0.* - gcc_impl_linux-64: 12.3.0.* - gfortran_impl_linux-64: 12.3.0.* + - gcc 12.3.0.* + - gcc_impl_linux-64 12.3.0.* + - gfortran_impl_linux-64 12.3.0.* url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h499e0f7_2.conda hash: md5: 0558a8c44eb7a18e6682bd3a8ae6dcab sha256: 5cc7101ce3f44517b1416e1da6e64f107db8a0e8a31d552d3f6ecd4096c2c5ba - optional: false - category: main build: h499e0f7_2 arch: x86_64 subdir: linux-64 @@ -2099,20 +2003,19 @@ package: license_family: BSD size: 26559 timestamp: 1694604486300 -- name: gfortran +- platform: osx-64 + name: gfortran version: 12.3.0 + category: main manager: conda - platform: osx-64 dependencies: - cctools: '*' - gfortran_osx-64: ==12.3.0 - ld64: '*' + - cctools * + - gfortran_osx-64 ==12.3.0 + - ld64 * url: https://conda.anaconda.org/conda-forge/osx-64/gfortran-12.3.0-h2c809b3_1.conda hash: md5: c48adbaa8944234b80ef287c37e329b0 sha256: e3f99a1f5c88949413b949a1668fff74276f4d434c5fd0d7cb92ff504c6c2189 - optional: false - category: main build: h2c809b3_1 arch: x86_64 subdir: osx-64 @@ -2121,20 +2024,19 @@ package: license_family: GPL size: 31910 timestamp: 1692106711872 -- name: gfortran +- platform: osx-arm64 + name: gfortran version: 12.3.0 + category: main manager: conda - platform: osx-arm64 dependencies: - cctools: '*' - gfortran_osx-arm64: ==12.3.0 - ld64: '*' + - cctools * + - gfortran_osx-arm64 ==12.3.0 + - ld64 * url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran-12.3.0-h1ca8e4b_1.conda hash: md5: 158beb35b98f5bd8e74ffe9f3af1cb29 sha256: 5944ff2f751f68e16882bb970be0a8c62a4f7cd7f3ca5ccec6fd237a4d9e3200 - optional: false - category: main build: h1ca8e4b_1 arch: aarch64 subdir: osx-arm64 @@ -2143,22 +2045,21 @@ package: license_family: GPL size: 31942 timestamp: 1692106730571 -- name: gfortran_impl_linux-64 +- platform: linux-64 + name: gfortran_impl_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - gcc_impl_linux-64: '>=12.3.0' - libgcc-ng: '>=4.9' - libgfortran5: '>=12.3.0' - libstdcxx-ng: '>=4.9' - sysroot_linux-64: '*' + - gcc_impl_linux-64 >=12.3.0 + - libgcc-ng >=4.9 + - libgfortran5 >=12.3.0 + - libstdcxx-ng >=4.9 + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_2.conda hash: md5: 09d48cadff6669068c3bf7ae7dc8ea4a sha256: 9078e20e88b14b89b4185b2ae61d40147b0006678c41dc3970f6f3e37df69a7e - optional: false - category: main build: hfcedea8_2 arch: x86_64 subdir: linux-64 @@ -2167,27 +2068,26 @@ package: license_family: GPL size: 15338850 timestamp: 1695218919922 -- name: gfortran_impl_osx-64 +- platform: osx-64 + name: gfortran_impl_osx-64 version: 12.3.0 + category: main manager: conda - platform: osx-64 - dependencies: - gmp: '>=6.2.1,<7.0a0' - isl: '>=0.25,<0.26.0a0' - libcxx: '>=15.0.7' - libgfortran-devel_osx-64: 12.3.0.* - libgfortran5: '>=12.3.0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - mpc: '>=1.3.1,<2.0a0' - mpfr: '>=4.2.0,<5.0a0' - zlib: '*' + dependencies: + - gmp >=6.2.1,<7.0a0 + - isl >=0.25,<0.26.0a0 + - libcxx >=15.0.7 + - libgfortran-devel_osx-64 12.3.0.* + - libgfortran5 >=12.3.0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - mpc >=1.3.1,<2.0a0 + - mpfr >=4.2.0,<5.0a0 + - zlib * url: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-12.3.0-h54fd467_1.conda hash: md5: 5f4d40236e204c6e62cd0a316244f316 sha256: fd0fe164d8e784fc23ac55511ed800c21970f4f1b1e52bc42be67c67734edc74 - optional: false - category: main build: h54fd467_1 arch: x86_64 subdir: osx-64 @@ -2196,27 +2096,26 @@ package: license_family: GPL size: 20576597 timestamp: 1690184449426 -- name: gfortran_impl_osx-arm64 +- platform: osx-arm64 + name: gfortran_impl_osx-arm64 version: 12.3.0 + category: main manager: conda - platform: osx-arm64 - dependencies: - gmp: '>=6.2.1,<7.0a0' - isl: '>=0.25,<0.26.0a0' - libcxx: '>=15.0.7' - libgfortran-devel_osx-arm64: 12.3.0.* - libgfortran5: '>=12.3.0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - mpc: '>=1.3.1,<2.0a0' - mpfr: '>=4.2.0,<5.0a0' - zlib: '*' + dependencies: + - gmp >=6.2.1,<7.0a0 + - isl >=0.25,<0.26.0a0 + - libcxx >=15.0.7 + - libgfortran-devel_osx-arm64 12.3.0.* + - libgfortran5 >=12.3.0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - mpc >=1.3.1,<2.0a0 + - mpfr >=4.2.0,<5.0a0 + - zlib * url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-12.3.0-hbbb9e1e_1.conda hash: md5: 21ac0fb1a74b1edd0b53d0508f418723 sha256: 1e748f5692932833bdd9daecb6caf735e36a8f76e597ceeea6069f6936261976 - optional: false - category: main build: hbbb9e1e_1 arch: aarch64 subdir: osx-arm64 @@ -2225,21 +2124,20 @@ package: license_family: GPL size: 17487856 timestamp: 1690186425928 -- name: gfortran_linux-64 +- platform: linux-64 + name: gfortran_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - binutils_linux-64: ==2.40 hbdbef99_2 - gcc_linux-64: ==12.3.0 h76fc315_2 - gfortran_impl_linux-64: 12.3.0.* - sysroot_linux-64: '*' + - binutils_linux-64 ==2.40 hbdbef99_2 + - gcc_linux-64 ==12.3.0 h76fc315_2 + - gfortran_impl_linux-64 12.3.0.* + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h7fe76b4_2.conda hash: md5: 3a749210487c0358b6f135a648cbbf60 sha256: ab6131d71bfa568b10f9e34e07ed5757625c7a2b6adca87c25db622f1dffe81b - optional: false - category: main build: h7fe76b4_2 arch: x86_64 subdir: linux-64 @@ -2248,25 +2146,24 @@ package: license_family: BSD size: 28785 timestamp: 1694604513817 -- name: gfortran_osx-64 +- platform: osx-64 + name: gfortran_osx-64 version: 12.3.0 + category: main manager: conda - platform: osx-64 dependencies: - cctools_osx-64: '*' - clang: '*' - clang_osx-64: '*' - gfortran_impl_osx-64: ==12.3.0 - ld64_osx-64: '*' - libgfortran: 5.* - libgfortran-devel_osx-64: ==12.3.0 - libgfortran5: '>=12.3.0' + - cctools_osx-64 * + - clang * + - clang_osx-64 * + - gfortran_impl_osx-64 ==12.3.0 + - ld64_osx-64 * + - libgfortran 5.* + - libgfortran-devel_osx-64 ==12.3.0 + - libgfortran5 >=12.3.0 url: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-12.3.0-h18f7dce_1.conda hash: md5: 436af2384c47aedb94af78a128e174f1 sha256: 527c03edaa1f1faec95476d5045c67c8b1a792dc2ce80cdd22f3db0f0b8a867d - optional: false - category: main build: h18f7dce_1 arch: x86_64 subdir: osx-64 @@ -2275,25 +2172,24 @@ package: license_family: GPL size: 34958 timestamp: 1692106693203 -- name: gfortran_osx-arm64 +- platform: osx-arm64 + name: gfortran_osx-arm64 version: 12.3.0 + category: main manager: conda - platform: osx-arm64 dependencies: - cctools_osx-arm64: '*' - clang: '*' - clang_osx-arm64: '*' - gfortran_impl_osx-arm64: ==12.3.0 - ld64_osx-arm64: '*' - libgfortran: 5.* - libgfortran-devel_osx-arm64: ==12.3.0 - libgfortran5: '>=12.3.0' + - cctools_osx-arm64 * + - clang * + - clang_osx-arm64 * + - gfortran_impl_osx-arm64 ==12.3.0 + - ld64_osx-arm64 * + - libgfortran 5.* + - libgfortran-devel_osx-arm64 ==12.3.0 + - libgfortran5 >=12.3.0 url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-12.3.0-h57527a5_1.conda hash: md5: 7d8ce258d478b7dbcc2728168a6959a1 sha256: 45b2b76f6db8f6e150239761d3ee2b64d94628c3bf65af0a09924bbfdb8d16e6 - optional: false - category: main build: h57527a5_1 arch: aarch64 subdir: osx-arm64 @@ -2302,18 +2198,17 @@ package: license_family: GPL size: 35073 timestamp: 1692106707604 -- name: gmp +- platform: osx-64 + name: gmp version: 6.2.1 + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '>=10.0.1' + - libcxx >=10.0.1 url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 hash: md5: dedc96914428dae572a39e69ee2a392f sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 - optional: false - category: main build: h2e338ed_0 arch: x86_64 subdir: osx-64 @@ -2321,18 +2216,17 @@ package: license: GPL-2.0-or-later AND LGPL-3.0-or-later size: 792127 timestamp: 1605751675650 -- name: gmp +- platform: osx-arm64 + name: gmp version: 6.2.1 + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '>=11.0.0' + - libcxx >=11.0.0 url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 hash: md5: f8140773b6ca51bf32feec9b4290a8c5 sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 - optional: false - category: main build: h9f76cd9_0 arch: aarch64 subdir: osx-arm64 @@ -2340,19 +2234,18 @@ package: license: GPL-2.0-or-later AND LGPL-3.0-or-later size: 570567 timestamp: 1605751606013 -- name: gxx +- platform: linux-64 + name: gxx version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - gcc: 12.3.0.* - gxx_impl_linux-64: 12.3.0.* + - gcc 12.3.0.* + - gxx_impl_linux-64 12.3.0.* url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h8d2909c_2.conda hash: md5: 673bac341be6b90ef9e8abae7e52ca46 sha256: 5fd65768fb602fd21466831c96e7a2355a4df692507abbd481aa65a777151d85 - optional: false - category: main build: h8d2909c_2 arch: x86_64 subdir: linux-64 @@ -2361,20 +2254,19 @@ package: license_family: BSD size: 26539 timestamp: 1694604501713 -- name: gxx_impl_linux-64 +- platform: linux-64 + name: gxx_impl_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - gcc_impl_linux-64: ==12.3.0 he2b93b0_2 - libstdcxx-devel_linux-64: ==12.3.0 h8bca6fd_2 - sysroot_linux-64: '*' + - gcc_impl_linux-64 ==12.3.0 he2b93b0_2 + - libstdcxx-devel_linux-64 ==12.3.0 h8bca6fd_2 + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_2.conda hash: md5: f89b9916afc36fc5562fbfc11330a8a2 sha256: 1ca91c1a3892b61da7efe150f9a1830e18aac82f563b27bf707520cb3297cc7a - optional: false - category: main build: he2b93b0_2 arch: x86_64 subdir: linux-64 @@ -2383,21 +2275,20 @@ package: license_family: GPL size: 12667490 timestamp: 1695218983245 -- name: gxx_linux-64 +- platform: linux-64 + name: gxx_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - binutils_linux-64: ==2.40 hbdbef99_2 - gcc_linux-64: ==12.3.0 h76fc315_2 - gxx_impl_linux-64: 12.3.0.* - sysroot_linux-64: '*' + - binutils_linux-64 ==2.40 hbdbef99_2 + - gcc_linux-64 ==12.3.0 h76fc315_2 + - gxx_impl_linux-64 12.3.0.* + - sysroot_linux-64 * url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h8a814eb_2.conda hash: md5: f517b1525e9783849bd56a5dc45a9960 sha256: 9878771cf1316230150a795d213a2f1dd7dead07dc0bccafae20533d631d5e69 - optional: false - category: main build: h8a814eb_2 arch: x86_64 subdir: linux-64 @@ -2406,17 +2297,16 @@ package: license_family: BSD size: 28640 timestamp: 1694604524890 -- name: icu +- platform: osx-64 + name: icu version: '73.2' + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda hash: md5: 5cc301d759ec03f28328428e28f65591 sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 - optional: false - category: main build: hf5e326d_0 arch: x86_64 subdir: osx-64 @@ -2425,17 +2315,16 @@ package: license_family: MIT size: 11787527 timestamp: 1692901622519 -- name: icu +- platform: osx-arm64 + name: icu version: '73.2' + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda hash: md5: 8521bd47c0e11c5902535bb1a17c565f sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1 - optional: false - category: main build: hc8870d7_0 arch: aarch64 subdir: osx-arm64 @@ -2444,19 +2333,18 @@ package: license_family: MIT size: 11997841 timestamp: 1692902104771 -- name: identify +- platform: linux-64 + name: identify version: 2.5.30 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.6' - ukkonen: '*' + - python >=3.6 + - ukkonen * url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda hash: md5: b7a2e3bb89bda8c69839485c20aabadf sha256: dc9901654af0556209bb5b4194ef2deb643bc641ac859a31f13c41b945b60150 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -2466,19 +2354,18 @@ package: noarch: python size: 78089 timestamp: 1696170905976 -- name: identify +- platform: osx-64 + name: identify version: 2.5.30 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.6' - ukkonen: '*' + - python >=3.6 + - ukkonen * url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda hash: md5: b7a2e3bb89bda8c69839485c20aabadf sha256: dc9901654af0556209bb5b4194ef2deb643bc641ac859a31f13c41b945b60150 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -2488,19 +2375,18 @@ package: noarch: python size: 78089 timestamp: 1696170905976 -- name: identify +- platform: osx-arm64 + name: identify version: 2.5.30 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.6' - ukkonen: '*' + - python >=3.6 + - ukkonen * url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda hash: md5: b7a2e3bb89bda8c69839485c20aabadf sha256: dc9901654af0556209bb5b4194ef2deb643bc641ac859a31f13c41b945b60150 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -2510,19 +2396,18 @@ package: noarch: python size: 78089 timestamp: 1696170905976 -- name: identify +- platform: win-64 + name: identify version: 2.5.30 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.6' - ukkonen: '*' + - python >=3.6 + - ukkonen * url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda hash: md5: b7a2e3bb89bda8c69839485c20aabadf sha256: dc9901654af0556209bb5b4194ef2deb643bc641ac859a31f13c41b945b60150 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -2532,18 +2417,17 @@ package: noarch: python size: 78089 timestamp: 1696170905976 -- name: iniconfig +- platform: linux-64 + name: iniconfig version: 2.0.0 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda hash: md5: f800d2da156d08e289b14e87e43c1ae5 sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -2553,18 +2437,17 @@ package: noarch: python size: 11101 timestamp: 1673103208955 -- name: iniconfig +- platform: osx-64 + name: iniconfig version: 2.0.0 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda hash: md5: f800d2da156d08e289b14e87e43c1ae5 sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -2574,18 +2457,17 @@ package: noarch: python size: 11101 timestamp: 1673103208955 -- name: iniconfig +- platform: osx-arm64 + name: iniconfig version: 2.0.0 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda hash: md5: f800d2da156d08e289b14e87e43c1ae5 sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -2595,18 +2477,17 @@ package: noarch: python size: 11101 timestamp: 1673103208955 -- name: iniconfig +- platform: win-64 + name: iniconfig version: 2.0.0 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda hash: md5: f800d2da156d08e289b14e87e43c1ae5 sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -2616,18 +2497,17 @@ package: noarch: python size: 11101 timestamp: 1673103208955 -- name: isl +- platform: osx-64 + name: isl version: '0.25' + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '>=13.0.1' + - libcxx >=13.0.1 url: https://conda.anaconda.org/conda-forge/osx-64/isl-0.25-hb486fe8_0.tar.bz2 hash: md5: 45a9a46c78c0ea5c275b535f7923bde3 sha256: f0a10b2be179809d4444bee0a60d5aa286b306520d55897b29d22b9848ab71fb - optional: false - category: main build: hb486fe8_0 arch: x86_64 subdir: osx-64 @@ -2636,18 +2516,17 @@ package: license_family: MIT size: 918877 timestamp: 1656870452902 -- name: isl +- platform: osx-arm64 + name: isl version: '0.25' + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '>=13.0.1' + - libcxx >=13.0.1 url: https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.25-h9a09cb3_0.tar.bz2 hash: md5: b0c90b63ffeb9e2d045be8f5bc64741c sha256: 6c6b486de9db1c2c897b24f6b0eb9a1ecdaf355ede1ee2ccb0c1aaee4bd9ef59 - optional: false - category: main build: h9a09cb3_0 arch: aarch64 subdir: osx-arm64 @@ -2656,17 +2535,16 @@ package: license_family: MIT size: 859063 timestamp: 1656870362879 -- name: kernel-headers_linux-64 +- platform: linux-64 + name: kernel-headers_linux-64 version: 2.6.32 + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda hash: md5: 7ca122655873935e02c91279c5b03c8c sha256: aaa8aa6dc776d734a6702032588ff3c496721da905366d91162e3654c082aef0 - optional: false - category: main build: he073ed8_16 arch: x86_64 subdir: linux-64 @@ -2678,18 +2556,17 @@ package: noarch: generic size: 709007 timestamp: 1689214970644 -- name: keyutils +- platform: linux-64 + name: keyutils version: 1.6.1 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' + - libgcc-ng >=10.3.0 url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - optional: false - category: main build: h166bdaf_0 arch: x86_64 subdir: linux-64 @@ -2697,22 +2574,21 @@ package: license: LGPL-2.1-or-later size: 117831 timestamp: 1646151697040 -- name: krb5 +- platform: linux-64 + name: krb5 version: 1.21.2 + category: main manager: conda - platform: linux-64 dependencies: - keyutils: '>=1.6.1,<2.0a0' - libedit: '>=3.1.20191231,<4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.1.2,<4.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda hash: md5: cd95826dbd331ed1be26bdf401432844 sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 - optional: false - category: main build: h659d440_0 arch: x86_64 subdir: linux-64 @@ -2721,20 +2597,19 @@ package: license_family: MIT size: 1371181 timestamp: 1692097755782 -- name: krb5 +- platform: osx-64 + name: krb5 version: 1.21.2 + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' + - libcxx >=15.0.7 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.1.2,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda hash: md5: 80505a68783f01dc8d7308c075261b2f sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 - optional: false - category: main build: hb884880_0 arch: x86_64 subdir: osx-64 @@ -2743,20 +2618,19 @@ package: license_family: MIT size: 1183568 timestamp: 1692098004387 -- name: krb5 +- platform: osx-arm64 + name: krb5 version: 1.21.2 + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '>=15.0.7' - libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' + - libcxx >=15.0.7 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.1.2,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda hash: md5: 92f1cff174a538e0722bf2efb16fc0b2 sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875 - optional: false - category: main build: h92f50d5_0 arch: aarch64 subdir: osx-arm64 @@ -2765,21 +2639,20 @@ package: license_family: MIT size: 1195575 timestamp: 1692098070699 -- name: krb5 +- platform: win-64 + name: krb5 version: 1.21.2 + category: main manager: conda - platform: win-64 dependencies: - openssl: '>=3.1.2,<4.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - openssl >=3.1.2,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda hash: md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9 sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b - optional: false - category: main build: heb0366b_0 arch: x86_64 subdir: win-64 @@ -2788,19 +2661,18 @@ package: license_family: MIT size: 710894 timestamp: 1692098129546 -- name: ld64 +- platform: osx-64 + name: ld64 version: '609' + category: main manager: conda - platform: osx-64 dependencies: - ld64_osx-64: ==609 h0fd476b_14 - libllvm15: '>=15.0.7,<15.1.0a0' + - ld64_osx-64 ==609 h0fd476b_14 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-ha91a046_14.conda hash: md5: ec7082eb79ea5db88c97b7bcad3db986 sha256: 89483e16c632ca19de8b27f679b6eb48a847096bde21eb50ee662963f4b96e95 - optional: false - category: main build: ha91a046_14 arch: x86_64 subdir: osx-64 @@ -2812,19 +2684,18 @@ package: license_family: Other size: 19166 timestamp: 1690768066030 -- name: ld64 +- platform: osx-arm64 + name: ld64 version: '609' + category: main manager: conda - platform: osx-arm64 dependencies: - ld64_osx-arm64: ==609 hc4dc95b_14 - libllvm15: '>=15.0.7,<15.1.0a0' + - ld64_osx-arm64 ==609 hc4dc95b_14 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h89fa09d_14.conda hash: md5: 5d2c82c220addd4630baaa7118a301d3 sha256: 1bddb451bb0f2e95414239c43a528ec6039f8c84a9b84a212a3a0d851c74306b - optional: false - category: main build: h89fa09d_14 arch: aarch64 subdir: osx-arm64 @@ -2836,21 +2707,20 @@ package: license_family: Other size: 19226 timestamp: 1690768480431 -- name: ld64_osx-64 +- platform: osx-64 + name: ld64_osx-64 version: '609' + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '*' - libllvm15: '>=15.0.7,<15.1.0a0' - sigtool: '*' - tapi: '>=1100.0.11,<1101.0a0' + - libcxx * + - libllvm15 >=15.0.7,<15.1.0a0 + - sigtool * + - tapi >=1100.0.11,<1101.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-h0fd476b_14.conda hash: md5: 3aa0a91888b5c1771630b86f42c9d2da sha256: 5a86a26201dc8f14e7a28b7234b4031d76a50ccbbc6cb448cc7818c01189b3ac - optional: false - category: main build: h0fd476b_14 arch: x86_64 subdir: osx-64 @@ -2864,21 +2734,20 @@ package: license_family: Other size: 1057004 timestamp: 1690767877853 -- name: ld64_osx-arm64 +- platform: osx-arm64 + name: ld64_osx-arm64 version: '609' + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '*' - libllvm15: '>=15.0.7,<15.1.0a0' - sigtool: '*' - tapi: '>=1100.0.11,<1101.0a0' + - libcxx * + - libllvm15 >=15.0.7,<15.1.0a0 + - sigtool * + - tapi >=1100.0.11,<1101.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-hc4dc95b_14.conda hash: md5: 1d41ae30b0c077ef3feab2f2e27bd593 sha256: 138f187e16d6952cb4f54ae1abef014a368948f0eb568c472f0798aa76fd959d - optional: false - category: main build: hc4dc95b_14 arch: aarch64 subdir: osx-arm64 @@ -2892,17 +2761,16 @@ package: license_family: Other size: 1041974 timestamp: 1690768191902 -- name: ld_impl_linux-64 +- platform: linux-64 + name: ld_impl_linux-64 version: '2.40' + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda hash: md5: 7aca3059a1729aa76c597603f10b0dd3 sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd - optional: false - category: main build: h41732ed_0 arch: x86_64 subdir: linux-64 @@ -2913,19 +2781,18 @@ package: license_family: GPL size: 704696 timestamp: 1674833944779 -- name: libclang-cpp15 +- platform: osx-64 + name: libclang-cpp15 version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libllvm15: '>=15.0.7,<15.1.0a0' + - libcxx >=15.0.7 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp15-15.0.7-default_hdb78580_3.conda hash: md5: 73639154fe4a7ca500d1361eef58fb65 sha256: 413c923b922c6d440f5e10012b65a733ff53d00af01298935b31a1567af2cb12 - optional: false - category: main build: default_hdb78580_3 arch: x86_64 subdir: osx-64 @@ -2934,19 +2801,18 @@ package: license_family: Apache size: 12426526 timestamp: 1690549605370 -- name: libclang-cpp15 +- platform: osx-arm64 + name: libclang-cpp15 version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '>=15.0.7' - libllvm15: '>=15.0.7,<15.1.0a0' + - libcxx >=15.0.7 + - libllvm15 >=15.0.7,<15.1.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp15-15.0.7-default_h5dc8d65_3.conda hash: md5: 99c37593de0f76769f089218e493f083 sha256: 33375e4e41f06c90c3a50f5efe15e9ad488243585a1dc994d3d9a897313d1cc4 - optional: false - category: main build: default_h5dc8d65_3 arch: aarch64 subdir: osx-arm64 @@ -2955,24 +2821,23 @@ package: license_family: Apache size: 11402301 timestamp: 1690549536998 -- name: libcurl +- platform: linux-64 + name: libcurl version: 8.3.0 + category: main manager: conda - platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - libnghttp2: '>=1.52.0,<2.0a0' - libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.2,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' + - krb5 >=1.21.2,<1.22.0a0 + - libgcc-ng >=12 + - libnghttp2 >=1.52.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.3.0-hca28451_0.conda hash: md5: 4ab41bee09a2d2e08de5f09d6f1eef62 sha256: 177b2d2cd552dcb88c0ce74b14512e1a8cd44146645120529e19755eb493232e - optional: false - category: main build: hca28451_0 arch: x86_64 subdir: linux-64 @@ -2981,23 +2846,22 @@ package: license_family: MIT size: 388309 timestamp: 1694599609110 -- name: libcurl +- platform: osx-64 + name: libcurl version: 8.3.0 + category: main manager: conda - platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.2,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' + - krb5 >=1.21.2,<1.22.0a0 + - libnghttp2 >=1.52.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.3.0-h5f667d7_0.conda hash: md5: ec1ea8499d8ef2599ffb230b7a97a9bd sha256: ffff8ac8d1a3671a22ba22fc75f7a5668ae47e80ceef97e1d29050d7d43c41ad - optional: false - category: main build: h5f667d7_0 arch: x86_64 subdir: osx-64 @@ -3006,23 +2870,22 @@ package: license_family: MIT size: 366255 timestamp: 1694600019936 -- name: libcurl +- platform: osx-arm64 + name: libcurl version: 8.3.0 + category: main manager: conda - platform: osx-arm64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.2,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' + - krb5 >=1.21.2,<1.22.0a0 + - libnghttp2 >=1.52.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.2,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.3.0-hc52a3a8_0.conda hash: md5: f7cd06ec16f40bf40c565977c363d1fd sha256: e4fb2f81a81449d6185129ade6c8c90cbde3259555a4080b742a566b29dbb535 - optional: false - category: main build: hc52a3a8_0 arch: aarch64 subdir: osx-arm64 @@ -3031,23 +2894,22 @@ package: license_family: MIT size: 359883 timestamp: 1694600164644 -- name: libcurl +- platform: win-64 + name: libcurl version: 8.3.0 + category: main manager: conda - platform: win-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - krb5 >=1.21.2,<1.22.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.3.0-hd5e4a3a_0.conda hash: md5: 4a493128ac1b1b6b2b283213a9e9abe6 sha256: 66133dc58a4d797c4302835b8d67b0bfac1a0b1a67228ac9043a97e2eb5cbe96 - optional: false - category: main build: hd5e4a3a_0 arch: x86_64 subdir: win-64 @@ -3056,17 +2918,16 @@ package: license_family: MIT size: 318789 timestamp: 1694600121125 -- name: libcxx +- platform: osx-64 + name: libcxx version: 16.0.6 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda hash: md5: 7d6972792161077908b62971802f289a sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 - optional: false - category: main build: hd57cbcb_0 arch: x86_64 subdir: osx-64 @@ -3075,17 +2936,16 @@ package: license_family: Apache size: 1142172 timestamp: 1686896907750 -- name: libcxx +- platform: osx-arm64 + name: libcxx version: 16.0.6 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda hash: md5: 9d7d724faf0413bf1dbc5a85935700c8 sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 - optional: false - category: main build: h4653b0c_0 arch: aarch64 subdir: osx-arm64 @@ -3094,19 +2954,18 @@ package: license_family: Apache size: 1160232 timestamp: 1686896993785 -- name: libedit +- platform: linux-64 + name: libedit version: 3.1.20191231 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - ncurses: '>=6.2,<7.0.0a0' + - libgcc-ng >=7.5.0 + - ncurses >=6.2,<7.0.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 hash: md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - optional: false - category: main build: he28a2e2_2 arch: x86_64 subdir: linux-64 @@ -3115,18 +2974,17 @@ package: license_family: BSD size: 123878 timestamp: 1597616541093 -- name: libedit +- platform: osx-64 + name: libedit version: 3.1.20191231 + category: main manager: conda - platform: osx-64 dependencies: - ncurses: '>=6.2,<7.0.0a0' + - ncurses >=6.2,<7.0.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 hash: md5: 6016a8a1d0e63cac3de2c352cd40208b sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 - optional: false - category: main build: h0678c8f_2 arch: x86_64 subdir: osx-64 @@ -3135,18 +2993,17 @@ package: license_family: BSD size: 105382 timestamp: 1597616576726 -- name: libedit +- platform: osx-arm64 + name: libedit version: 3.1.20191231 + category: main manager: conda - platform: osx-arm64 dependencies: - ncurses: '>=6.2,<7.0.0a0' + - ncurses >=6.2,<7.0.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 hash: md5: 30e4362988a2623e9eb34337b83e01f9 sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca - optional: false - category: main build: hc8eb9b7_2 arch: aarch64 subdir: osx-arm64 @@ -3155,18 +3012,17 @@ package: license_family: BSD size: 96607 timestamp: 1597616630749 -- name: libev +- platform: linux-64 + name: libev version: '4.33' + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' + - libgcc-ng >=7.5.0 url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 hash: md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 - optional: false - category: main build: h516909a_1 arch: x86_64 subdir: linux-64 @@ -3175,17 +3031,16 @@ package: license_family: BSD size: 106190 timestamp: 1598867915 -- name: libev +- platform: osx-64 + name: libev version: '4.33' + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 hash: md5: 79dc2be110b2a3d1e97ec21f691c50ad sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b - optional: false - category: main build: haf1e3a3_1 arch: x86_64 subdir: osx-64 @@ -3194,17 +3049,16 @@ package: license_family: BSD size: 101424 timestamp: 1598868359024 -- name: libev +- platform: osx-arm64 + name: libev version: '4.33' + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 hash: md5: 566dbf70fe79eacdb3c3d3d195a27f55 sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c - optional: false - category: main build: h642e427_1 arch: aarch64 subdir: osx-arm64 @@ -3213,18 +3067,17 @@ package: license_family: BSD size: 100668 timestamp: 1598868103393 -- name: libexpat +- platform: linux-64 + name: libexpat version: 2.5.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda hash: md5: 6305a3dd2752c76335295da4e581f2fd sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 - optional: false - category: main build: hcb278e6_1 arch: x86_64 subdir: linux-64 @@ -3235,17 +3088,16 @@ package: license_family: MIT size: 77980 timestamp: 1680190528313 -- name: libexpat +- platform: osx-64 + name: libexpat version: 2.5.0 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda hash: md5: 6c81cb022780ee33435cca0127dd43c9 sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 - optional: false - category: main build: hf0c8a7f_1 arch: x86_64 subdir: osx-64 @@ -3256,17 +3108,16 @@ package: license_family: MIT size: 69602 timestamp: 1680191040160 -- name: libexpat +- platform: osx-arm64 + name: libexpat version: 2.5.0 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda hash: md5: 5a097ad3d17e42c148c9566280481317 sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 - optional: false - category: main build: hb7217d7_1 arch: aarch64 subdir: osx-arm64 @@ -3277,17 +3128,16 @@ package: license_family: MIT size: 63442 timestamp: 1680190916539 -- name: libexpat +- platform: win-64 + name: libexpat version: 2.5.0 + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda hash: md5: 636cc3cbbd2e28bcfd2f73b2044aac2c sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf - optional: false - category: main build: h63175ca_1 arch: x86_64 subdir: win-64 @@ -3298,18 +3148,17 @@ package: license_family: MIT size: 138689 timestamp: 1680190844101 -- name: libffi +- platform: linux-64 + name: libffi version: 3.4.2 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' + - libgcc-ng >=9.4.0 url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 hash: md5: d645c6d2ac96843a2bfaccd2d62b3ac3 sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - optional: false - category: main build: h7f98852_5 arch: x86_64 subdir: linux-64 @@ -3318,17 +3167,16 @@ package: license_family: MIT size: 58292 timestamp: 1636488182923 -- name: libffi +- platform: osx-64 + name: libffi version: 3.4.2 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 hash: md5: ccb34fb14960ad8b125962d3d79b31a9 sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - optional: false - category: main build: h0d85af4_5 arch: x86_64 subdir: osx-64 @@ -3337,17 +3185,16 @@ package: license_family: MIT size: 51348 timestamp: 1636488394370 -- name: libffi +- platform: osx-arm64 + name: libffi version: 3.4.2 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 hash: md5: 086914b672be056eb70fd4285b6783b6 sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca - optional: false - category: main build: h3422bc3_5 arch: aarch64 subdir: osx-arm64 @@ -3356,19 +3203,18 @@ package: license_family: MIT size: 39020 timestamp: 1636488587153 -- name: libffi +- platform: win-64 + name: libffi version: 3.4.2 + category: main manager: conda - platform: win-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 hash: md5: 2c96d1b6915b408893f9472569dee135 sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - optional: false - category: main build: h8ffe710_5 arch: x86_64 subdir: win-64 @@ -3377,39 +3223,36 @@ package: license_family: MIT size: 42063 timestamp: 1636489106777 -- name: libflang +- platform: win-64 + name: libflang version: 5.0.0 + category: main manager: conda - platform: win-64 dependencies: - openmp: ==5.0.0 - vc: '>=14,<15.0a0' + - openmp ==5.0.0 + - vc >=14,<15.0a0 url: https://conda.anaconda.org/conda-forge/win-64/libflang-5.0.0-h6538335_20180525.tar.bz2 hash: md5: 9f473a344e18668e99a93f7e21a54b69 sha256: 0b893b511190332320f4a3e3d6424fbd350271ffbca34eb25b5cd8bc451f1a05 - optional: false - category: main build: h6538335_20180525 arch: x86_64 subdir: win-64 build_number: 20180525 - track_features: - - flang + track_features: flang license: Apache 2.0 size: 531143 timestamp: 1527899216421 -- name: libgcc-devel_linux-64 +- platform: linux-64 + name: libgcc-devel_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-12.3.0-h8bca6fd_2.conda hash: md5: ed613582de7b8569fdc53ca141be176a sha256: 7e12d0496389017ca526254913b24d9024e1728c849a0d6476a4b7fde9d03cba - optional: false - category: main build: h8bca6fd_2 arch: x86_64 subdir: linux-64 @@ -3418,19 +3261,18 @@ package: license_family: GPL size: 2405867 timestamp: 1695218559716 -- name: libgcc-ng +- platform: linux-64 + name: libgcc-ng version: 13.2.0 + category: main manager: conda - platform: linux-64 dependencies: - _libgcc_mutex: ==0.1 conda_forge - _openmp_mutex: '>=4.5' + - _libgcc_mutex ==0.1 conda_forge + - _openmp_mutex >=4.5 url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_2.conda hash: md5: c28003b0be0494f9a7664389146716ff sha256: d361d3c87c376642b99c1fc25cddec4b9905d3d9b9203c1c545b8c8c1b04539a - optional: false - category: main build: h807b86a_2 arch: x86_64 subdir: linux-64 @@ -3441,18 +3283,17 @@ package: license_family: GPL size: 771133 timestamp: 1695219384393 -- name: libgfortran +- platform: osx-64 + name: libgfortran version: 5.0.0 + category: main manager: conda - platform: osx-64 dependencies: - libgfortran5: ==13.2.0 h2873a65_1 + - libgfortran5 ==13.2.0 h2873a65_1 url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_1.conda hash: md5: b55fd11ab6318a6e67ac191309701d5a sha256: 5be1a59316e5063f4e6492ea86d692600a7b8e32caa25269f8a3b386a028e5f3 - optional: false - category: main build: 13_2_0_h97931a8_1 arch: x86_64 subdir: osx-64 @@ -3461,18 +3302,17 @@ package: license_family: GPL size: 109855 timestamp: 1694165674845 -- name: libgfortran +- platform: osx-arm64 + name: libgfortran version: 5.0.0 + category: main manager: conda - platform: osx-arm64 dependencies: - libgfortran5: ==13.2.0 hf226fd6_1 + - libgfortran5 ==13.2.0 hf226fd6_1 url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_1.conda hash: md5: 1ad37a5c60c250bb2b4a9f75563e181c sha256: bc8750e7893e693fa380bf2f342d4a5ce44995467cbdf72e56a00e5106b4892d - optional: false - category: main build: 13_2_0_hd922786_1 arch: aarch64 subdir: osx-arm64 @@ -3481,17 +3321,16 @@ package: license_family: GPL size: 110095 timestamp: 1694172198016 -- name: libgfortran-devel_osx-64 +- platform: osx-64 + name: libgfortran-devel_osx-64 version: 12.3.0 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-12.3.0-h0b6f5ec_1.conda hash: md5: ecc03a145b87ed6b8806fb02dc0e13c4 sha256: ad8b64109c141b35ab86296f5d536558c3d837924bf53ea87ce881a8fa82765a - optional: false - category: main build: h0b6f5ec_1 arch: x86_64 subdir: osx-64 @@ -3501,17 +3340,16 @@ package: noarch: generic size: 453925 timestamp: 1690184407070 -- name: libgfortran-devel_osx-arm64 +- platform: osx-arm64 + name: libgfortran-devel_osx-arm64 version: 12.3.0 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-12.3.0-hc62be1c_1.conda hash: md5: 83f84bb2f0f059f0faafbd5ba1a43e2b sha256: a7c75fc14e1245e68325f886dae8dbb269a826eeb79eefaad2cac77f234cefe5 - optional: false - category: main build: hc62be1c_1 arch: aarch64 subdir: osx-arm64 @@ -3521,18 +3359,17 @@ package: noarch: generic size: 401642 timestamp: 1690186380443 -- name: libgfortran5 +- platform: linux-64 + name: libgfortran5 version: 13.2.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' + - libgcc-ng >=13.2.0 url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_2.conda hash: md5: 78fdab09d9138851dde2b5fe2a11019e sha256: 55ecf5c46c05a98b4822a041d6e1cb196a7b0606126eb96b24131b7d2c8ca561 - optional: false - category: main build: ha4646dd_2 arch: x86_64 subdir: linux-64 @@ -3543,18 +3380,17 @@ package: license_family: GPL size: 1441830 timestamp: 1695219403435 -- name: libgfortran5 +- platform: osx-64 + name: libgfortran5 version: 13.2.0 + category: main manager: conda - platform: osx-64 dependencies: - llvm-openmp: '>=8.0.0' + - llvm-openmp >=8.0.0 url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_1.conda hash: md5: 3af564516b5163cd8cc08820413854bc sha256: 44de8930eef3b14d4d9fdfe419e6c909c13b7c859617d3616d5a5e964f3fcf63 - optional: false - category: main build: h2873a65_1 arch: x86_64 subdir: osx-64 @@ -3565,18 +3401,17 @@ package: license_family: GPL size: 1571764 timestamp: 1694165583047 -- name: libgfortran5 +- platform: osx-arm64 + name: libgfortran5 version: 13.2.0 + category: main manager: conda - platform: osx-arm64 dependencies: - llvm-openmp: '>=8.0.0' + - llvm-openmp >=8.0.0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_1.conda hash: md5: 4480d71b98c87faafab132d33e23135e sha256: cb9cb11e49a6a8466ea7556a723080d3aeefd556df9b444b941afc5b54368b22 - optional: false - category: main build: hf226fd6_1 arch: aarch64 subdir: osx-arm64 @@ -3587,23 +3422,22 @@ package: license_family: GPL size: 995733 timestamp: 1694172076009 -- name: libglib +- platform: osx-arm64 + name: libglib version: 2.78.0 + category: main manager: conda - platform: osx-arm64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libcxx: '>=15.0.7' - libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.40,<10.41.0a0' + - gettext >=0.21.1,<1.0a0 + - libcxx >=15.0.7 + - libffi >=3.4,<4.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre2 >=10.40,<10.41.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.78.0-h24e9cb9_0.conda hash: md5: 01c86aa032cbce6aff557de3b9948aa1 sha256: bc2fb2e307889294c15fe4f1f61c2c92832c371781654c17c5483c9e8de14d2e - optional: false - category: main build: h24e9cb9_0 arch: aarch64 subdir: osx-arm64 @@ -3613,25 +3447,24 @@ package: license: LGPL-2.1-or-later size: 2550196 timestamp: 1694381376914 -- name: libglib +- platform: win-64 + name: libglib version: 2.78.0 + category: main manager: conda - platform: win-64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.40,<10.41.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - gettext >=0.21.1,<1.0a0 + - libffi >=3.4,<4.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - pcre2 >=10.40,<10.41.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.78.0-he8f3873_0.conda hash: md5: 25f5b3502a82ac425c72c3bc0efbecb5 sha256: 1417a309e40a2fae41e18170a74bface2ab67fb0d6905caeb34f91c6840edacc - optional: false - category: main build: he8f3873_0 arch: x86_64 subdir: win-64 @@ -3641,18 +3474,17 @@ package: license: LGPL-2.1-or-later size: 2637097 timestamp: 1694381512139 -- name: libgomp +- platform: linux-64 + name: libgomp version: 13.2.0 + category: main manager: conda - platform: linux-64 dependencies: - _libgcc_mutex: ==0.1 conda_forge + - _libgcc_mutex ==0.1 conda_forge url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_2.conda hash: md5: e2042154faafe61969556f28bade94b9 sha256: e1e82348f8296abfe344162b3b5f0ddc2f504759ebeb8b337ba99beaae583b15 - optional: false - category: main build: h807b86a_2 arch: x86_64 subdir: linux-64 @@ -3661,17 +3493,16 @@ package: license_family: GPL size: 421133 timestamp: 1695219303065 -- name: libiconv +- platform: osx-64 + name: libiconv version: '1.17' + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2 hash: md5: 691d103d11180486154af49c037b7ed9 sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 - optional: false - category: main build: hac89ed1_0 arch: x86_64 subdir: osx-64 @@ -3679,17 +3510,16 @@ package: license: GPL and LGPL size: 1378276 timestamp: 1652702364402 -- name: libiconv +- platform: osx-arm64 + name: libiconv version: '1.17' + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 hash: md5: 686f9c755574aa221f29fbcf36a67265 sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec - optional: false - category: main build: he4db4b2_0 arch: aarch64 subdir: osx-arm64 @@ -3697,19 +3527,18 @@ package: license: GPL and LGPL size: 1407036 timestamp: 1652700956112 -- name: libiconv +- platform: win-64 + name: libiconv version: '1.17' + category: main manager: conda - platform: win-64 dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 hash: md5: 050119977a86e4856f0416e2edcf81bb sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 - optional: false - category: main build: h8ffe710_0 arch: x86_64 subdir: win-64 @@ -3717,21 +3546,20 @@ package: license: GPL and LGPL size: 714518 timestamp: 1652702326553 -- name: libllvm15 +- platform: osx-64 + name: libllvm15 version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '>=15' - libxml2: '>=2.11.4,<2.12.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' + - libcxx >=15 + - libxml2 >=2.11.4,<2.12.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-he4b1e75_3.conda hash: md5: ecc6df80c4b0445ac0de9cabae189db3 sha256: 02c7f5fe1ae9cdf4b0152cc76fef0ccb26137075054bdd9336ebf956fd22d8c9 - optional: false - category: main build: he4b1e75_3 arch: x86_64 subdir: osx-64 @@ -3740,20 +3568,19 @@ package: license_family: Apache size: 23877550 timestamp: 1690533932497 -- name: libllvm15 +- platform: osx-arm64 + name: libllvm15 version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '>=15' - libxml2: '>=2.11.4,<2.12.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + - libcxx >=15 + - libxml2 >=2.11.4,<2.12.0a0 + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h504e6bf_3.conda hash: md5: cef4a00532f06f6797fbe2425d4db2a7 sha256: 8fbe19f2133c501a43a45f4dab701adf5206ed61f4bd6317f287a8d87409fdee - optional: false - category: main build: h504e6bf_3 arch: aarch64 subdir: osx-arm64 @@ -3762,23 +3589,22 @@ package: license_family: Apache size: 21956912 timestamp: 1690530007064 -- name: libnghttp2 +- platform: linux-64 + name: libnghttp2 version: 1.52.0 + category: main manager: conda - platform: linux-64 dependencies: - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' + - c-ares >=1.18.1,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.8,<4.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda hash: md5: 613955a50485812985c059e7b269f42e sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a - optional: false - category: main build: h61bc06f_0 arch: x86_64 subdir: linux-64 @@ -3787,22 +3613,21 @@ package: license_family: MIT size: 622366 timestamp: 1677678076121 -- name: libnghttp2 +- platform: osx-64 + name: libnghttp2 version: 1.52.0 + category: main manager: conda - platform: osx-64 dependencies: - c-ares: '>=1.18.1,<2.0a0' - libcxx: '>=14.0.6' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' + - c-ares >=1.18.1,<2.0a0 + - libcxx >=14.0.6 + - libev >=4.33,<4.34.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.8,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda hash: md5: 12ac7d100bf260263e30a019517f42a2 sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a - optional: false - category: main build: he2ab024_0 arch: x86_64 subdir: osx-64 @@ -3811,22 +3636,21 @@ package: license_family: MIT size: 613074 timestamp: 1677678399575 -- name: libnghttp2 +- platform: osx-arm64 + name: libnghttp2 version: 1.52.0 + category: main manager: conda - platform: osx-arm64 dependencies: - c-ares: '>=1.18.1,<2.0a0' - libcxx: '>=14.0.6' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' + - c-ares >=1.18.1,<2.0a0 + - libcxx >=14.0.6 + - libev >=4.33,<4.34.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.0.8,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda hash: md5: 1d319e95a0216f801293626a00337712 sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 - optional: false - category: main build: hae82a92_0 arch: aarch64 subdir: osx-arm64 @@ -3835,18 +3659,17 @@ package: license_family: MIT size: 564295 timestamp: 1677678452375 -- name: libnsl +- platform: linux-64 + name: libnsl version: 2.0.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-hd590300_1.conda hash: md5: 854e3e1623b39777140f199c5f9ab952 sha256: c0a0c0abc1c17983168c3239d79a62d53c424bc5dd1764dbcd0fa953d6fce5e0 - optional: false - category: main build: hd590300_1 arch: x86_64 subdir: linux-64 @@ -3855,18 +3678,17 @@ package: license_family: GPL size: 33210 timestamp: 1695799598317 -- name: libsanitizer +- platform: linux-64 + name: libsanitizer version: 12.3.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12.3.0' + - libgcc-ng >=12.3.0 url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_2.conda hash: md5: 4655db64eca78a6fcc4fb654fc1f8d57 sha256: a58add0b4477c59aee324b508d834267360b659f9c543f551ca4442196e656fe - optional: false - category: main build: h0f45ef3_2 arch: x86_64 subdir: linux-64 @@ -3875,19 +3697,18 @@ package: license_family: GPL size: 3910499 timestamp: 1695218679356 -- name: libsqlite +- platform: linux-64 + name: libsqlite version: 3.43.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.43.0-h2797004_0.conda hash: md5: 903fa782a9067d5934210df6d79220f6 sha256: e715fab7ec6b3f3df2a5962ef372ff0f871d215fe819482dcd80357999513652 - optional: false - category: main build: h2797004_0 arch: x86_64 subdir: linux-64 @@ -3895,18 +3716,17 @@ package: license: Unlicense size: 840871 timestamp: 1692911324643 -- name: libsqlite +- platform: osx-64 + name: libsqlite version: 3.43.0 + category: main manager: conda - platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.43.0-h58db7d2_0.conda hash: md5: e2195038e85e49e26fbeb7efc0ad38c4 sha256: 3c3e06284c3426126901891675d09e181c651b2db01df9884da2613015e3fbac - optional: false - category: main build: h58db7d2_0 arch: x86_64 subdir: osx-64 @@ -3914,18 +3734,17 @@ package: license: Unlicense size: 891003 timestamp: 1692911591798 -- name: libsqlite +- platform: osx-arm64 + name: libsqlite version: 3.43.0 + category: main manager: conda - platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.43.0-hb31c410_0.conda hash: md5: 060a9948665e56a38060a1ed3ebc553a sha256: ddc90cc7a33563cd1f2b179a4964d144c221f9148634c006fd83ec9e1c667907 - optional: false - category: main build: hb31c410_0 arch: aarch64 subdir: osx-arm64 @@ -3933,20 +3752,19 @@ package: license: Unlicense size: 834286 timestamp: 1692911796861 -- name: libsqlite +- platform: win-64 + name: libsqlite version: 3.43.0 + category: main manager: conda - platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.43.0-hcfcfb64_0.conda hash: md5: 16c6f482e70cb3da41d0bee5d49c6bf3 sha256: d79128a279c8e8b4afeef5cfe9d4302a2fd65b1af3973732d92a7cc396d5332f - optional: false - category: main build: hcfcfb64_0 arch: x86_64 subdir: win-64 @@ -3954,20 +3772,19 @@ package: license: Unlicense size: 846526 timestamp: 1692911612959 -- name: libssh2 +- platform: linux-64 + name: libssh2 version: 1.11.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.1,<4.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: md5: 1f5a58e686b13bcfde88b93f547d23fe sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d - optional: false - category: main build: h0841786_0 arch: x86_64 subdir: linux-64 @@ -3976,19 +3793,18 @@ package: license_family: BSD size: 271133 timestamp: 1685837707056 -- name: libssh2 +- platform: osx-64 + name: libssh2 version: 1.11.0 + category: main manager: conda - platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.1,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: md5: ca3a72efba692c59a90d4b9fc0dfe774 sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 - optional: false - category: main build: hd019ec5_0 arch: x86_64 subdir: osx-64 @@ -3997,19 +3813,18 @@ package: license_family: BSD size: 259556 timestamp: 1685837820566 -- name: libssh2 +- platform: osx-arm64 + name: libssh2 version: 1.11.0 + category: main manager: conda - platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.1,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda hash: md5: 029f7dc931a3b626b94823bc77830b01 sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 - optional: false - category: main build: h7a5bd25_0 arch: aarch64 subdir: osx-arm64 @@ -4018,22 +3833,21 @@ package: license_family: BSD size: 255610 timestamp: 1685837894256 -- name: libssh2 +- platform: win-64 + name: libssh2 version: 1.11.0 + category: main manager: conda - platform: win-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda hash: md5: dc262d03aae04fe26825062879141a41 sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec - optional: false - category: main build: h7dfc565_0 arch: x86_64 subdir: win-64 @@ -4042,17 +3856,16 @@ package: license_family: BSD size: 266806 timestamp: 1685838242099 -- name: libstdcxx-devel_linux-64 +- platform: linux-64 + name: libstdcxx-devel_linux-64 version: 12.3.0 + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_2.conda hash: md5: 7268a17e56eb099d1b8869bbbf46de4c sha256: e8483069599561ef24b884c898442eadc510190f978fa388db3281b10c3c084e - optional: false - category: main build: h8bca6fd_2 arch: x86_64 subdir: linux-64 @@ -4061,17 +3874,16 @@ package: license_family: GPL size: 8542654 timestamp: 1695218598349 -- name: libstdcxx-ng +- platform: linux-64 + name: libstdcxx-ng version: 13.2.0 + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_2.conda hash: md5: 9172c297304f2a20134fc56c97fbe229 sha256: ab22ecdc974cdbe148874ea876d9c564294d5eafa760f403ed4fd495307b4243 - optional: false - category: main build: h7e041cc_2 arch: x86_64 subdir: linux-64 @@ -4080,18 +3892,17 @@ package: license_family: GPL size: 3842773 timestamp: 1695219454837 -- name: libuuid +- platform: linux-64 + name: libuuid version: 2.38.1 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 - optional: false - category: main build: h0b41bf4_0 arch: x86_64 subdir: linux-64 @@ -4100,18 +3911,17 @@ package: license_family: BSD size: 33601 timestamp: 1680112270483 -- name: libuv +- platform: linux-64 + name: libuv version: 1.46.0 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.46.0-hd590300_0.conda hash: md5: d23c76f7e6dcd6243d1b6ef5e62d17d2 sha256: 4bc4c946e9a532c066442714eeeeb1ffbd03cd89789c4047293f5e782b5fedd7 - optional: false - category: main build: hd590300_0 arch: x86_64 subdir: linux-64 @@ -4120,17 +3930,16 @@ package: license_family: MIT size: 893348 timestamp: 1693539405436 -- name: libuv +- platform: osx-64 + name: libuv version: 1.46.0 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.46.0-h0c2f820_0.conda hash: md5: 27664a5d39d9c32ae38880fec2b33b36 sha256: e51667c756f15580d3ce131d6157f0238d931c05af118c89f019854f2a7c125e - optional: false - category: main build: h0c2f820_0 arch: x86_64 subdir: osx-64 @@ -4139,17 +3948,16 @@ package: license_family: MIT size: 396101 timestamp: 1693539567563 -- name: libuv +- platform: osx-arm64 + name: libuv version: 1.46.0 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.46.0-hb547adb_0.conda hash: md5: 5f1d535f82e8210ac80d191610b92325 sha256: f2fe8e22a99f91761c16dc7b00408bff0f5c30d4cccc6ea562db00a4041c5579 - optional: false - category: main build: hb547adb_0 arch: aarch64 subdir: osx-arm64 @@ -4158,20 +3966,19 @@ package: license_family: MIT size: 402723 timestamp: 1693539587068 -- name: libuv +- platform: win-64 + name: libuv version: 1.44.2 + category: main manager: conda - platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/libuv-1.44.2-hcfcfb64_1.conda hash: md5: db1816a489a1b69dd1fd93e523cf026a sha256: d602dc13e1b0a955aa5f14772a3b8dc5ee72a4f68a4d63adb82a1ee105ffe4b2 - optional: false - category: main build: hcfcfb64_1 arch: x86_64 subdir: win-64 @@ -4180,21 +3987,20 @@ package: license_family: MIT size: 285183 timestamp: 1690371821520 -- name: libxml2 +- platform: osx-64 + name: libxml2 version: 2.11.5 + category: main manager: conda - platform: osx-64 dependencies: - icu: '>=73.2,<74.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - xz: '>=5.2.6,<6.0a0' + - icu >=73.2,<74.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.11.5-h3346baf_1.conda hash: md5: 7584dee6af7de378aed0ae49aebedb8a sha256: d901fab32e57a43c44e630fb1c4d0a163d23b109eecd6c68b9ee371800760bca - optional: false - category: main build: h3346baf_1 arch: x86_64 subdir: osx-64 @@ -4203,21 +4009,20 @@ package: license_family: MIT size: 623399 timestamp: 1692960844532 -- name: libxml2 +- platform: osx-arm64 + name: libxml2 version: 2.11.5 + category: main manager: conda - platform: osx-arm64 dependencies: - icu: '>=73.2,<74.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - xz: '>=5.2.6,<6.0a0' + - icu >=73.2,<74.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.5-h25269f3_1.conda hash: md5: 627b5d1377536b5b632ba53cd1455555 sha256: 8291549b87aca48e9cd4aec124af01b5037acd16f8ad14083d7af23c8bb6bebe - optional: false - category: main build: h25269f3_1 arch: aarch64 subdir: osx-arm64 @@ -4226,18 +4031,17 @@ package: license_family: MIT size: 614831 timestamp: 1692960705224 -- name: libzlib +- platform: linux-64 + name: libzlib version: 1.2.13 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda hash: md5: f36c115f1ee199da648e0597ec2047ad sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 - optional: false - category: main build: hd590300_5 arch: x86_64 subdir: linux-64 @@ -4248,17 +4052,16 @@ package: license_family: Other size: 61588 timestamp: 1686575217516 -- name: libzlib +- platform: osx-64 + name: libzlib version: 1.2.13 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda hash: md5: 4a3ad23f6e16f99c04e166767193d700 sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 - optional: false - category: main build: h8a1eda9_5 arch: x86_64 subdir: osx-64 @@ -4269,17 +4072,16 @@ package: license_family: Other size: 59404 timestamp: 1686575566695 -- name: libzlib +- platform: osx-arm64 + name: libzlib version: 1.2.13 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda hash: md5: 1a47f5236db2e06a320ffa0392f81bd8 sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a - optional: false - category: main build: h53f4e23_5 arch: aarch64 subdir: osx-arm64 @@ -4290,20 +4092,19 @@ package: license_family: Other size: 48102 timestamp: 1686575426584 -- name: libzlib +- platform: win-64 + name: libzlib version: 1.2.13 + category: main manager: conda - platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda hash: md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 - optional: false - category: main build: hcfcfb64_5 arch: x86_64 subdir: win-64 @@ -4314,17 +4115,16 @@ package: license_family: Other size: 55800 timestamp: 1686575452215 -- name: llvm-meta +- platform: win-64 + name: llvm-meta version: 5.0.0 + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/llvm-meta-5.0.0-0.tar.bz2 hash: md5: 213b5b5ad34008147a824460e50a691c sha256: 090bbeacc3297ff579b53f55ad184f05c30e316fe9d5d7df63df1d2ad4578b79 - optional: false - category: main build: '0' arch: x86_64 subdir: win-64 @@ -4333,17 +4133,16 @@ package: license_family: BSD noarch: generic size: 2667 -- name: llvm-openmp +- platform: osx-64 + name: llvm-openmp version: 16.0.6 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.6-hff08bdf_0.conda hash: md5: 39a5227d906f75102bf8586741690128 sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832 - optional: false - category: main build: hff08bdf_0 arch: x86_64 subdir: osx-64 @@ -4354,17 +4153,16 @@ package: license_family: APACHE size: 295823 timestamp: 1686865427800 -- name: llvm-openmp +- platform: osx-arm64 + name: llvm-openmp version: 16.0.6 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda hash: md5: 52e5730888439f7f55fd4f83905581b4 sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a - optional: false - category: main build: h1c12783_0 arch: aarch64 subdir: osx-arm64 @@ -4375,21 +4173,20 @@ package: license_family: APACHE size: 268740 timestamp: 1686865657336 -- name: llvm-tools +- platform: osx-64 + name: llvm-tools version: 15.0.7 + category: main manager: conda - platform: osx-64 dependencies: - libllvm15: ==15.0.7 he4b1e75_3 - libxml2: '>=2.11.4,<2.12.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' + - libllvm15 ==15.0.7 he4b1e75_3 + - libxml2 >=2.11.4,<2.12.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.2,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-15.0.7-he4b1e75_3.conda hash: md5: 7177e9334a86af1b1581f14607ced61c sha256: 93bf3db0bb0db82d91be7226374c239e88d885b850ab9791ec6755c63ffecc82 - optional: false - category: main build: he4b1e75_3 arch: x86_64 subdir: osx-64 @@ -4403,20 +4200,19 @@ package: license_family: Apache size: 11380889 timestamp: 1690534088911 -- name: llvm-tools +- platform: osx-arm64 + name: llvm-tools version: 15.0.7 + category: main manager: conda - platform: osx-arm64 dependencies: - libllvm15: ==15.0.7 h504e6bf_3 - libxml2: '>=2.11.4,<2.12.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + - libllvm15 ==15.0.7 h504e6bf_3 + - libxml2 >=2.11.4,<2.12.0a0 + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-15.0.7-h504e6bf_3.conda hash: md5: 56a351b4eba7ce574fa2702770e74252 sha256: 102c7da379f508e55b60a24625a3174b85d7e716ead452c1d7c88f84174b7a99 - optional: false - category: main build: h504e6bf_3 arch: aarch64 subdir: osx-arm64 @@ -4430,19 +4226,18 @@ package: license_family: Apache size: 10034129 timestamp: 1690530165545 -- name: m2w64-gcc-libgfortran +- platform: win-64 + name: m2w64-gcc-libgfortran version: 5.3.0 + category: main manager: conda - platform: win-64 dependencies: - m2w64-gcc-libs-core: '*' - msys2-conda-epoch: ==20160418 + - m2w64-gcc-libs-core * + - msys2-conda-epoch ==20160418 url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 hash: md5: 066552ac6b907ec6d72c0ddab29050dc sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 - optional: false - category: main build: '6' arch: x86_64 subdir: win-64 @@ -4450,22 +4245,21 @@ package: license: GPL, LGPL, FDL, custom size: 350687 timestamp: 1608163451316 -- name: m2w64-gcc-libs +- platform: win-64 + name: m2w64-gcc-libs version: 5.3.0 + category: main manager: conda - platform: win-64 dependencies: - m2w64-gcc-libgfortran: '*' - m2w64-gcc-libs-core: '*' - m2w64-gmp: '*' - m2w64-libwinpthread-git: '*' - msys2-conda-epoch: ==20160418 + - m2w64-gcc-libgfortran * + - m2w64-gcc-libs-core * + - m2w64-gmp * + - m2w64-libwinpthread-git * + - msys2-conda-epoch ==20160418 url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 hash: md5: fe759119b8b3bfa720b8762c6fdc35de sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa - optional: false - category: main build: '7' arch: x86_64 subdir: win-64 @@ -4473,20 +4267,19 @@ package: license: GPL3+, partial:GCCRLE, partial:LGPL2+ size: 532390 timestamp: 1608163512830 -- name: m2w64-gcc-libs-core +- platform: win-64 + name: m2w64-gcc-libs-core version: 5.3.0 + category: main manager: conda - platform: win-64 dependencies: - m2w64-gmp: '*' - m2w64-libwinpthread-git: '*' - msys2-conda-epoch: ==20160418 + - m2w64-gmp * + - m2w64-libwinpthread-git * + - msys2-conda-epoch ==20160418 url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 hash: md5: 4289d80fb4d272f1f3b56cfe87ac90bd sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 - optional: false - category: main build: '7' arch: x86_64 subdir: win-64 @@ -4494,18 +4287,17 @@ package: license: GPL3+, partial:GCCRLE, partial:LGPL2+ size: 219240 timestamp: 1608163481341 -- name: m2w64-gmp +- platform: win-64 + name: m2w64-gmp version: 6.1.0 + category: main manager: conda - platform: win-64 dependencies: - msys2-conda-epoch: ==20160418 + - msys2-conda-epoch ==20160418 url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 hash: md5: 53a1c73e1e3d185516d7e3af177596d9 sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 - optional: false - category: main build: '2' arch: x86_64 subdir: win-64 @@ -4513,18 +4305,17 @@ package: license: LGPL3 size: 743501 timestamp: 1608163782057 -- name: m2w64-libwinpthread-git +- platform: win-64 + name: m2w64-libwinpthread-git version: 5.0.0.4634.697f757 + category: main manager: conda - platform: win-64 dependencies: - msys2-conda-epoch: ==20160418 + - msys2-conda-epoch ==20160418 url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 hash: md5: 774130a326dee16f1ceb05cc687ee4f0 sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 - optional: false - category: main build: '2' arch: x86_64 subdir: win-64 @@ -4532,18 +4323,17 @@ package: license: MIT, BSD size: 31928 timestamp: 1608166099896 -- name: make +- platform: linux-64 + name: make version: '4.3' + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' + - libgcc-ng >=7.5.0 url: https://conda.anaconda.org/conda-forge/linux-64/make-4.3-hd18ef5c_1.tar.bz2 hash: md5: 4049ebfd3190b580dffe76daed26155a sha256: 4a5fe7c80bb0de0015328e2d3fc8db1736f528cb1fd53cd0d5527e24269a4f7c - optional: false - category: main build: hd18ef5c_1 arch: x86_64 subdir: linux-64 @@ -4552,17 +4342,16 @@ package: license_family: GPL size: 518896 timestamp: 1602706451788 -- name: make +- platform: osx-64 + name: make version: '4.3' + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/make-4.3-h22f3db7_1.tar.bz2 hash: md5: ac4a1dd58e6d821c518ae0011e8592b7 sha256: adef15126b518548b69ecaef24e22f88fa0a6358bd3c11e791af214f7344983b - optional: false - category: main build: h22f3db7_1 arch: x86_64 subdir: osx-64 @@ -4571,17 +4360,16 @@ package: license_family: GPL size: 255465 timestamp: 1602706542653 -- name: make +- platform: osx-arm64 + name: make version: '4.3' + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/make-4.3-he57ea6c_1.tar.bz2 hash: md5: 1939d04ef89e38fde652ee8c669e092f sha256: a011e3e1c4caec821eb4213d0a0154d39e5f81a44d2e8bafe6f84e7840c3909e - optional: false - category: main build: he57ea6c_1 arch: aarch64 subdir: osx-arm64 @@ -4590,18 +4378,17 @@ package: license_family: GPL size: 253227 timestamp: 1602706492919 -- name: make +- platform: win-64 + name: make version: '4.3' + category: main manager: conda - platform: win-64 dependencies: - m2w64-gcc-libs: '*' + - m2w64-gcc-libs * url: https://conda.anaconda.org/conda-forge/win-64/make-4.3-h3d2af85_1.tar.bz2 hash: md5: c3be283d3d278c379b50137a2a17f869 sha256: f31b00c710df71f2f75c641272ecb1f9bd1e15a5a77510055120641215487fbb - optional: false - category: main build: h3d2af85_1 arch: x86_64 subdir: win-64 @@ -4610,19 +4397,18 @@ package: license_family: GPL size: 6245358 timestamp: 1602706995515 -- name: mpc +- platform: osx-64 + name: mpc version: 1.3.1 + category: main manager: conda - platform: osx-64 dependencies: - gmp: '>=6.2.1,<7.0a0' - mpfr: '>=4.1.0,<5.0a0' + - gmp >=6.2.1,<7.0a0 + - mpfr >=4.1.0,<5.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h81bd1dd_0.conda hash: md5: c752c0eb6c250919559172c011e5f65b sha256: 2ae945a15c8a984d581dcfb974ad3b5d877a6527de2c95a3363e6b4490b2f312 - optional: false - category: main build: h81bd1dd_0 arch: x86_64 subdir: osx-64 @@ -4631,19 +4417,18 @@ package: license_family: LGPL size: 109064 timestamp: 1674264109148 -- name: mpc +- platform: osx-arm64 + name: mpc version: 1.3.1 + category: main manager: conda - platform: osx-arm64 dependencies: - gmp: '>=6.2.1,<7.0a0' - mpfr: '>=4.1.0,<5.0a0' + - gmp >=6.2.1,<7.0a0 + - mpfr >=4.1.0,<5.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h91ba8db_0.conda hash: md5: 362af269d860ae49580f8f032a68b0df sha256: 6d8d4f8befca279f022c1c212241ad6672cb347181452555414e277484ad534c - optional: false - category: main build: h91ba8db_0 arch: aarch64 subdir: osx-arm64 @@ -4652,18 +4437,17 @@ package: license_family: LGPL size: 103657 timestamp: 1674264097592 -- name: mpfr +- platform: osx-64 + name: mpfr version: 4.2.0 + category: main manager: conda - platform: osx-64 dependencies: - gmp: '>=6.2.1,<7.0a0' + - gmp >=6.2.1,<7.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.0-h4f9bd69_0.conda hash: md5: f48a2f4515be334c5cfeed82517b96e0 sha256: 5ba848dc2642dc16e54cc44c3bc21d83033abeccc053434c84b4ecc7a43b627a - optional: false - category: main build: h4f9bd69_0 arch: x86_64 subdir: osx-64 @@ -4672,18 +4456,17 @@ package: license_family: LGPL size: 376446 timestamp: 1678380484788 -- name: mpfr +- platform: osx-arm64 + name: mpfr version: 4.2.0 + category: main manager: conda - platform: osx-arm64 dependencies: - gmp: '>=6.2.1,<7.0a0' + - gmp >=6.2.1,<7.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.0-he09a6ba_0.conda hash: md5: 6ec2fb83ce146e5bc944020027d6c9e4 sha256: 6f05ed642052fce5bf0bbf9dea78a5f4a17f252d5706604d1155e324e0c431c9 - optional: false - category: main build: he09a6ba_0 arch: aarch64 subdir: osx-arm64 @@ -4692,35 +4475,33 @@ package: license_family: LGPL size: 343909 timestamp: 1678380200136 -- name: msys2-conda-epoch +- platform: win-64 + name: msys2-conda-epoch version: '20160418' + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 hash: md5: b0309b72560df66f71a9d5e34a5efdfa sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 - optional: false - category: main build: '1' arch: x86_64 subdir: win-64 build_number: 1 size: 3227 timestamp: 1608166968312 -- name: ncurses +- platform: linux-64 + name: ncurses version: '6.4' + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda hash: md5: 681105bccc2a3f7f1a837d47d39c9179 sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a - optional: false - category: main build: hcb278e6_0 arch: x86_64 subdir: linux-64 @@ -4728,17 +4509,16 @@ package: license: X11 AND BSD-3-Clause size: 880967 timestamp: 1686076725450 -- name: ncurses +- platform: osx-64 + name: ncurses version: '6.4' + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda hash: md5: c3dbae2411164d9b02c69090a9a91857 sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd - optional: false - category: main build: hf0c8a7f_0 arch: x86_64 subdir: osx-64 @@ -4746,17 +4526,16 @@ package: license: X11 AND BSD-3-Clause size: 828118 timestamp: 1686077056765 -- name: ncurses +- platform: osx-arm64 + name: ncurses version: '6.4' + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda hash: md5: 318337fb9d0c53ba635efb7888242373 sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 - optional: false - category: main build: h7ea286d_0 arch: aarch64 subdir: osx-arm64 @@ -4764,19 +4543,18 @@ package: license: X11 AND BSD-3-Clause size: 799196 timestamp: 1686077139703 -- name: nodeenv +- platform: linux-64 + name: nodeenv version: 1.8.0 + category: main manager: conda - platform: linux-64 dependencies: - python: ==2.7|>=3.7 - setuptools: '*' + - python ==2.7|>=3.7 + - setuptools * url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda hash: md5: 2a75b296096adabbabadd5e9782e5fcc sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -4786,19 +4564,18 @@ package: noarch: python size: 34358 timestamp: 1683893151613 -- name: nodeenv +- platform: osx-64 + name: nodeenv version: 1.8.0 + category: main manager: conda - platform: osx-64 dependencies: - python: ==2.7|>=3.7 - setuptools: '*' + - python ==2.7|>=3.7 + - setuptools * url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda hash: md5: 2a75b296096adabbabadd5e9782e5fcc sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -4808,19 +4585,18 @@ package: noarch: python size: 34358 timestamp: 1683893151613 -- name: nodeenv +- platform: osx-arm64 + name: nodeenv version: 1.8.0 + category: main manager: conda - platform: osx-arm64 dependencies: - python: ==2.7|>=3.7 - setuptools: '*' + - python ==2.7|>=3.7 + - setuptools * url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda hash: md5: 2a75b296096adabbabadd5e9782e5fcc sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -4830,19 +4606,18 @@ package: noarch: python size: 34358 timestamp: 1683893151613 -- name: nodeenv +- platform: win-64 + name: nodeenv version: 1.8.0 + category: main manager: conda - platform: win-64 dependencies: - python: ==2.7|>=3.7 - setuptools: '*' + - python ==2.7|>=3.7 + - setuptools * url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda hash: md5: 2a75b296096adabbabadd5e9782e5fcc sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -4852,38 +4627,36 @@ package: noarch: python size: 34358 timestamp: 1683893151613 -- name: openmp +- platform: win-64 + name: openmp version: 5.0.0 + category: main manager: conda - platform: win-64 dependencies: - llvm-meta: ==5.0.0|5.0.0.* - vc: 14.* + - llvm-meta ==5.0.0|5.0.0.* + - vc 14.* url: https://conda.anaconda.org/conda-forge/win-64/openmp-5.0.0-vc14_1.tar.bz2 hash: md5: 8284c925330fa53668ade00db3c9e787 sha256: 05c19170938b589f59049679d4e0679c98160fecc6fd1bf721b0f4980bd235dd - optional: false - category: main build: vc14_1 arch: x86_64 subdir: win-64 build_number: 1 license: NCSA size: 590466 -- name: openssl +- platform: linux-64 + name: openssl version: 3.1.3 + category: main manager: conda - platform: linux-64 dependencies: - ca-certificates: '*' - libgcc-ng: '>=12' + - ca-certificates * + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.3-hd590300_0.conda hash: md5: 7bb88ce04c8deb9f7d763ae04a1da72f sha256: f4e35f506c7e8ab7dfdc47255b0d5aa8ce0c99028ae0affafd274333042c4f70 - optional: false - category: main build: hd590300_0 arch: x86_64 subdir: linux-64 @@ -4894,18 +4667,17 @@ package: license_family: Apache size: 2642850 timestamp: 1695158025027 -- name: openssl +- platform: osx-64 + name: openssl version: 3.1.3 + category: main manager: conda - platform: osx-64 dependencies: - ca-certificates: '*' + - ca-certificates * url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.3-h8a1eda9_0.conda hash: md5: 26f9b58f905547e658e9587f8e8cfe43 sha256: 69731ce62d4b68e538af559747da53f837ae0bbca519b38f2eea28680eb9e8d1 - optional: false - category: main build: h8a1eda9_0 arch: x86_64 subdir: osx-64 @@ -4916,18 +4688,17 @@ package: license_family: Apache size: 2329752 timestamp: 1695158667922 -- name: openssl +- platform: osx-arm64 + name: openssl version: 3.1.3 + category: main manager: conda - platform: osx-arm64 dependencies: - ca-certificates: '*' + - ca-certificates * url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.3-h53f4e23_0.conda hash: md5: 40d01d3f39589f54b618ddd28a5a48cb sha256: d9af6208610d4985322b8eade79215f1ded6e2a2b41b0a885714b971a36a5bae - optional: false - category: main build: h53f4e23_0 arch: aarch64 subdir: osx-arm64 @@ -4938,21 +4709,20 @@ package: license_family: Apache size: 2225422 timestamp: 1695158154709 -- name: openssl +- platform: win-64 + name: openssl version: 3.1.3 + category: main manager: conda - platform: win-64 dependencies: - ca-certificates: '*' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - ca-certificates * + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.3-hcfcfb64_0.conda hash: md5: 16b2c80ad196f18acd31b588ef28cb9a sha256: 6a6b20aa2b9f32d94f8d2c352b7635b5e8b9fb7ffad823bf2ce88dc8ef61ffc8 - optional: false - category: main build: hcfcfb64_0 arch: x86_64 subdir: win-64 @@ -4963,18 +4733,17 @@ package: license_family: Apache size: 7427366 timestamp: 1695218580613 -- name: packaging +- platform: linux-64 + name: packaging version: '23.2' + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda hash: md5: 79002079284aa895f883c6b7f3f88fd6 sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -4984,18 +4753,17 @@ package: noarch: python size: 49452 timestamp: 1696202521121 -- name: packaging +- platform: osx-64 + name: packaging version: '23.2' + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda hash: md5: 79002079284aa895f883c6b7f3f88fd6 sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -5005,18 +4773,17 @@ package: noarch: python size: 49452 timestamp: 1696202521121 -- name: packaging +- platform: osx-arm64 + name: packaging version: '23.2' + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda hash: md5: 79002079284aa895f883c6b7f3f88fd6 sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -5026,18 +4793,17 @@ package: noarch: python size: 49452 timestamp: 1696202521121 -- name: packaging +- platform: win-64 + name: packaging version: '23.2' + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda hash: md5: 79002079284aa895f883c6b7f3f88fd6 sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -5047,19 +4813,18 @@ package: noarch: python size: 49452 timestamp: 1696202521121 -- name: pcre2 +- platform: osx-arm64 + name: pcre2 version: '10.40' + category: main manager: conda - platform: osx-arm64 dependencies: - bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.12,<1.3.0a0' + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.12,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 hash: md5: 721b7288270bafc83586b0f01c2a67f2 sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe - optional: false - category: main build: hb34f9b4_0 arch: aarch64 subdir: osx-arm64 @@ -5068,22 +4833,21 @@ package: license_family: BSD size: 1161688 timestamp: 1665563317371 -- name: pcre2 +- platform: win-64 + name: pcre2 version: '10.40' + category: main manager: conda - platform: win-64 dependencies: - bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.12,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2 hash: md5: 2519de0d9620dc2bc7e19caf6867136d sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 - optional: false - category: main build: h17e33f8_0 arch: x86_64 subdir: win-64 @@ -5092,19 +4856,18 @@ package: license_family: BSD size: 2001630 timestamp: 1665563527916 -- name: perl +- platform: linux-64 + name: perl version: 5.32.1 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - libnsl: '>=2.0.0,<2.1.0a0' + - libgcc-ng >=12 + - libnsl >=2.0.0,<2.1.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-4_hd590300_perl5.conda hash: md5: 3e785bff761095eb7f8676f4694bd1b1 sha256: 6e18c1488d191cb1a43a483f44fffa75668779a29927319b4adeb10da12ad06b - optional: false - category: main build: 4_hd590300_perl5 arch: x86_64 subdir: linux-64 @@ -5112,17 +4875,16 @@ package: license: GPL-1.0-or-later OR Artistic-1.0-Perl size: 13349514 timestamp: 1689376866566 -- name: perl +- platform: osx-64 + name: perl version: 5.32.1 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-4_h0dc2134_perl5.conda hash: md5: fe0116fc9288448b8e0e3c9b0c7841cd sha256: ddd3790958849cc42287741d3ea31ccde78a843047c844e1e2adb6e531240cde - optional: false - category: main build: 4_h0dc2134_perl5 arch: x86_64 subdir: osx-64 @@ -5130,17 +4892,16 @@ package: license: GPL-1.0-or-later OR Artistic-1.0-Perl size: 12478889 timestamp: 1689377655662 -- name: perl +- platform: osx-arm64 + name: perl version: 5.32.1 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/perl-5.32.1-4_hf2054a2_perl5.conda hash: md5: d9389447361c7b53e3bbfc947cae0973 sha256: 3bf5e43b9c7127f6d0529393535ac69c25483b3b8b76cb71ffa454f6aa73f5a3 - optional: false - category: main build: 4_hf2054a2_perl5 arch: aarch64 subdir: osx-arm64 @@ -5148,17 +4909,16 @@ package: license: GPL-1.0-or-later OR Artistic-1.0-Perl size: 14472770 timestamp: 1689377922184 -- name: perl +- platform: win-64 + name: perl version: 5.32.1.1 + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/perl-5.32.1.1-4_h57928b3_strawberry.conda hash: md5: 250507ceddd29a4d82e5d4cb28d6e495 sha256: f7d2fed562cc5c8beb7a08569fd316a8363c414f2ce12d79c8e10abe21075952 - optional: false - category: main build: 4_h57928b3_strawberry arch: x86_64 subdir: win-64 @@ -5166,18 +4926,17 @@ package: license: GPL-1.0-or-later OR Artistic-1.0-Perl size: 29041994 timestamp: 1689377139505 -- name: pkg-config +- platform: linux-64 + name: pkg-config version: 0.29.2 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' + - libgcc-ng >=7.5.0 url: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2 hash: md5: fbef41ff6a4c8140c30057466a1cdd47 sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c - optional: false - category: main build: h36c2ea0_1008 arch: x86_64 subdir: linux-64 @@ -5186,18 +4945,17 @@ package: license_family: GPL size: 123341 timestamp: 1604184579935 -- name: pkg-config +- platform: osx-64 + name: pkg-config version: 0.29.2 + category: main manager: conda - platform: osx-64 dependencies: - libiconv: '>=1.16,<2.0.0a0' + - libiconv >=1.16,<2.0.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-ha3d46e9_1008.tar.bz2 hash: md5: 352bc6fb446a7ca608c61b33c1d5eb98 sha256: f60d1c03c7d10e8926e767981872fdd6002d2094925df598a53c58261524c151 - optional: false - category: main build: ha3d46e9_1008 arch: x86_64 subdir: osx-64 @@ -5206,19 +4964,18 @@ package: license_family: GPL size: 269087 timestamp: 1650238856925 -- name: pkg-config +- platform: osx-arm64 + name: pkg-config version: 0.29.2 + category: main manager: conda - platform: osx-arm64 dependencies: - libglib: '>=2.70.2,<3.0a0' - libiconv: '>=1.16,<2.0.0a0' + - libglib >=2.70.2,<3.0a0 + - libiconv >=1.16,<2.0.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2 hash: md5: 8d173d52214679033079d1b0582075aa sha256: e59e69111709d097f9938e72ba19811ec1ef36aababdbed77bd7c767f15639e0 - optional: false - category: main build: hab62308_1008 arch: aarch64 subdir: osx-arm64 @@ -5227,20 +4984,19 @@ package: license_family: GPL size: 46049 timestamp: 1650239029040 -- name: pkg-config +- platform: win-64 + name: pkg-config version: 0.29.2 + category: main manager: conda - platform: win-64 dependencies: - libglib: '>=2.64.6,<3.0a0' - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' + - libglib >=2.64.6,<3.0a0 + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 url: https://conda.anaconda.org/conda-forge/win-64/pkg-config-0.29.2-h2bf4dc2_1008.tar.bz2 hash: md5: 8ff5bccb4dc5d153e79b068e0bb301c5 sha256: f2f64c4774eea3b789c9568452d8cd776bdcf7e2cda0f24bfa9dbcbd7fbb9f6f - optional: false - category: main build: h2bf4dc2_1008 arch: x86_64 subdir: win-64 @@ -5249,19 +5005,18 @@ package: license_family: GPL size: 33990 timestamp: 1604184834061 -- name: platformdirs +- platform: linux-64 + name: platformdirs version: 3.11.0 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' - typing-extensions: '>=4.6.3' + - python >=3.7 + - typing-extensions >=4.6.3 url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda hash: md5: 8f567c0a74aa44cf732f15773b4083b0 sha256: b3d809ff5a18ee8514bba8bc05a23b4cdf1758090a18a2cf742af38aed405144 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -5271,19 +5026,18 @@ package: noarch: python size: 19985 timestamp: 1696272419779 -- name: platformdirs +- platform: osx-64 + name: platformdirs version: 3.11.0 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' - typing-extensions: '>=4.6.3' + - python >=3.7 + - typing-extensions >=4.6.3 url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda hash: md5: 8f567c0a74aa44cf732f15773b4083b0 sha256: b3d809ff5a18ee8514bba8bc05a23b4cdf1758090a18a2cf742af38aed405144 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -5293,19 +5047,18 @@ package: noarch: python size: 19985 timestamp: 1696272419779 -- name: platformdirs +- platform: osx-arm64 + name: platformdirs version: 3.11.0 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' - typing-extensions: '>=4.6.3' + - python >=3.7 + - typing-extensions >=4.6.3 url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda hash: md5: 8f567c0a74aa44cf732f15773b4083b0 sha256: b3d809ff5a18ee8514bba8bc05a23b4cdf1758090a18a2cf742af38aed405144 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -5315,19 +5068,18 @@ package: noarch: python size: 19985 timestamp: 1696272419779 -- name: platformdirs +- platform: win-64 + name: platformdirs version: 3.11.0 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' - typing-extensions: '>=4.6.3' + - python >=3.7 + - typing-extensions >=4.6.3 url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda hash: md5: 8f567c0a74aa44cf732f15773b4083b0 sha256: b3d809ff5a18ee8514bba8bc05a23b4cdf1758090a18a2cf742af38aed405144 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -5337,18 +5089,17 @@ package: noarch: python size: 19985 timestamp: 1696272419779 -- name: pluggy +- platform: linux-64 + name: pluggy version: 1.3.0 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda hash: md5: 2390bd10bed1f3fdc7a537fb5a447d8d sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -5358,18 +5109,17 @@ package: noarch: python size: 22548 timestamp: 1693086745921 -- name: pluggy +- platform: osx-64 + name: pluggy version: 1.3.0 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda hash: md5: 2390bd10bed1f3fdc7a537fb5a447d8d sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -5379,18 +5129,17 @@ package: noarch: python size: 22548 timestamp: 1693086745921 -- name: pluggy +- platform: osx-arm64 + name: pluggy version: 1.3.0 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda hash: md5: 2390bd10bed1f3fdc7a537fb5a447d8d sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -5400,18 +5149,17 @@ package: noarch: python size: 22548 timestamp: 1693086745921 -- name: pluggy +- platform: win-64 + name: pluggy version: 1.3.0 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda hash: md5: 2390bd10bed1f3fdc7a537fb5a447d8d sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -5421,23 +5169,22 @@ package: noarch: python size: 22548 timestamp: 1693086745921 -- name: pre-commit +- platform: linux-64 + name: pre-commit version: 3.3.3 + category: main manager: conda - platform: linux-64 dependencies: - cfgv: '>=2.0.0' - identify: '>=1.0.0' - nodeenv: '>=0.11.1' - python: '>=3.8' - pyyaml: '>=5.1' - virtualenv: '>=20.10.0' + - cfgv >=2.0.0 + - identify >=1.0.0 + - nodeenv >=0.11.1 + - python >=3.8 + - pyyaml >=5.1 + - virtualenv >=20.10.0 url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda hash: md5: dd64a0e440754ed97610b3e6b502b6b1 sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b - optional: false - category: main build: pyha770c72_0 arch: x86_64 subdir: linux-64 @@ -5447,23 +5194,22 @@ package: noarch: python size: 179852 timestamp: 1686749032780 -- name: pre-commit +- platform: osx-64 + name: pre-commit version: 3.3.3 + category: main manager: conda - platform: osx-64 dependencies: - cfgv: '>=2.0.0' - identify: '>=1.0.0' - nodeenv: '>=0.11.1' - python: '>=3.8' - pyyaml: '>=5.1' - virtualenv: '>=20.10.0' + - cfgv >=2.0.0 + - identify >=1.0.0 + - nodeenv >=0.11.1 + - python >=3.8 + - pyyaml >=5.1 + - virtualenv >=20.10.0 url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda hash: md5: dd64a0e440754ed97610b3e6b502b6b1 sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b - optional: false - category: main build: pyha770c72_0 arch: x86_64 subdir: osx-64 @@ -5473,23 +5219,22 @@ package: noarch: python size: 179852 timestamp: 1686749032780 -- name: pre-commit +- platform: osx-arm64 + name: pre-commit version: 3.3.3 + category: main manager: conda - platform: osx-arm64 dependencies: - cfgv: '>=2.0.0' - identify: '>=1.0.0' - nodeenv: '>=0.11.1' - python: '>=3.8' - pyyaml: '>=5.1' - virtualenv: '>=20.10.0' + - cfgv >=2.0.0 + - identify >=1.0.0 + - nodeenv >=0.11.1 + - python >=3.8 + - pyyaml >=5.1 + - virtualenv >=20.10.0 url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda hash: md5: dd64a0e440754ed97610b3e6b502b6b1 sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b - optional: false - category: main build: pyha770c72_0 arch: aarch64 subdir: osx-arm64 @@ -5499,23 +5244,22 @@ package: noarch: python size: 179852 timestamp: 1686749032780 -- name: pre-commit +- platform: win-64 + name: pre-commit version: 3.3.3 + category: main manager: conda - platform: win-64 dependencies: - cfgv: '>=2.0.0' - identify: '>=1.0.0' - nodeenv: '>=0.11.1' - python: '>=3.8' - pyyaml: '>=5.1' - virtualenv: '>=20.10.0' + - cfgv >=2.0.0 + - identify >=1.0.0 + - nodeenv >=0.11.1 + - python >=3.8 + - pyyaml >=5.1 + - virtualenv >=20.10.0 url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda hash: md5: dd64a0e440754ed97610b3e6b502b6b1 sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b - optional: false - category: main build: pyha770c72_0 arch: x86_64 subdir: win-64 @@ -5525,18 +5269,17 @@ package: noarch: python size: 179852 timestamp: 1686749032780 -- name: pycparser +- platform: linux-64 + name: pycparser version: '2.21' + category: main manager: conda - platform: linux-64 dependencies: - python: 2.7.*|>=3.4 + - python 2.7.*|>=3.4 url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 hash: md5: 076becd9e05608f8dc72757d5f3a91ff sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -5546,18 +5289,17 @@ package: noarch: python size: 102747 timestamp: 1636257201998 -- name: pycparser +- platform: osx-64 + name: pycparser version: '2.21' + category: main manager: conda - platform: osx-64 dependencies: - python: 2.7.*|>=3.4 + - python 2.7.*|>=3.4 url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 hash: md5: 076becd9e05608f8dc72757d5f3a91ff sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -5567,18 +5309,17 @@ package: noarch: python size: 102747 timestamp: 1636257201998 -- name: pycparser +- platform: osx-arm64 + name: pycparser version: '2.21' + category: main manager: conda - platform: osx-arm64 dependencies: - python: 2.7.*|>=3.4 + - python 2.7.*|>=3.4 url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 hash: md5: 076becd9e05608f8dc72757d5f3a91ff sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -5588,18 +5329,17 @@ package: noarch: python size: 102747 timestamp: 1636257201998 -- name: pycparser +- platform: win-64 + name: pycparser version: '2.21' + category: main manager: conda - platform: win-64 dependencies: - python: 2.7.*|>=3.4 + - python 2.7.*|>=3.4 url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 hash: md5: 076becd9e05608f8dc72757d5f3a91ff sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -5609,24 +5349,23 @@ package: noarch: python size: 102747 timestamp: 1636257201998 -- name: pytest +- platform: linux-64 + name: pytest version: 7.4.2 + category: main manager: conda - platform: linux-64 dependencies: - colorama: '*' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '*' - packaging: '*' - pluggy: '>=0.12,<2.0' - python: '>=3.7' - tomli: '>=1.0.0' + - colorama * + - exceptiongroup >=1.0.0rc8 + - iniconfig * + - packaging * + - pluggy >=0.12,<2.0 + - python >=3.7 + - tomli >=1.0.0 url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda hash: md5: 6dd662ff5ac9a783e5c940ce9f3fe649 sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -5638,24 +5377,23 @@ package: noarch: python size: 244691 timestamp: 1694128618921 -- name: pytest +- platform: osx-64 + name: pytest version: 7.4.2 + category: main manager: conda - platform: osx-64 dependencies: - colorama: '*' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '*' - packaging: '*' - pluggy: '>=0.12,<2.0' - python: '>=3.7' - tomli: '>=1.0.0' + - colorama * + - exceptiongroup >=1.0.0rc8 + - iniconfig * + - packaging * + - pluggy >=0.12,<2.0 + - python >=3.7 + - tomli >=1.0.0 url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda hash: md5: 6dd662ff5ac9a783e5c940ce9f3fe649 sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -5667,24 +5405,23 @@ package: noarch: python size: 244691 timestamp: 1694128618921 -- name: pytest +- platform: osx-arm64 + name: pytest version: 7.4.2 + category: main manager: conda - platform: osx-arm64 dependencies: - colorama: '*' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '*' - packaging: '*' - pluggy: '>=0.12,<2.0' - python: '>=3.7' - tomli: '>=1.0.0' + - colorama * + - exceptiongroup >=1.0.0rc8 + - iniconfig * + - packaging * + - pluggy >=0.12,<2.0 + - python >=3.7 + - tomli >=1.0.0 url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda hash: md5: 6dd662ff5ac9a783e5c940ce9f3fe649 sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -5696,24 +5433,23 @@ package: noarch: python size: 244691 timestamp: 1694128618921 -- name: pytest +- platform: win-64 + name: pytest version: 7.4.2 + category: main manager: conda - platform: win-64 dependencies: - colorama: '*' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '*' - packaging: '*' - pluggy: '>=0.12,<2.0' - python: '>=3.7' - tomli: '>=1.0.0' + - colorama * + - exceptiongroup >=1.0.0rc8 + - iniconfig * + - packaging * + - pluggy >=0.12,<2.0 + - python >=3.7 + - tomli >=1.0.0 url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda hash: md5: 6dd662ff5ac9a783e5c940ce9f3fe649 sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -5725,32 +5461,31 @@ package: noarch: python size: 244691 timestamp: 1694128618921 -- name: python +- platform: linux-64 + name: python version: 3.12.0 + category: main manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.5.0,<3.0a0' - libffi: '>=3.4,<4.0a0' - libgcc-ng: '>=12' - libnsl: '>=2.0.0,<2.1.0a0' - libsqlite: '>=3.43.0,<4.0a0' - libuuid: '>=2.38.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - openssl: '>=3.1.3,<4.0a0' - readline: '>=8.2,<9.0a0' - tk: '>=8.6.13,<8.7.0a0' - tzdata: '*' - xz: '>=5.2.6,<6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.0,<2.1.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.1.3,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata * + - xz >=5.2.6,<6.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.0-hab00c5b_0_cpython.conda hash: md5: 7f97faab5bebcc2580f4f299285323da sha256: 5398ebae6a1ccbfd3f76361eac75f3ac071527a8072627c4bf9008c689034f48 - optional: false - category: main build: hab00c5b_0_cpython arch: x86_64 subdir: linux-64 @@ -5760,28 +5495,27 @@ package: license: Python-2.0 size: 32123473 timestamp: 1696324522323 -- name: python +- platform: osx-64 + name: python version: 3.12.0 + category: main manager: conda - platform: osx-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.43.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - openssl: '>=3.1.3,<4.0a0' - readline: '>=8.2,<9.0a0' - tk: '>=8.6.13,<8.7.0a0' - tzdata: '*' - xz: '>=5.2.6,<6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.1.3,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata * + - xz >=5.2.6,<6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.0-h30d4d87_0_cpython.conda hash: md5: d11dc8f4551011fb6baa2865f1ead48f sha256: 0a1ed3983acbd0528bef5216179e46170f024f4409032875b27865568fef46a1 - optional: false - category: main build: h30d4d87_0_cpython arch: x86_64 subdir: osx-64 @@ -5791,28 +5525,27 @@ package: license: Python-2.0 size: 14529683 timestamp: 1696323482650 -- name: python +- platform: osx-arm64 + name: python version: 3.12.0 + category: main manager: conda - platform: osx-arm64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.43.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - openssl: '>=3.1.3,<4.0a0' - readline: '>=8.2,<9.0a0' - tk: '>=8.6.13,<8.7.0a0' - tzdata: '*' - xz: '>=5.2.6,<6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.1.3,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata * + - xz >=5.2.6,<6.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.0-h47c9636_0_cpython.conda hash: md5: ed8ae98b1b510de68392971b9367d18c sha256: eb66f8f249caa9d5a956c3a407f079e4779d652ebfc2a4b4f50dcea078e84fa8 - optional: false - category: main build: h47c9636_0_cpython arch: aarch64 subdir: osx-arm64 @@ -5822,29 +5555,28 @@ package: license: Python-2.0 size: 13306758 timestamp: 1696322682581 -- name: python +- platform: win-64 + name: python version: 3.12.0 + category: main manager: conda - platform: win-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.43.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.3,<4.0a0' - tk: '>=8.6.13,<8.7.0a0' - tzdata: '*' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - xz: '>=5.2.6,<6.0a0' + dependencies: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libsqlite >=3.43.0,<4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata * + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xz >=5.2.6,<6.0a0 url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.0-h2628c8c_0_cpython.conda hash: md5: defd5d375853a2caff36a19d2d81a28e sha256: 90553586879bf328f2f9efb8d8faa958ecba822faf379f0a20c3461467b9b955 - optional: false - category: main build: h2628c8c_0_cpython arch: x86_64 subdir: win-64 @@ -5854,17 +5586,16 @@ package: license: Python-2.0 size: 16140836 timestamp: 1696321871976 -- name: python_abi +- platform: linux-64 + name: python_abi version: '3.12' + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda hash: md5: dccc2d142812964fcc6abdc97b672dff sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6 - optional: false - category: main build: 4_cp312 arch: x86_64 subdir: linux-64 @@ -5875,17 +5606,16 @@ package: license_family: BSD size: 6385 timestamp: 1695147396604 -- name: python_abi +- platform: osx-64 + name: python_abi version: '3.12' + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda hash: md5: 87201ac4314b911b74197e588cca3639 sha256: 82c154d95c1637604671a02a89e72f1382e89a4269265a03506496bd928f6f14 - optional: false - category: main build: 4_cp312 arch: x86_64 subdir: osx-64 @@ -5896,17 +5626,16 @@ package: license_family: BSD size: 6496 timestamp: 1695147498447 -- name: python_abi +- platform: osx-arm64 + name: python_abi version: '3.12' + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-4_cp312.conda hash: md5: bbb3a02c78b2d8219d7213f76d644a2a sha256: db25428e4f24f8693ffa39f3ff6dfbb8fd53bc298764b775b57edab1c697560f - optional: false - category: main build: 4_cp312 arch: aarch64 subdir: osx-arm64 @@ -5917,17 +5646,16 @@ package: license_family: BSD size: 6508 timestamp: 1695147497048 -- name: python_abi +- platform: win-64 + name: python_abi version: '3.12' + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-4_cp312.conda hash: md5: 17f4ccf6be9ded08bd0a376f489ac1a6 sha256: 488f8519d04b48f59bd6fde21ebe2d7a527718ff28aac86a8b53aa63658bdef6 - optional: false - category: main build: 4_cp312 arch: x86_64 subdir: win-64 @@ -5938,21 +5666,20 @@ package: license_family: BSD size: 6785 timestamp: 1695147430513 -- name: pyyaml +- platform: linux-64 + name: pyyaml version: 6.0.1 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - yaml: '>=0.2.5,<0.3.0a0' + - libgcc-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py312h98912ed_1.conda hash: md5: e3fd78d8d490af1d84763b9fe3f2e552 sha256: 7f347a10a7121b08d79d21cd4f438c07c23479ea0c74dfb89d6dc416f791bb7f - optional: false - category: main build: py312h98912ed_1 arch: x86_64 subdir: linux-64 @@ -5961,20 +5688,19 @@ package: license_family: MIT size: 196583 timestamp: 1695373632212 -- name: pyyaml +- platform: osx-64 + name: pyyaml version: 6.0.1 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - yaml: '>=0.2.5,<0.3.0a0' + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py312h104f124_1.conda hash: md5: 260ed90aaf06061edabd7209638cf03b sha256: 04aa180782cb675b960c0bf4aad439b4a7a08553c6af74d0b8e5df9a0c7cc4f4 - optional: false - category: main build: py312h104f124_1 arch: x86_64 subdir: osx-64 @@ -5983,20 +5709,19 @@ package: license_family: MIT size: 185636 timestamp: 1695373742454 -- name: pyyaml +- platform: osx-arm64 + name: pyyaml version: 6.0.1 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.12.0rc3,<3.13.0a0 *_cpython' - python_abi: 3.12.* *_cp312 - yaml: '>=0.2.5,<0.3.0a0' + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py312h02f2b3b_1.conda hash: md5: a0c843e52a1c4422d8657dd76e9eb994 sha256: b6b4027b89c17b9bbd8089aec3e44bc29f802a7d5668d5a75b5358d7ed9705ca - optional: false - category: main build: py312h02f2b3b_1 arch: aarch64 subdir: osx-arm64 @@ -6005,23 +5730,22 @@ package: license_family: MIT size: 182705 timestamp: 1695373895409 -- name: pyyaml +- platform: win-64 + name: pyyaml version: 6.0.1 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - yaml: '>=0.2.5,<0.3.0a0' + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py312he70551f_1.conda hash: md5: f91e0baa89ba21166916624ba7bfb422 sha256: a72fa8152791b4738432f270e70b3a9a4d583ef059a78aa1c62f4b4ab7b15494 - optional: false - category: main build: py312he70551f_1 arch: x86_64 subdir: win-64 @@ -6030,19 +5754,18 @@ package: license_family: MIT size: 167932 timestamp: 1695374097139 -- name: readline +- platform: linux-64 + name: readline version: '8.2' + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - ncurses: '>=6.3,<7.0a0' + - libgcc-ng >=12 + - ncurses >=6.3,<7.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda hash: md5: 47d31b792659ce70f470b5c82fdfb7a4 sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 - optional: false - category: main build: h8228510_1 arch: x86_64 subdir: linux-64 @@ -6051,18 +5774,17 @@ package: license_family: GPL size: 281456 timestamp: 1679532220005 -- name: readline +- platform: osx-64 + name: readline version: '8.2' + category: main manager: conda - platform: osx-64 dependencies: - ncurses: '>=6.3,<7.0a0' + - ncurses >=6.3,<7.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda hash: md5: f17f77f2acf4d344734bda76829ce14e sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 - optional: false - category: main build: h9e318b2_1 arch: x86_64 subdir: osx-64 @@ -6071,18 +5793,17 @@ package: license_family: GPL size: 255870 timestamp: 1679532707590 -- name: readline +- platform: osx-arm64 + name: readline version: '8.2' + category: main manager: conda - platform: osx-arm64 dependencies: - ncurses: '>=6.3,<7.0a0' + - ncurses >=6.3,<7.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda hash: md5: 8cbb776a2f641b943d413b3e19df71f4 sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 - optional: false - category: main build: h92ec313_1 arch: aarch64 subdir: osx-arm64 @@ -6091,18 +5812,17 @@ package: license_family: GPL size: 250351 timestamp: 1679532511311 -- name: rhash +- platform: linux-64 + name: rhash version: 1.4.4 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.4-hd590300_0.conda hash: md5: ec972a9a2925ac8d7a19eb9606561fff sha256: 12711d2d4a808a503c2e49b25d26ecb351435521e814c154e682dd2be71c2611 - optional: false - category: main build: hd590300_0 arch: x86_64 subdir: linux-64 @@ -6111,17 +5831,16 @@ package: license_family: MIT size: 185144 timestamp: 1693455923632 -- name: rhash +- platform: osx-64 + name: rhash version: 1.4.4 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.4-h0dc2134_0.conda hash: md5: 55a2ada70c8a208c01f77978f2783121 sha256: f1ae47e8c4e46f856faf5d8ee1e5291f55627aa93401b61a877f18ade5780c87 - optional: false - category: main build: h0dc2134_0 arch: x86_64 subdir: osx-64 @@ -6130,17 +5849,16 @@ package: license_family: MIT size: 177229 timestamp: 1693456080514 -- name: rhash +- platform: osx-arm64 + name: rhash version: 1.4.4 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.4-hb547adb_0.conda hash: md5: 710c4b1abf65b697c1d9716eba16dbb0 sha256: 3ab595e2280ed2118b6b1e8ce7e5949da2047846c81b6af1bbf5ac859d062edd - optional: false - category: main build: hb547adb_0 arch: aarch64 subdir: osx-arm64 @@ -6149,189 +5867,184 @@ package: license_family: MIT size: 177491 timestamp: 1693456037505 -- name: rust - version: 1.70.0 +- platform: linux-64 + name: rust + version: 1.73.0 + category: main manager: conda - platform: linux-64 dependencies: - gcc_impl_linux-64: '*' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - rust-std-x86_64-unknown-linux-gnu: ==1.70.0 hc1431ca_0 - url: https://conda.anaconda.org/conda-forge/linux-64/rust-1.70.0-h70c747d_0.conda + - gcc_impl_linux-64 + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - rust-std-x86_64-unknown-linux-gnu 1.73.0 hc1431ca_2 + url: https://conda.anaconda.org/conda-forge/linux-64/rust-1.73.0-h70c747d_2.conda hash: - md5: 8a2c7746d5ecd02bd24ffef161eb7df4 - sha256: 760931bd88a481b123266e7fad6c853ce226e40ee15219baa1ff823353d8c44a - optional: false - category: main - build: h70c747d_0 + md5: f8835700b42e12c4c816b5ecbc448fb6 + sha256: 783d0ceaadc33d843a05c37701766b14c2c1c795cb48deb2a204cc9c84a1edb0 + build: h70c747d_2 arch: x86_64 subdir: linux-64 - build_number: 0 + build_number: 2 license: MIT license_family: MIT - size: 205224838 - timestamp: 1685996813786 -- name: rust - version: 1.70.0 + size: 206898777 + timestamp: 1697550445950 +- platform: osx-64 + name: rust + version: 1.73.0 + category: main manager: conda - platform: osx-64 dependencies: - rust-std-x86_64-apple-darwin: ==1.70.0 h059895a_0 - url: https://conda.anaconda.org/conda-forge/osx-64/rust-1.70.0-h7e1429e_0.conda + - rust-std-x86_64-apple-darwin 1.73.0 h38e4360_2 + url: https://conda.anaconda.org/conda-forge/osx-64/rust-1.73.0-h7e1429e_2.conda hash: - md5: 4d7fc39af3d6bee1aa5a0f639f09d882 - sha256: a059f07840dd24d7604ceb7cb15a0f526a2beec84237090248181556a11ae15b - optional: false - category: main - build: h7e1429e_0 + md5: 16ba6854892d70656e2fd22eb51aaee7 + sha256: b9cc601123a48b2638c9362f2df9315441f2e80c805c6004ed67b356c508184e + build: h7e1429e_2 arch: x86_64 subdir: osx-64 - build_number: 0 + build_number: 2 license: MIT license_family: MIT - size: 189359563 - timestamp: 1685996415468 -- name: rust - version: 1.70.0 + size: 191878539 + timestamp: 1697549890091 +- platform: osx-arm64 + name: rust + version: 1.73.0 + category: main manager: conda - platform: osx-arm64 dependencies: - rust-std-aarch64-apple-darwin: ==1.70.0 hf1a8007_0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/rust-1.70.0-h4ff7c5d_0.conda + - rust-std-aarch64-apple-darwin 1.73.0 hf6ec828_2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rust-1.73.0-h4ff7c5d_2.conda hash: - md5: fdd46a8698d3ae4590206f34ad5251ae - sha256: 63b73cf3137cd2d982412ad871e032db02af932eae464a3bdb5d63604e5ef069 - optional: false - category: main - build: h4ff7c5d_0 + md5: 5f4fe89ca28ac503b45106d0d491deb4 + sha256: 9540bd6b63f8f5ac2e92d43be4013ac534b3e4f7b50129c5e3a0af325bbf49b3 + build: h4ff7c5d_2 arch: aarch64 subdir: osx-arm64 - build_number: 0 + build_number: 2 license: MIT license_family: MIT - size: 140135104 - timestamp: 1685996435209 -- name: rust - version: 1.70.0 + size: 147464113 + timestamp: 1697549843344 +- platform: win-64 + name: rust + version: 1.73.0 + category: main manager: conda - platform: win-64 dependencies: - rust-std-x86_64-pc-windows-msvc: ==1.70.0 h69312b4_0 - url: https://conda.anaconda.org/conda-forge/win-64/rust-1.70.0-hf8d6059_0.conda + - rust-std-x86_64-pc-windows-msvc 1.73.0 h17fc481_2 + url: https://conda.anaconda.org/conda-forge/win-64/rust-1.73.0-hf8d6059_2.conda hash: - md5: 01f0a71fd67b9763d72cf4540f2f6a88 - sha256: 2f6b6ed05abea7cc3b985fa4d177271bd4bcc4decb9aab1128e0f5a8c627270a - optional: false - category: main - build: hf8d6059_0 + md5: c505caa83650b22c2895952121dca677 + sha256: 273ee08ff80b8361d214aa0ad4e82fb039605f85f16deb976abe87a2de3f8eb4 + build: hf8d6059_2 arch: x86_64 subdir: win-64 - build_number: 0 + build_number: 2 license: MIT license_family: MIT - size: 188728895 - timestamp: 1685998413207 -- name: rust-std-aarch64-apple-darwin - version: 1.70.0 + size: 184611040 + timestamp: 1697553159782 +- platform: osx-arm64 + name: rust-std-aarch64-apple-darwin + version: 1.73.0 + category: main manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/rust-std-aarch64-apple-darwin-1.70.0-hf1a8007_0.conda + dependencies: + - __unix + url: https://conda.anaconda.org/conda-forge/noarch/rust-std-aarch64-apple-darwin-1.73.0-hf6ec828_2.conda hash: - md5: f944a8695fcfea2739488fc67d5653c5 - sha256: fbeee19b13f8bffe84d5a60e26a77b762693930f741ebea64a2b1c7ffa348cb8 - optional: false - category: main - build: hf1a8007_0 + md5: 3a553ecea3c9d0bea274c5a05598fcc4 + sha256: 8d471274f233bfdee731548a1902dfb119bf3017771aade447ea32392b76b848 + build: hf6ec828_2 arch: aarch64 subdir: osx-arm64 - build_number: 0 + build_number: 2 constrains: - - rust >=1.70.0,<1.70.1.0a0 + - rust >=1.73.0,<1.73.1.0a0 license: MIT license_family: MIT noarch: generic - size: 31474661 - timestamp: 1685996338546 -- name: rust-std-x86_64-apple-darwin - version: 1.70.0 + size: 30400531 + timestamp: 1697549741485 +- platform: osx-64 + name: rust-std-x86_64-apple-darwin + version: 1.73.0 + category: main manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-apple-darwin-1.70.0-h059895a_0.conda + dependencies: + - __unix + url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-apple-darwin-1.73.0-h38e4360_2.conda hash: - md5: 622ce95657da30109767978868cf47f3 - sha256: 90d71918fe1944e540370d4c8ac508cc3c367d6a5d5f39420be61e7fb03e7cf2 - optional: false - category: main - build: h059895a_0 + md5: 9f00e33b02cb9187fc3462404659f0b7 + sha256: 043510bb6107273f66be759254f8df527e1fc269be94432f6517b127869379fa + build: h38e4360_2 arch: x86_64 subdir: osx-64 - build_number: 0 + build_number: 2 constrains: - - rust >=1.70.0,<1.70.1.0a0 + - rust >=1.73.0,<1.73.1.0a0 license: MIT license_family: MIT noarch: generic - size: 32760454 - timestamp: 1685996216308 -- name: rust-std-x86_64-pc-windows-msvc - version: 1.70.0 + size: 30683166 + timestamp: 1697549706168 +- platform: win-64 + name: rust-std-x86_64-pc-windows-msvc + version: 1.73.0 + category: main manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-pc-windows-msvc-1.70.0-h69312b4_0.conda + dependencies: + - __win + url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-pc-windows-msvc-1.73.0-h17fc481_2.conda hash: - md5: e9409f3ce67330c30b1f1ea231cc76ec - sha256: 390cd31b1cdece82696b979e110471785fffe6b21ad366a4da36f2b36b595211 - optional: false - category: main - build: h69312b4_0 + md5: 74202b98c39349c3f2659c681f002120 + sha256: 1cf9517e7aa364da75d4f53ad0ed4ede6f929935a919a2a793667b83d8edd52e + build: h17fc481_2 arch: x86_64 subdir: win-64 - build_number: 0 + build_number: 2 constrains: - - rust >=1.70.0,<1.70.1.0a0 + - rust >=1.73.0,<1.73.1.0a0 license: MIT license_family: MIT noarch: generic - size: 31221168 - timestamp: 1685998013908 -- name: rust-std-x86_64-unknown-linux-gnu - version: 1.70.0 + size: 25366601 + timestamp: 1697552754897 +- platform: linux-64 + name: rust-std-x86_64-unknown-linux-gnu + version: 1.73.0 + category: main manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.70.0-hc1431ca_0.conda + dependencies: + - __unix + url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.73.0-hc1431ca_2.conda hash: - md5: a1047542eaa0926288779f5c513bc675 - sha256: aa4dff453effbb17ce1057f37151c97ebfb701f439febd9b7d7f856bb1a799f3 - optional: false - category: main - build: hc1431ca_0 + md5: 3c7425b1e6ec145e5351cf18686730a3 + sha256: 7cba48d9a296a1546c9f383a9b57d7f6134dbe15f8f20d21050fa515c1b31c47 + build: hc1431ca_2 arch: x86_64 subdir: linux-64 - build_number: 0 + build_number: 2 constrains: - - rust >=1.70.0,<1.70.1.0a0 + - rust >=1.73.0,<1.73.1.0a0 license: MIT license_family: MIT noarch: generic - size: 35115313 - timestamp: 1685996653436 -- name: setuptools + size: 33963902 + timestamp: 1697550289543 +- platform: linux-64 + name: setuptools version: 68.2.2 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda hash: md5: fc2166155db840c634a1291a5c35a709 sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -6341,18 +6054,17 @@ package: noarch: python size: 464399 timestamp: 1694548452441 -- name: setuptools +- platform: osx-64 + name: setuptools version: 68.2.2 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda hash: md5: fc2166155db840c634a1291a5c35a709 sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -6362,18 +6074,17 @@ package: noarch: python size: 464399 timestamp: 1694548452441 -- name: setuptools +- platform: osx-arm64 + name: setuptools version: 68.2.2 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda hash: md5: fc2166155db840c634a1291a5c35a709 sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -6383,18 +6094,17 @@ package: noarch: python size: 464399 timestamp: 1694548452441 -- name: setuptools +- platform: win-64 + name: setuptools version: 68.2.2 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda hash: md5: fc2166155db840c634a1291a5c35a709 sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -6404,18 +6114,17 @@ package: noarch: python size: 464399 timestamp: 1694548452441 -- name: sigtool +- platform: osx-64 + name: sigtool version: 0.1.3 + category: main manager: conda - platform: osx-64 dependencies: - openssl: '>=3.0.0,<4.0a0' + - openssl >=3.0.0,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 hash: md5: fbfb84b9de9a6939cb165c02c69b1865 sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf - optional: false - category: main build: h88f4db0_0 arch: x86_64 subdir: osx-64 @@ -6424,18 +6133,17 @@ package: license_family: MIT size: 213817 timestamp: 1643442169866 -- name: sigtool +- platform: osx-arm64 + name: sigtool version: 0.1.3 + category: main manager: conda - platform: osx-arm64 dependencies: - openssl: '>=3.0.0,<4.0a0' + - openssl >=3.0.0,<4.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 hash: md5: 4a2cac04f86a4540b8c9b8d8f597848f sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff - optional: false - category: main build: h44b9a77_0 arch: aarch64 subdir: osx-arm64 @@ -6444,18 +6152,17 @@ package: license_family: MIT size: 210264 timestamp: 1643442231687 -- name: sysroot_linux-64 +- platform: linux-64 + name: sysroot_linux-64 version: '2.12' + category: main manager: conda - platform: linux-64 dependencies: - kernel-headers_linux-64: ==2.6.32 he073ed8_16 + - kernel-headers_linux-64 ==2.6.32 he073ed8_16 url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_16.conda hash: md5: 071ea8dceff4d30ac511f4a2f8437cd1 sha256: 4c024b2eee24c6da7d3e08723111ec02665c578844c5b3e9e6b38f89000bec41 - optional: false - category: main build: he073ed8_16 arch: x86_64 subdir: linux-64 @@ -6465,18 +6172,17 @@ package: noarch: generic size: 15277813 timestamp: 1689214980563 -- name: tapi +- platform: osx-64 + name: tapi version: 1100.0.11 + category: main manager: conda - platform: osx-64 dependencies: - libcxx: '>=10.0.0.a0' + - libcxx >=10.0.0.a0 url: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 hash: md5: f9ff42ccf809a21ba6f8607f8de36108 sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa - optional: false - category: main build: h9ce4665_0 arch: x86_64 subdir: osx-64 @@ -6485,18 +6191,17 @@ package: license_family: MIT size: 201044 timestamp: 1602664232074 -- name: tapi +- platform: osx-arm64 + name: tapi version: 1100.0.11 + category: main manager: conda - platform: osx-arm64 dependencies: - libcxx: '>=11.0.0.a0' + - libcxx >=11.0.0.a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 hash: md5: d83362e7d0513f35f454bc50b0ca591d sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3 - optional: false - category: main build: he4954df_0 arch: aarch64 subdir: osx-arm64 @@ -6505,19 +6210,18 @@ package: license_family: MIT size: 191416 timestamp: 1602687595316 -- name: tk +- platform: linux-64 + name: tk version: 8.6.13 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-h2797004_0.conda hash: md5: 513336054f884f95d9fd925748f41ef3 sha256: 679e944eb93fde45d0963a22598fafacbb429bb9e7ee26009ba81c4e0c435055 - optional: false - category: main build: h2797004_0 arch: x86_64 subdir: linux-64 @@ -6526,18 +6230,17 @@ package: license_family: BSD size: 3290187 timestamp: 1695506262576 -- name: tk +- platform: osx-64 + name: tk version: 8.6.13 + category: main manager: conda - platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hef22860_0.conda hash: md5: 0c25eedcc888b6d765948ab62a18c03e sha256: 573e5d7dde0a63b06ceef2c574295cbc2ec8668ec08e35d2f2c6220f4aa7fb98 - optional: false - category: main build: hef22860_0 arch: x86_64 subdir: osx-64 @@ -6546,18 +6249,17 @@ package: license_family: BSD size: 3273909 timestamp: 1695506576288 -- name: tk +- platform: osx-arm64 + name: tk version: 8.6.13 + category: main manager: conda - platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-hb31c410_0.conda hash: md5: aa913a828b65f30ee3aba9c59bb0b514 sha256: 6df6ff49dba487eb891ddc0099642a36af2fe3929ed8023f76b745f0485c54a6 - optional: false - category: main build: hb31c410_0 arch: aarch64 subdir: osx-arm64 @@ -6566,20 +6268,19 @@ package: license_family: BSD size: 3223549 timestamp: 1695506653047 -- name: tk +- platform: win-64 + name: tk version: 8.6.13 + category: main manager: conda - platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-hcfcfb64_0.conda hash: md5: 74405f2ccbb40af409fee1a71ce70dc6 sha256: 7e42db6b5f1c5ef8d4660e6ce41b52802b6c2fdc270d5e1eccc0048d0a3f03a8 - optional: false - category: main build: hcfcfb64_0 arch: x86_64 subdir: win-64 @@ -6588,18 +6289,17 @@ package: license_family: BSD size: 3478482 timestamp: 1695506766462 -- name: tomli +- platform: linux-64 + name: tomli version: 2.0.1 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 5844808ffab9ebdb694585b50ba02a96 sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -6609,18 +6309,17 @@ package: noarch: python size: 15940 timestamp: 1644342331069 -- name: tomli +- platform: osx-64 + name: tomli version: 2.0.1 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 5844808ffab9ebdb694585b50ba02a96 sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -6630,18 +6329,17 @@ package: noarch: python size: 15940 timestamp: 1644342331069 -- name: tomli +- platform: osx-arm64 + name: tomli version: 2.0.1 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 5844808ffab9ebdb694585b50ba02a96 sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -6651,18 +6349,17 @@ package: noarch: python size: 15940 timestamp: 1644342331069 -- name: tomli +- platform: win-64 + name: tomli version: 2.0.1 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.7' + - python >=3.7 url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 5844808ffab9ebdb694585b50ba02a96 sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -6672,18 +6369,17 @@ package: noarch: python size: 15940 timestamp: 1644342331069 -- name: typing-extensions +- platform: linux-64 + name: typing-extensions version: 4.8.0 + category: main manager: conda - platform: linux-64 dependencies: - typing_extensions: ==4.8.0 pyha770c72_0 + - typing_extensions ==4.8.0 pyha770c72_0 url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda hash: md5: 384462e63262a527bda564fa2d9126c0 sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d - optional: false - category: main build: hd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -6693,18 +6389,17 @@ package: noarch: python size: 10104 timestamp: 1695040958008 -- name: typing-extensions +- platform: osx-64 + name: typing-extensions version: 4.8.0 + category: main manager: conda - platform: osx-64 dependencies: - typing_extensions: ==4.8.0 pyha770c72_0 + - typing_extensions ==4.8.0 pyha770c72_0 url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda hash: md5: 384462e63262a527bda564fa2d9126c0 sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d - optional: false - category: main build: hd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -6714,18 +6409,17 @@ package: noarch: python size: 10104 timestamp: 1695040958008 -- name: typing-extensions +- platform: osx-arm64 + name: typing-extensions version: 4.8.0 + category: main manager: conda - platform: osx-arm64 dependencies: - typing_extensions: ==4.8.0 pyha770c72_0 + - typing_extensions ==4.8.0 pyha770c72_0 url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda hash: md5: 384462e63262a527bda564fa2d9126c0 sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d - optional: false - category: main build: hd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -6735,18 +6429,17 @@ package: noarch: python size: 10104 timestamp: 1695040958008 -- name: typing-extensions +- platform: win-64 + name: typing-extensions version: 4.8.0 + category: main manager: conda - platform: win-64 dependencies: - typing_extensions: ==4.8.0 pyha770c72_0 + - typing_extensions ==4.8.0 pyha770c72_0 url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda hash: md5: 384462e63262a527bda564fa2d9126c0 sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d - optional: false - category: main build: hd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -6756,18 +6449,17 @@ package: noarch: python size: 10104 timestamp: 1695040958008 -- name: typing_extensions +- platform: linux-64 + name: typing_extensions version: 4.8.0 + category: main manager: conda - platform: linux-64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda hash: md5: 5b1be40a26d10a06f6d4f1f9e19fa0c7 sha256: 38d16b5c53ec1af845d37d22e7bb0e6c934c7f19499123507c5a470f6f8b7dde - optional: false - category: main build: pyha770c72_0 arch: x86_64 subdir: linux-64 @@ -6777,18 +6469,17 @@ package: noarch: python size: 35108 timestamp: 1695040948828 -- name: typing_extensions +- platform: osx-64 + name: typing_extensions version: 4.8.0 + category: main manager: conda - platform: osx-64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda hash: md5: 5b1be40a26d10a06f6d4f1f9e19fa0c7 sha256: 38d16b5c53ec1af845d37d22e7bb0e6c934c7f19499123507c5a470f6f8b7dde - optional: false - category: main build: pyha770c72_0 arch: x86_64 subdir: osx-64 @@ -6798,18 +6489,17 @@ package: noarch: python size: 35108 timestamp: 1695040948828 -- name: typing_extensions +- platform: osx-arm64 + name: typing_extensions version: 4.8.0 + category: main manager: conda - platform: osx-arm64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda hash: md5: 5b1be40a26d10a06f6d4f1f9e19fa0c7 sha256: 38d16b5c53ec1af845d37d22e7bb0e6c934c7f19499123507c5a470f6f8b7dde - optional: false - category: main build: pyha770c72_0 arch: aarch64 subdir: osx-arm64 @@ -6819,18 +6509,17 @@ package: noarch: python size: 35108 timestamp: 1695040948828 -- name: typing_extensions +- platform: win-64 + name: typing_extensions version: 4.8.0 + category: main manager: conda - platform: win-64 dependencies: - python: '>=3.8' + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda hash: md5: 5b1be40a26d10a06f6d4f1f9e19fa0c7 sha256: 38d16b5c53ec1af845d37d22e7bb0e6c934c7f19499123507c5a470f6f8b7dde - optional: false - category: main build: pyha770c72_0 arch: x86_64 subdir: win-64 @@ -6840,17 +6529,16 @@ package: noarch: python size: 35108 timestamp: 1695040948828 -- name: tzdata +- platform: linux-64 + name: tzdata version: 2023c + category: main manager: conda - platform: linux-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: md5: 939e3e74d8be4dac89ce83b20de2492a sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - optional: false - category: main build: h71feb2d_0 arch: x86_64 subdir: linux-64 @@ -6859,17 +6547,16 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 -- name: tzdata +- platform: osx-64 + name: tzdata version: 2023c + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: md5: 939e3e74d8be4dac89ce83b20de2492a sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - optional: false - category: main build: h71feb2d_0 arch: x86_64 subdir: osx-64 @@ -6878,17 +6565,16 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 -- name: tzdata +- platform: osx-arm64 + name: tzdata version: 2023c + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: md5: 939e3e74d8be4dac89ce83b20de2492a sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - optional: false - category: main build: h71feb2d_0 arch: aarch64 subdir: osx-arm64 @@ -6897,17 +6583,16 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 -- name: tzdata +- platform: win-64 + name: tzdata version: 2023c + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: md5: 939e3e74d8be4dac89ce83b20de2492a sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - optional: false - category: main build: h71feb2d_0 arch: x86_64 subdir: win-64 @@ -6916,17 +6601,16 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 -- name: ucrt +- platform: win-64 + name: ucrt version: 10.0.22621.0 + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 hash: md5: 72608f6cd3e5898229c3ea16deb1ac43 sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 - optional: false - category: main build: h57928b3_0 arch: x86_64 subdir: win-64 @@ -6937,22 +6621,21 @@ package: license_family: PROPRIETARY size: 1283972 timestamp: 1666630199266 -- name: ukkonen +- platform: linux-64 + name: ukkonen version: 1.0.1 + category: main manager: conda - platform: linux-64 dependencies: - cffi: '*' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 + - cffi * + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 url: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py312h8572e83_4.conda hash: md5: 52c9e25ee0a32485a102eeecdb7eef52 sha256: f9a4384d466f4d8b5b497d951329dd4407ebe02f8f93456434e9ab789d6e23ce - optional: false - category: main build: py312h8572e83_4 arch: x86_64 subdir: linux-64 @@ -6961,21 +6644,20 @@ package: license_family: MIT size: 14050 timestamp: 1695549556745 -- name: ukkonen +- platform: osx-64 + name: ukkonen version: 1.0.1 + category: main manager: conda - platform: osx-64 dependencies: - cffi: '*' - libcxx: '>=15.0.7' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 + - cffi * + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 url: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py312h49ebfd2_4.conda hash: md5: 4e6b5a8025cd8fd97b3cfe103ffce6b1 sha256: efca19a5e73e4aacfc5e90a5389272b2508e41dc4adab9eb5353c5200ba37041 - optional: false - category: main build: py312h49ebfd2_4 arch: x86_64 subdir: osx-64 @@ -6984,21 +6666,20 @@ package: license_family: MIT size: 13246 timestamp: 1695549689363 -- name: ukkonen +- platform: osx-arm64 + name: ukkonen version: 1.0.1 + category: main manager: conda - platform: osx-arm64 dependencies: - cffi: '*' - libcxx: '>=15.0.7' - python: '>=3.12.0rc3,<3.13.0a0 *_cpython' - python_abi: 3.12.* *_cp312 + - cffi * + - libcxx >=15.0.7 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 url: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py312h389731b_4.conda hash: md5: 6407429e0969b58b8717dbb4c6c15513 sha256: 7336cf66feba973207f4903c20b05c3c82e351246df4b6113f72d92b9ee55b81 - optional: false - category: main build: py312h389731b_4 arch: aarch64 subdir: osx-arm64 @@ -7007,23 +6688,22 @@ package: license_family: MIT size: 13948 timestamp: 1695549890285 -- name: ukkonen +- platform: win-64 + name: ukkonen version: 1.0.1 + category: main manager: conda - platform: win-64 dependencies: - cffi: '*' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - cffi * + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py312h0d7def4_4.conda hash: md5: 57cfbb8ce3a1800bd343bf6afba6f878 sha256: f5f7550991ca647f69b67b9188c7104a3456122611dd6a6e753cff555e45dfd9 - optional: false - category: main build: py312h0d7def4_4 arch: x86_64 subdir: win-64 @@ -7032,40 +6712,37 @@ package: license_family: MIT size: 17235 timestamp: 1695549871621 -- name: vc +- platform: win-64 + name: vc version: '14.3' + category: main manager: conda - platform: win-64 dependencies: - vc14_runtime: '>=14.36.32532' + - vc14_runtime >=14.36.32532 url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda hash: md5: 67ff6791f235bb606659bf2a5c169191 sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 - optional: false - category: main build: h64f974e_17 arch: x86_64 subdir: win-64 build_number: 17 - track_features: - - vc14 + track_features: vc14 license: BSD-3-Clause license_family: BSD size: 17176 timestamp: 1688020629925 -- name: vc14_runtime +- platform: win-64 + name: vc14_runtime version: 14.36.32532 + category: main manager: conda - platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' + - ucrt >=10.0.20348.0 url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hdcecf7f_17.conda hash: md5: d0de20f2f3fc806a81b44fcdd941aaf7 sha256: b317d49af32d5c031828e62c08d56f01d9a64cd3f40d4cccb052bc38c7a9e62e - optional: false - category: main build: hdcecf7f_17 arch: x86_64 subdir: win-64 @@ -7076,21 +6753,20 @@ package: license_family: Proprietary size: 739437 timestamp: 1694292382336 -- name: virtualenv +- platform: linux-64 + name: virtualenv version: 20.24.4 + category: main manager: conda - platform: linux-64 dependencies: - distlib: <1,>=0.3.7 - filelock: <4,>=3.12.2 - platformdirs: <4,>=3.9.1 - python: '>=3.8' + - distlib <1,>=0.3.7 + - filelock <4,>=3.12.2 + - platformdirs <4,>=3.9.1 + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda hash: md5: c3feaf947264a59a125e8c26e98c3c5a sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 @@ -7100,21 +6776,20 @@ package: noarch: python size: 3037516 timestamp: 1693423086816 -- name: virtualenv +- platform: osx-64 + name: virtualenv version: 20.24.4 + category: main manager: conda - platform: osx-64 dependencies: - distlib: <1,>=0.3.7 - filelock: <4,>=3.12.2 - platformdirs: <4,>=3.9.1 - python: '>=3.8' + - distlib <1,>=0.3.7 + - filelock <4,>=3.12.2 + - platformdirs <4,>=3.9.1 + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda hash: md5: c3feaf947264a59a125e8c26e98c3c5a sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 @@ -7124,21 +6799,20 @@ package: noarch: python size: 3037516 timestamp: 1693423086816 -- name: virtualenv +- platform: osx-arm64 + name: virtualenv version: 20.24.4 + category: main manager: conda - platform: osx-arm64 dependencies: - distlib: <1,>=0.3.7 - filelock: <4,>=3.12.2 - platformdirs: <4,>=3.9.1 - python: '>=3.8' + - distlib <1,>=0.3.7 + - filelock <4,>=3.12.2 + - platformdirs <4,>=3.9.1 + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda hash: md5: c3feaf947264a59a125e8c26e98c3c5a sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f - optional: false - category: main build: pyhd8ed1ab_0 arch: aarch64 subdir: osx-arm64 @@ -7148,21 +6822,20 @@ package: noarch: python size: 3037516 timestamp: 1693423086816 -- name: virtualenv +- platform: win-64 + name: virtualenv version: 20.24.4 + category: main manager: conda - platform: win-64 dependencies: - distlib: <1,>=0.3.7 - filelock: <4,>=3.12.2 - platformdirs: <4,>=3.9.1 - python: '>=3.8' + - distlib <1,>=0.3.7 + - filelock <4,>=3.12.2 + - platformdirs <4,>=3.9.1 + - python >=3.8 url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda hash: md5: c3feaf947264a59a125e8c26e98c3c5a sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f - optional: false - category: main build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 @@ -7172,18 +6845,17 @@ package: noarch: python size: 3037516 timestamp: 1693423086816 -- name: vs2015_runtime +- platform: win-64 + name: vs2015_runtime version: 14.36.32532 + category: main manager: conda - platform: win-64 dependencies: - vc14_runtime: '>=14.36.32532' + - vc14_runtime >=14.36.32532 url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda hash: md5: 4618046c39f7c81861e53ded842e738a sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 - optional: false - category: main build: h05e6639_17 arch: x86_64 subdir: win-64 @@ -7192,39 +6864,36 @@ package: license_family: BSD size: 17207 timestamp: 1688020635322 -- name: vs2019_win-64 +- platform: win-64 + name: vs2019_win-64 version: 19.29.30139 + category: main manager: conda - platform: win-64 dependencies: - vswhere: '*' + - vswhere * url: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_17.conda hash: md5: 6351cac64b43c84c64bb6fe646d6acfe sha256: 48ae2875083ef9e0b4dc2a3045154a4197e67f948dec44ae02c5348960445b93 - optional: false - category: main build: he1865b1_17 arch: x86_64 subdir: win-64 build_number: 17 - track_features: - - vc14 + track_features: vc14 license: BSD-3-Clause license_family: BSD size: 19812 timestamp: 1688020390940 -- name: vswhere +- platform: win-64 + name: vswhere version: 3.1.4 + category: main manager: conda - platform: win-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.4-h57928b3_0.conda hash: md5: b1d1d6a1f874d8c93a57b5efece52f03 sha256: 553c41fc1a883415a39444313f8d99236685529776fdd04e8d97288b73496002 - optional: false - category: main build: h57928b3_0 arch: x86_64 subdir: win-64 @@ -7233,18 +6902,17 @@ package: license_family: MIT size: 218421 timestamp: 1682376911339 -- name: xz +- platform: linux-64 + name: xz version: 5.2.6 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' + - libgcc-ng >=12 url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 hash: md5: 2161070d867d1b1204ea749c8eec4ef0 sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - optional: false - category: main build: h166bdaf_0 arch: x86_64 subdir: linux-64 @@ -7252,17 +6920,16 @@ package: license: LGPL-2.1 and GPL-2.0 size: 418368 timestamp: 1660346797927 -- name: xz +- platform: osx-64 + name: xz version: 5.2.6 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 hash: md5: a72f9d4ea13d55d745ff1ed594747f10 sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 - optional: false - category: main build: h775f41a_0 arch: x86_64 subdir: osx-64 @@ -7270,17 +6937,16 @@ package: license: LGPL-2.1 and GPL-2.0 size: 238119 timestamp: 1660346964847 -- name: xz +- platform: osx-arm64 + name: xz version: 5.2.6 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 hash: md5: 39c6b54e94014701dd157f4f576ed211 sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - optional: false - category: main build: h57fd34a_0 arch: aarch64 subdir: osx-arm64 @@ -7288,19 +6954,18 @@ package: license: LGPL-2.1 and GPL-2.0 size: 235693 timestamp: 1660346961024 -- name: xz +- platform: win-64 + name: xz version: 5.2.6 + category: main manager: conda - platform: win-64 dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 hash: md5: 515d77642eaa3639413c6b1bc3f94219 sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 - optional: false - category: main build: h8d14728_0 arch: x86_64 subdir: win-64 @@ -7308,18 +6973,17 @@ package: license: LGPL-2.1 and GPL-2.0 size: 217804 timestamp: 1660346976440 -- name: yaml +- platform: linux-64 + name: yaml version: 0.2.5 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' + - libgcc-ng >=9.4.0 url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 - optional: false - category: main build: h7f98852_2 arch: x86_64 subdir: linux-64 @@ -7328,17 +6992,16 @@ package: license_family: MIT size: 89141 timestamp: 1641346969816 -- name: yaml +- platform: osx-64 + name: yaml version: 0.2.5 + category: main manager: conda - platform: osx-64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 hash: md5: d7e08fcf8259d742156188e8762b4d20 sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 - optional: false - category: main build: h0d85af4_2 arch: x86_64 subdir: osx-64 @@ -7347,17 +7010,16 @@ package: license_family: MIT size: 84237 timestamp: 1641347062780 -- name: yaml +- platform: osx-arm64 + name: yaml version: 0.2.5 + category: main manager: conda - platform: osx-arm64 - dependencies: {} + dependencies: [] url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 hash: md5: 4bb3f014845110883a3c5ee811fd84b4 sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 - optional: false - category: main build: h3422bc3_2 arch: aarch64 subdir: osx-arm64 @@ -7366,19 +7028,18 @@ package: license_family: MIT size: 88016 timestamp: 1641347076660 -- name: yaml +- platform: win-64 + name: yaml version: 0.2.5 + category: main manager: conda - platform: win-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 - optional: false - category: main build: h8ffe710_2 arch: x86_64 subdir: win-64 @@ -7387,18 +7048,17 @@ package: license_family: MIT size: 63274 timestamp: 1641347623319 -- name: zlib +- platform: osx-64 + name: zlib version: 1.2.13 + category: main manager: conda - platform: osx-64 dependencies: - libzlib: ==1.2.13 h8a1eda9_5 + - libzlib ==1.2.13 h8a1eda9_5 url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda hash: md5: 75a8a98b1c4671c5d2897975731da42d sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 - optional: false - category: main build: h8a1eda9_5 arch: x86_64 subdir: osx-64 @@ -7407,18 +7067,17 @@ package: license_family: Other size: 90764 timestamp: 1686575574678 -- name: zlib +- platform: osx-arm64 + name: zlib version: 1.2.13 + category: main manager: conda - platform: osx-arm64 dependencies: - libzlib: ==1.2.13 h53f4e23_5 + - libzlib ==1.2.13 h53f4e23_5 url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda hash: md5: a08383f223b10b71492d27566fafbf6c sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe - optional: false - category: main build: h53f4e23_5 arch: aarch64 subdir: osx-arm64 @@ -7427,22 +7086,21 @@ package: license_family: Other size: 79577 timestamp: 1686575471024 -- name: zstandard +- platform: linux-64 + name: zstandard version: 0.21.0 + category: main manager: conda - platform: linux-64 dependencies: - cffi: '>=1.11' - libgcc-ng: '>=12' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - zstd: '>=1.5.5,<1.6.0a0' + - cffi >=1.11 + - libgcc-ng >=12 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.21.0-py312hd58854c_1.conda hash: md5: da2ad0b62287fd1725d72f65ed82dda6 sha256: 546a5dccf9555d02cdf757635c738b6e5b5dff2ad25016ea4f96cf073cd81ed4 - optional: false - category: main build: py312hd58854c_1 arch: x86_64 subdir: linux-64 @@ -7451,21 +7109,20 @@ package: license_family: BSD size: 414231 timestamp: 1695403201269 -- name: zstandard +- platform: osx-64 + name: zstandard version: 0.21.0 + category: main manager: conda - platform: osx-64 dependencies: - cffi: '>=1.11' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - zstd: '>=1.5.5,<1.6.0a0' + - cffi >=1.11 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.21.0-py312hac425b3_1.conda hash: md5: d40e972cfcaa9e86832ae3de69a55759 sha256: 653e038221cf4e951f78f9191797697720a4ac59c2ec60c17ea55fbbd27de2c5 - optional: false - category: main build: py312hac425b3_1 arch: x86_64 subdir: osx-64 @@ -7474,21 +7131,20 @@ package: license_family: BSD size: 419626 timestamp: 1695403309136 -- name: zstandard +- platform: osx-arm64 + name: zstandard version: 0.21.0 + category: main manager: conda - platform: osx-arm64 dependencies: - cffi: '>=1.11' - python: '>=3.12.0rc3,<3.13.0a0 *_cpython' - python_abi: 3.12.* *_cp312 - zstd: '>=1.5.5,<1.6.0a0' + - cffi >=1.11 + - python >=3.12.0rc3,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.21.0-py312ha7e2508_1.conda hash: md5: 7266c4f8b1a0581a37483612dd8e7c3b sha256: 822d89503d3dd647875f6bdc5308e023c6210081e59d09bb5dc1061c335ba6e8 - optional: false - category: main build: py312ha7e2508_1 arch: aarch64 subdir: osx-arm64 @@ -7497,24 +7153,23 @@ package: license_family: BSD size: 340485 timestamp: 1695403503774 -- name: zstandard +- platform: win-64 + name: zstandard version: 0.21.0 + category: main manager: conda - platform: win-64 dependencies: - cffi: '>=1.11' - python: '>=3.12.0rc3,<3.13.0a0' - python_abi: 3.12.* *_cp312 - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - zstd: '>=1.5.5,<1.6.0a0' + - cffi >=1.11 + - python >=3.12.0rc3,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.21.0-py312h01d794b_1.conda hash: md5: 67c3359d33972dbdb1716a828c93634f sha256: 65cec27c19f1d2f0c6d84219b95a4ab1b91957beeefa00d26a753a8b6faeadf3 - optional: false - category: main build: py312h01d794b_1 arch: x86_64 subdir: win-64 @@ -7523,20 +7178,19 @@ package: license_family: BSD size: 322884 timestamp: 1695403429717 -- name: zstd +- platform: linux-64 + name: zstd version: 1.5.5 + category: main manager: conda - platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda hash: md5: 04b88013080254850d6c01ed54810589 sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 - optional: false - category: main build: hfc55251_0 arch: x86_64 subdir: linux-64 @@ -7545,18 +7199,17 @@ package: license_family: BSD size: 545199 timestamp: 1693151163452 -- name: zstd +- platform: osx-64 + name: zstd version: 1.5.5 + category: main manager: conda - platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda hash: md5: 80abc41d0c48b82fe0f04e7f42f5cb7e sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c - optional: false - category: main build: h829000d_0 arch: x86_64 subdir: osx-64 @@ -7565,18 +7218,17 @@ package: license_family: BSD size: 499383 timestamp: 1693151312586 -- name: zstd +- platform: osx-arm64 + name: zstd version: 1.5.5 + category: main manager: conda - platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + - libzlib >=1.2.13,<1.3.0a0 url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda hash: md5: 5b212cfb7f9d71d603ad891879dc7933 sha256: 7e1fe6057628bbb56849a6741455bbb88705bae6d6646257e57904ac5ee5a481 - optional: false - category: main build: h4f39d0f_0 arch: aarch64 subdir: osx-arm64 @@ -7585,21 +7237,20 @@ package: license_family: BSD size: 400508 timestamp: 1693151393180 -- name: zstd +- platform: win-64 + name: zstd version: 1.5.5 + category: main manager: conda - platform: win-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda hash: md5: 792bb5da68bf0a6cac6a6072ecb8dbeb sha256: d540dd56c5ec772b60e4ce7d45f67f01c6614942225885911964ea1e70bb99e3 - optional: false - category: main build: h12be248_0 arch: x86_64 subdir: win-64 @@ -7608,4 +7259,3 @@ package: license_family: BSD size: 343428 timestamp: 1693151615801 -version: 1 diff --git a/pixi.toml b/pixi.toml index 84743ddec..b6d629ca0 100644 --- a/pixi.toml +++ b/pixi.toml @@ -15,7 +15,7 @@ lint = "pre-commit run --all" [dependencies] openssl = "3.*" -rust = "1.70.0.*" +rust = "1.73.0.*" pre-commit = "3.3.3.*" compilers = "1.6.0.*" libssh2 = "1.11.0.*" diff --git a/rust-toolchain b/rust-toolchain index 832e9afb6..5e3a42566 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.70.0 +1.73.0