diff --git a/.github/workflows/auto_release_crates.yml b/.github/workflows/auto_release_crates.yml index 0e73b9c6bc30..a1b7d814ff89 100644 --- a/.github/workflows/auto_release_crates.yml +++ b/.github/workflows/auto_release_crates.yml @@ -22,7 +22,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Install dependencies shell: bash diff --git a/.github/workflows/contrib_checks.yml b/.github/workflows/contrib_checks.yml index 46cf95ca72d0..74d6d97b8594 100644 --- a/.github/workflows/contrib_checks.yml +++ b/.github/workflows/contrib_checks.yml @@ -86,7 +86,7 @@ jobs: name: Check if running codegen would produce any changes runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: # Note: We explicitly don't override `ref` here. We need to see if changes would be made # in a context where we have merged with main. Otherwise we might miss changes such as one @@ -101,7 +101,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Codegen check shell: bash @@ -112,7 +112,7 @@ jobs: name: Rust lints (fmt, check, cranky, tests, doc) runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 @@ -183,7 +183,7 @@ jobs: name: Check Rust web build (wasm32 + wasm-bindgen) runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 @@ -212,7 +212,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - run: pixi run lint-taplo shell: bash @@ -268,7 +268,7 @@ jobs: name: Cargo Deny runs-on: ubuntu-latest container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 @@ -294,13 +294,13 @@ jobs: name: C++ tests runs-on: ubuntu-latest container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 # TODO(emilk): make this work somehow. Right now this just results in # > Compiler: GNU 12.3.0 (/__w/rerun/rerun/.pixi/env/bin/x86_64-conda-linux-gnu-c++) diff --git a/.github/workflows/contrib_rerun_py.yml b/.github/workflows/contrib_rerun_py.yml index f0b7b1517c68..e0f0d65224c1 100644 --- a/.github/workflows/contrib_rerun_py.yml +++ b/.github/workflows/contrib_rerun_py.yml @@ -36,13 +36,13 @@ jobs: name: Build Wheels runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 # These should already be in the docker container, but run for good measure. A no-op install # should be fast, and this way things don't break if we add new packages without rebuilding diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 22c1365da432..5e25573628e2 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -53,8 +53,8 @@ jobs: uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: CONCURRENCY: nightly-linux - PLATFORM: linux - WHEEL_ARTIFACT_NAME: linux-wheel + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: linux-x64-wheel MODE: "pr" secrets: inherit @@ -65,7 +65,7 @@ jobs: with: CONCURRENCY: nightly CHANNEL: nightly - WHEEL_ARTIFACT_NAME: linux-wheel + WHEEL_ARTIFACT_NAME: linux-x64-wheel secrets: inherit upload-examples: diff --git a/.github/workflows/on_pull_request.yml b/.github/workflows/on_pull_request.yml index 652f69707afe..451fd6a47f43 100644 --- a/.github/workflows/on_pull_request.yml +++ b/.github/workflows/on_pull_request.yml @@ -76,6 +76,8 @@ jobs: FULL: "true" secrets: inherit + # Build and test a single wheel to limit CI cost. We use linux-x64 because it's fast. linux-arm64 would also be a good + # choice, but reusable_test_wheels.yml is broken for that target (https://github.com/rerun-io/rerun/issues/5525) min-wheel-build: name: "Minimum Wheel Build" if: github.event.pull_request.head.repo.owner.login == 'rerun-io' @@ -83,8 +85,8 @@ jobs: with: CONCURRENCY: pr-${{ github.event.pull_request.number }} MODE: "pr" - PLATFORM: linux - WHEEL_ARTIFACT_NAME: "linux-wheel-fast" + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: "linux-x64-wheel-fast" secrets: inherit min-wheel-test: @@ -94,8 +96,8 @@ jobs: uses: ./.github/workflows/reusable_test_wheels.yml with: CONCURRENCY: pr-${{ github.event.pull_request.number }} - PLATFORM: linux - WHEEL_ARTIFACT_NAME: "linux-wheel-fast" + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: "linux-x64-wheel-fast" secrets: inherit build-js: @@ -133,7 +135,7 @@ jobs: with: CONCURRENCY: pr-${{ github.event.pull_request.number }} CHANNEL: main - WHEEL_ARTIFACT_NAME: linux-wheel-fast + WHEEL_ARTIFACT_NAME: linux-x64-wheel-fast secrets: inherit track-sizes: @@ -163,7 +165,7 @@ jobs: uses: ./.github/workflows/reusable_run_notebook.yml with: CONCURRENCY: pr-${{ github.event.pull_request.number }} - WHEEL_ARTIFACT_NAME: linux-wheel-fast + WHEEL_ARTIFACT_NAME: linux-x64-wheel-fast secrets: inherit save-pr-summary: diff --git a/.github/workflows/on_push_main.yml b/.github/workflows/on_push_main.yml index 9e29139a2863..da7500ae4568 100644 --- a/.github/workflows/on_push_main.yml +++ b/.github/workflows/on_push_main.yml @@ -209,78 +209,90 @@ jobs: # ----------------------------------------------------------------------------------- - build-wheel-linux: + build-wheel-linux-arm64: needs: [checks] - name: "Linux: Build & Upload Wheels" + name: "Linux-arm64: Build & Upload Wheels" uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: push-linux-${{ github.ref_name }} - PLATFORM: linux - WHEEL_ARTIFACT_NAME: linux-wheel + CONCURRENCY: push-linux-arm64-${{ github.ref_name }} + PLATFORM: linux-arm64 + WHEEL_ARTIFACT_NAME: linux-arm64-wheel + MODE: "pypi" + secrets: inherit + + build-wheel-linux-x64: + needs: [checks] + name: "Linux-x64: Build & Upload Wheels" + uses: ./.github/workflows/reusable_build_and_upload_wheels.yml + with: + CONCURRENCY: push-linux-x64-${{ github.ref_name }} + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: linux-x64-wheel MODE: "pypi" secrets: inherit - build-wheel-windows: + build-wheel-windows-x64: needs: [checks] - name: "Windows: Build & Upload Wheels" + name: "Windows-x64: Build & Upload Wheels" uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: push-windows-${{ github.ref_name }} - PLATFORM: windows - WHEEL_ARTIFACT_NAME: windows-wheel + CONCURRENCY: push-windows-x64-${{ github.ref_name }} + PLATFORM: windows-x64 + WHEEL_ARTIFACT_NAME: windows-x64-wheel MODE: "pypi" secrets: inherit - build-wheel-macos-arm: + build-wheel-macos-arm64: needs: [checks] - name: "Macos-Arm: Build & Upload Wheels" + name: "Macos-arm64: Build & Upload Wheels" uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: push-macos-arm-${{ github.ref_name }} - PLATFORM: macos-arm - WHEEL_ARTIFACT_NAME: macos-arm-wheel + CONCURRENCY: push-macos-arm64-${{ github.ref_name }} + PLATFORM: macos-arm64 + WHEEL_ARTIFACT_NAME: macos-arm64-wheel MODE: "pypi" secrets: inherit - build-wheel-macos-intel: + build-wheel-macos-x64: needs: [checks] - name: "Macos-Intel: Build & Upload Wheels" + name: "Macos-x64: Build & Upload Wheels" uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: push-macos-intel-${{ github.ref_name }} - PLATFORM: macos-intel - WHEEL_ARTIFACT_NAME: "macos-intel-wheel" + CONCURRENCY: push-macos-x64-${{ github.ref_name }} + PLATFORM: macos-x64 + WHEEL_ARTIFACT_NAME: "macos-x64-wheel" MODE: "pypi" secrets: inherit - test-wheel-linux: - needs: [checks, build-wheel-linux] - name: "Linux: Test Wheels" + test-wheel-linux-x64: + needs: [checks, build-wheel-linux-x64] + name: "Linux-x64: Test Wheels" uses: ./.github/workflows/reusable_test_wheels.yml with: - CONCURRENCY: push-linux-${{ github.ref_name }} - PLATFORM: linux - WHEEL_ARTIFACT_NAME: linux-wheel + CONCURRENCY: push-linux-x64-${{ github.ref_name }} + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: linux-x64-wheel secrets: inherit - test-wheel-windows: - needs: [checks, build-wheel-windows] - name: "Windows: Test Wheels" + test-wheel-windows-x64: + needs: [checks, build-wheel-windows-x64] + name: "Windows-x64: Test Wheels" uses: ./.github/workflows/reusable_test_wheels.yml with: - CONCURRENCY: push-windows-${{ github.ref_name }} - PLATFORM: windows - WHEEL_ARTIFACT_NAME: windows-wheel + CONCURRENCY: push-windows-x64-${{ github.ref_name }} + PLATFORM: windows-x64 + WHEEL_ARTIFACT_NAME: windows-x64-wheel secrets: inherit generate-pip-index: name: "Generate Pip Index" needs: [ - build-wheel-linux, - build-wheel-windows, - build-wheel-macos-arm, - build-wheel-macos-intel, + build-wheel-linux-arm64, + build-wheel-linux-x64, + build-wheel-macos-arm64, + build-wheel-macos-x64, + build-wheel-windows-x64, ] uses: ./.github/workflows/reusable_pip_index.yml with: @@ -291,10 +303,10 @@ jobs: name: "Bundle and upload rerun_cpp_sdk.zip" needs: [ - build-rerun_c-and-upload-linux-x64, build-rerun_c-and-upload-linux-arm64, - build-rerun_c-and-upload-macos-x64, + build-rerun_c-and-upload-linux-x64, build-rerun_c-and-upload-macos-arm64, + build-rerun_c-and-upload-macos-x64, build-rerun_c-and-upload-windows-x64, ] uses: ./.github/workflows/reusable_bundle_and_upload_rerun_cpp.yml @@ -307,19 +319,19 @@ jobs: cancel-in-progress: true needs: [ - upload-web, - generate-pip-index, - build-rerun_c-and-upload-linux-x64, - build-rerun_c-and-upload-linux-arm64, - build-rerun_c-and-upload-macos-x64, - build-rerun_c-and-upload-macos-arm64, - build-rerun_c-and-upload-windows-x64, - build-rerun-cli-and-upload-linux-x64, build-rerun-cli-and-upload-linux-arm64, - build-rerun-cli-and-upload-macos-x64, + build-rerun-cli-and-upload-linux-x64, build-rerun-cli-and-upload-macos-arm64, + build-rerun-cli-and-upload-macos-x64, build-rerun-cli-and-upload-windows-x64, + build-rerun_c-and-upload-linux-arm64, + build-rerun_c-and-upload-linux-x64, + build-rerun_c-and-upload-macos-arm64, + build-rerun_c-and-upload-macos-x64, + build-rerun_c-and-upload-windows-x64, bundle-and-upload-rerun_cpp, + generate-pip-index, + upload-web, ] runs-on: "ubuntu-latest" steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3404cf7663e0..c75eeddc2c1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -90,7 +90,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Update crate versions id: versioning @@ -391,7 +391,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Install dependencies shell: bash diff --git a/.github/workflows/reusable_bench.yml b/.github/workflows/reusable_bench.yml index ccfb154c880d..7c6885a4c65b 100644 --- a/.github/workflows/reusable_bench.yml +++ b/.github/workflows/reusable_bench.yml @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/reusable_build_and_upload_rerun_c.yml b/.github/workflows/reusable_build_and_upload_rerun_c.yml index ffb07202f703..04b2403ddd7e 100644 --- a/.github/workflows/reusable_build_and_upload_rerun_c.yml +++ b/.github/workflows/reusable_build_and_upload_rerun_c.yml @@ -76,13 +76,13 @@ jobs: linux-arm64) runner="buildjet-8vcpu-ubuntu-2204-arm" target="aarch64-unknown-linux-gnu" - container="null" + container="{'image': 'rerunio/ci_docker:0.12.0'}" lib_name="librerun_c.a" ;; linux-x64) runner="ubuntu-latest-16-cores" target="x86_64-unknown-linux-gnu" - container="{'image': 'rerunio/ci_docker:0.11.0'}" + container="{'image': 'rerunio/ci_docker:0.12.0'}" lib_name="librerun_c.a" ;; windows-x64) @@ -112,9 +112,12 @@ jobs: rs-build-rerun_c: name: Build rerun_c (${{ needs.set-config.outputs.RUNNER }}) + needs: [set-config] + runs-on: ${{ needs.set-config.outputs.RUNNER }} container: ${{ fromJson(needs.set-config.outputs.CONTAINER) }} + steps: - name: Show context shell: bash @@ -133,7 +136,7 @@ jobs: with: ref: ${{ inputs.RELEASE_COMMIT || ((github.event_name == 'pull_request' && github.event.pull_request.head.ref) || '') }} - - name: Set up Rust + - name: Set up Rust and Authenticate to GCS uses: ./.github/actions/setup-rust with: cache_key: "build-${{ inputs.PLATFORM }}" @@ -148,12 +151,6 @@ jobs: command: build args: --locked -p rerun_c --release --target ${{ needs.set-config.outputs.TARGET }} - - id: "auth" - uses: google-github-actions/auth@v1 - with: - workload_identity_provider: ${{ secrets.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }} - service_account: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} - - name: Get sha id: get-sha shell: bash diff --git a/.github/workflows/reusable_build_and_upload_rerun_cli.yml b/.github/workflows/reusable_build_and_upload_rerun_cli.yml index 3c73ab51c177..056670dd6eef 100644 --- a/.github/workflows/reusable_build_and_upload_rerun_cli.yml +++ b/.github/workflows/reusable_build_and_upload_rerun_cli.yml @@ -75,15 +75,15 @@ jobs: run: | case "${{ inputs.PLATFORM }}" in linux-arm64) - runner="buildjet-8vcpu-ubuntu-2204-arm" - target="aarch64-unknown-linux-gnu" - container="null" - bin_name="rerun" - ;; + runner="buildjet-8vcpu-ubuntu-2204-arm" + target="aarch64-unknown-linux-gnu" + container="{'image': 'rerunio/ci_docker:0.12.0'}" + bin_name="rerun" + ;; linux-x64) runner="ubuntu-latest-16-cores" target="x86_64-unknown-linux-gnu" - container="{'image': 'rerunio/ci_docker:0.11.0'}" + container="{'image': 'rerunio/ci_docker:0.12.0'}" bin_name="rerun" ;; windows-x64) @@ -137,7 +137,7 @@ jobs: with: ref: ${{ inputs.RELEASE_COMMIT || ((github.event_name == 'pull_request' && github.event.pull_request.head.ref) || '') }} - - name: Set up Rust + - name: Set up Rust and Authenticate to GCS uses: ./.github/actions/setup-rust with: cache_key: "build-${{ inputs.PLATFORM }}" @@ -147,24 +147,14 @@ jobs: targets: ${{ needs.set-config.outputs.TARGET }} - uses: prefix-dev/setup-pixi@v0.4.1 - if: ${{ inputs.PLATFORM != 'linux-arm64' }} # TODO(#5507): see below with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Build web-viewer (release) - if: ${{ inputs.PLATFORM != 'linux-arm64' }} # TODO(#5507): see below shell: bash run: | pixi run cargo run --locked -p re_build_web_viewer -- --release - # TODO(#5507): supress this workaround when pixi dependencies are available on linux-arm64 - - name: Build web-viewer (release, Linux ARM64) - if: ${{ inputs.PLATFORM == 'linux-arm64' }} - shell: bash - run: | - sudo apt-get install binaryen - cargo run --locked -p re_build_web_viewer -- --release - # This does not run in the pixi environment, doing so # causes it to select the wrong compiler on macos-arm64 - name: Build rerun-cli @@ -181,12 +171,6 @@ jobs: --release \ --target ${{ needs.set-config.outputs.TARGET }} - - id: "auth" - uses: google-github-actions/auth@v1 - with: - workload_identity_provider: ${{ secrets.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }} - service_account: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} - - name: Get sha id: get-sha shell: bash diff --git a/.github/workflows/reusable_build_and_upload_wheels.yml b/.github/workflows/reusable_build_and_upload_wheels.yml index 137e39c9895c..f5dee2423b65 100644 --- a/.github/workflows/reusable_build_and_upload_wheels.yml +++ b/.github/workflows/reusable_build_and_upload_wheels.yml @@ -86,42 +86,54 @@ jobs: set-config: name: Set Config (${{ inputs.PLATFORM }}) - runs-on: ubuntu-latest-16-cores + runs-on: ubuntu-latest outputs: RUNNER: ${{ steps.set-config.outputs.runner }} TARGET: ${{ steps.set-config.outputs.target }} CONTAINER: ${{ steps.set-config.outputs.container }} + COMPAT: ${{ steps.set-config.outputs.compat }} steps: - name: Set runner and target based on platform id: set-config shell: bash run: | case "${{ inputs.PLATFORM }}" in - linux) + linux-arm64) + runner="buildjet-8vcpu-ubuntu-2204-arm" + target="aarch64-unknown-linux-gnu" + container="{'image': 'rerunio/ci_docker:0.12.0'}" + compat="manylinux_2_31" + ;; + linux-x64) runner="ubuntu-latest-16-cores" target="x86_64-unknown-linux-gnu" - container="{'image': 'rerunio/ci_docker:0.11.0'}" + compat="manylinux_2_31" + container="{'image': 'rerunio/ci_docker:0.12.0'}" ;; - windows) + windows-x64) runner="windows-latest-8-cores" target="x86_64-pc-windows-msvc" container="null" + compat="manylinux_2_31" ;; - macos-arm) + macos-arm64) runner="macos-latest-large" # See https://github.blog/2023-10-02-introducing-the-new-apple-silicon-powered-m1-macos-larger-runner-for-github-actions/ target="aarch64-apple-darwin" container="null" + compat="manylinux_2_31" ;; - macos-intel) + macos-x64) runner="macos-latest-large" # See https://github.blog/2023-10-02-introducing-the-new-apple-silicon-powered-m1-macos-larger-runner-for-github-actions/ target="x86_64-apple-darwin" container="null" + compat="manylinux_2_31" ;; *) echo "Invalid platform" && exit 1 ;; esac echo "runner=$runner" >> "$GITHUB_OUTPUT" echo "target=$target" >> "$GITHUB_OUTPUT" echo "container=$container" >> "$GITHUB_OUTPUT" + echo "compat=$compat" >> "$GITHUB_OUTPUT" # --------------------------------------------------------------------------- @@ -151,7 +163,7 @@ jobs: with: ref: ${{ inputs.RELEASE_COMMIT || ((github.event_name == 'pull_request' && github.event.pull_request.head.ref) || '') }} - - name: Set up Rust + - name: Set up Rust and Authenticate to GCS uses: ./.github/actions/setup-rust with: cache_key: "build-${{ inputs.PLATFORM }}" @@ -159,10 +171,11 @@ jobs: save_cache: false workload_identity_provider: ${{ secrets.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} + targets: ${{ needs.set-config.outputs.TARGET }} - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Install dependencies shell: bash @@ -185,7 +198,7 @@ jobs: --mode ${{ inputs.MODE }} \ --target ${{ needs.set-config.outputs.TARGET }} \ --dir commit/${{ steps.get-sha.outputs.sha }}/wheels \ - --compat manylinux_2_31 + --compat ${{ needs.set-config.outputs.COMPAT }} - name: Save wheel artifact if: ${{ inputs.WHEEL_ARTIFACT_NAME != '' }} diff --git a/.github/workflows/reusable_build_examples.yml b/.github/workflows/reusable_build_examples.yml index 2aa2df31bdd6..108dde0ed807 100644 --- a/.github/workflows/reusable_build_examples.yml +++ b/.github/workflows/reusable_build_examples.yml @@ -50,7 +50,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Download Wheel uses: actions/download-artifact@v3 diff --git a/.github/workflows/reusable_build_js.yml b/.github/workflows/reusable_build_js.yml index 2ccad2fb1f84..b64f2e356a5b 100644 --- a/.github/workflows/reusable_build_js.yml +++ b/.github/workflows/reusable_build_js.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 @@ -55,7 +55,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.3.0 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Install dependencies shell: bash diff --git a/.github/workflows/reusable_build_web.yml b/.github/workflows/reusable_build_web.yml index 85363ba2c934..622561dd96c7 100644 --- a/.github/workflows/reusable_build_web.yml +++ b/.github/workflows/reusable_build_web.yml @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 @@ -55,7 +55,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Build web-viewer (release) shell: bash @@ -63,7 +63,7 @@ jobs: if [ ${{ inputs.CHANNEL }} = "nightly" ]; then export DEFAULT_EXAMPLES_MANIFEST_URL="https://app.rerun.io/version/nightly/examples_manifest.json" fi - cargo run --locked -p re_build_web_viewer -- --release + pixi run cargo run --locked -p re_build_web_viewer -- --release # We build a single manifest pointing to the `commit` # All the `pr`, `main`, release tag, etc. variants will always just point to the resolved commit diff --git a/.github/workflows/reusable_bundle_and_upload_rerun_cpp.yml b/.github/workflows/reusable_bundle_and_upload_rerun_cpp.yml index 2eb69d79e16e..33df3acec442 100644 --- a/.github/workflows/reusable_bundle_and_upload_rerun_cpp.yml +++ b/.github/workflows/reusable_bundle_and_upload_rerun_cpp.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest # Need container for arrow dependency. container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - name: Checkout repository diff --git a/.github/workflows/reusable_checks.yml b/.github/workflows/reusable_checks.yml index e0681fcca58f..823dc755da7c 100644 --- a/.github/workflows/reusable_checks.yml +++ b/.github/workflows/reusable_checks.yml @@ -102,7 +102,7 @@ jobs: name: Check if running codegen would produce any changes runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 env: RUSTC_WRAPPER: "sccache" steps: @@ -127,7 +127,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Codegen check shell: bash @@ -208,7 +208,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: prettier --check run: pixi run misc-fmt-check diff --git a/.github/workflows/reusable_checks_cpp.yml b/.github/workflows/reusable_checks_cpp.yml index ab01d5279e1e..d98471e91e36 100644 --- a/.github/workflows/reusable_checks_cpp.yml +++ b/.github/workflows/reusable_checks_cpp.yml @@ -73,7 +73,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Set up Rust uses: ./.github/actions/setup-rust diff --git a/.github/workflows/reusable_checks_rust.yml b/.github/workflows/reusable_checks_rust.yml index 42a2fcc4b1ae..3b4ce9353576 100644 --- a/.github/workflows/reusable_checks_rust.yml +++ b/.github/workflows/reusable_checks_rust.yml @@ -39,7 +39,7 @@ jobs: name: Rust lints (fmt, check, cranky, tests, doc) runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 env: RUSTC_WRAPPER: "sccache" steps: @@ -55,13 +55,16 @@ jobs: workload_identity_provider: ${{ secrets.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} + - uses: prefix-dev/setup-pixi@v0.4.1 + with: + pixi-version: v0.16.1 + # We need to build the web viewer for `rust_checks.py` to succeed. + # We build in release so that we can reuse the results for actual publishing, if necessary - name: Build web-viewer (release) - uses: actions-rs/cargo@v1 - with: - command: run - # We build in release so that we can reuse the results for actual publishing, if necessary - args: --locked -p re_build_web_viewer -- --release + shell: bash + run: | + pixi run cargo run --locked -p re_build_web_viewer -- --release - name: Rust checks & tests if: ${{ !inputs.ALL_CHECKS }} @@ -77,7 +80,7 @@ jobs: name: Check Rust web build (wasm32 + wasm-bindgen) runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 env: RUSTC_WRAPPER: "sccache" steps: @@ -103,12 +106,15 @@ jobs: command: check args: --locked --target wasm32-unknown-unknown --target-dir target_wasm -p re_renderer --examples - - name: Build web-viewer (release) - uses: actions-rs/cargo@v1 + - uses: prefix-dev/setup-pixi@v0.4.1 with: - command: run - # We build in release so that we can reuse the results for actual publishing, if necessary - args: --locked -p re_build_web_viewer -- --release + pixi-version: v0.16.1 + + # We build in release so that we can reuse the results for actual publishing, if necessary + - name: Build web-viewer (release) + shell: bash + run: | + pixi run cargo run --locked -p re_build_web_viewer -- --release # --------------------------------------------------------------------------- @@ -122,7 +128,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Taplo check shell: bash @@ -135,7 +141,7 @@ jobs: name: Cargo Deny runs-on: ubuntu-latest container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/reusable_deploy_docs.yml b/.github/workflows/reusable_deploy_docs.yml index 7536ec162887..1f251647c174 100644 --- a/.github/workflows/reusable_deploy_docs.yml +++ b/.github/workflows/reusable_deploy_docs.yml @@ -116,7 +116,7 @@ jobs: needs: [py-deploy-docs] runs-on: ubuntu-latest-16-cores container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - name: Show context shell: bash @@ -206,7 +206,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Doxygen C++ docs shell: bash diff --git a/.github/workflows/reusable_publish_js.yml b/.github/workflows/reusable_publish_js.yml index a9005fe12f1b..711f5c923225 100644 --- a/.github/workflows/reusable_publish_js.yml +++ b/.github/workflows/reusable_publish_js.yml @@ -63,7 +63,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.3.0 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Publish packages env: diff --git a/.github/workflows/reusable_publish_web.yml b/.github/workflows/reusable_publish_web.yml index 24a9f76b5f56..1d0ed09555fc 100644 --- a/.github/workflows/reusable_publish_web.yml +++ b/.github/workflows/reusable_publish_web.yml @@ -74,7 +74,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 # built by `reusable_build_and_publish_wheels` - name: Download Wheel diff --git a/.github/workflows/reusable_publish_wheels.yml b/.github/workflows/reusable_publish_wheels.yml index b3c7f4427c05..9f6512426bae 100644 --- a/.github/workflows/reusable_publish_wheels.yml +++ b/.github/workflows/reusable_publish_wheels.yml @@ -15,10 +15,6 @@ on: description: "Release Version Number (Must match Cargo.toml)" type: string required: true - linux-wheel-name: - description: "Name of the wheel built for linux" - type: string - required: true release-commit: description: "Which commit to build+publish" type: string @@ -44,81 +40,100 @@ jobs: ## Build - build-linux: - name: "Linux: Build Wheels" + build-linux-x64: + name: "Linux-x64: Build Wheels" + needs: [get-commit-sha] + uses: ./.github/workflows/reusable_build_and_upload_wheels.yml + with: + CONCURRENCY: wheels-build-linux-x64-${{ inputs.concurrency }} + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: linux-x64-wheel + RELEASE_COMMIT: ${{ inputs.release-commit }} + MODE: "pypi" + secrets: inherit + + build-linux-arm64: + name: "Linux-arm64: Build Wheels" needs: [get-commit-sha] uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: wheels-build-linux-${{ inputs.concurrency }} - PLATFORM: linux - WHEEL_ARTIFACT_NAME: ${{ inputs.linux-wheel-name }} + CONCURRENCY: wheels-build-linux-arm64-${{ inputs.concurrency }} + PLATFORM: linux-arm64 + WHEEL_ARTIFACT_NAME: linux-arm64-wheel RELEASE_COMMIT: ${{ inputs.release-commit }} MODE: "pypi" secrets: inherit - build-windows: - name: "Windows: Build Wheels" + build-windows-x64: + name: "Windows-x64: Build Wheels" needs: [get-commit-sha] uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: wheels-build-windows-${{ inputs.concurrency }} - PLATFORM: windows - WHEEL_ARTIFACT_NAME: windows-wheel + CONCURRENCY: wheels-build-windows-x64-${{ inputs.concurrency }} + PLATFORM: windows-x64 + WHEEL_ARTIFACT_NAME: windows-x64-wheel RELEASE_COMMIT: ${{ inputs.release-commit }} MODE: "pypi" secrets: inherit - build-macos-arm: - name: "Macos-Arm: Build Wheels" + build-macos-arm64: + name: "Macos-arm64: Build Wheels" needs: [get-commit-sha] uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: wheels-build-macos-arm-${{ inputs.concurrency }} - PLATFORM: macos-arm - WHEEL_ARTIFACT_NAME: macos-arm-wheel + CONCURRENCY: wheels-build-macos-arm64-${{ inputs.concurrency }} + PLATFORM: macos-arm64 + WHEEL_ARTIFACT_NAME: macos-arm64-wheel RELEASE_COMMIT: ${{ inputs.release-commit }} MODE: "pypi" secrets: inherit - build-macos-intel: - name: "Macos-Intel: Build Wheels" + build-macos-x64: + name: "Macos-x64: Build Wheels" needs: [get-commit-sha] uses: ./.github/workflows/reusable_build_and_upload_wheels.yml with: - CONCURRENCY: wheels-build-macos-intel-${{ inputs.concurrency }} - PLATFORM: macos-intel - WHEEL_ARTIFACT_NAME: "macos-intel-wheel" + CONCURRENCY: wheels-build-macos-x64-${{ inputs.concurrency }} + PLATFORM: macos-x64 + WHEEL_ARTIFACT_NAME: "macos-x64-wheel" RELEASE_COMMIT: ${{ inputs.release-commit }} MODE: "pypi" secrets: inherit ## Test - test-windows: - name: "Windows: Test Wheels" - needs: [build-windows] + test-windows-x64: + name: "Windows-x64: Test Wheels" + needs: [build-windows-x64] uses: ./.github/workflows/reusable_test_wheels.yml with: - CONCURRENCY: wheels-test-windows-${{ inputs.concurrency }} - PLATFORM: windows - WHEEL_ARTIFACT_NAME: windows-wheel + CONCURRENCY: wheels-test-windows-x64-${{ inputs.concurrency }} + PLATFORM: windows-x64 + WHEEL_ARTIFACT_NAME: windows-x64-wheel RELEASE_COMMIT: ${{ inputs.release-commit }} secrets: inherit test-linux: - name: "Linux: Test Wheels" - needs: [build-linux] + name: "Linux-x64: Test Wheels" + needs: [build-linux-x64] uses: ./.github/workflows/reusable_test_wheels.yml with: - CONCURRENCY: wheels-test-linux-${{ inputs.concurrency }} - PLATFORM: linux - WHEEL_ARTIFACT_NAME: ${{ inputs.linux-wheel-name }} + CONCURRENCY: wheels-test-linux-x64-${{ inputs.concurrency }} + PLATFORM: linux-x64 + WHEEL_ARTIFACT_NAME: linux-x64-wheel RELEASE_COMMIT: ${{ inputs.release-commit }} secrets: inherit generate-wheel-index: name: "Generate Pip Index" - needs: [build-linux, build-windows, build-macos-arm, build-macos-intel] + needs: + [ + build-linux-x64, + build-linux-arm64, + build-windows-x64, + build-macos-arm64, + build-macos-x64, + ] uses: ./.github/workflows/reusable_pip_index.yml with: CONCURRENCY: generate-wheel-index-${{ inputs.concurrency }} diff --git a/.github/workflows/reusable_release_crates.yml b/.github/workflows/reusable_release_crates.yml index 47ce2c75ace6..92646766fd95 100644 --- a/.github/workflows/reusable_release_crates.yml +++ b/.github/workflows/reusable_release_crates.yml @@ -26,7 +26,7 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 - name: Build web-viewer (release) shell: bash diff --git a/.github/workflows/reusable_run_notebook.yml b/.github/workflows/reusable_run_notebook.yml index 5cabcb26e96f..b741ad6750e2 100644 --- a/.github/workflows/reusable_run_notebook.yml +++ b/.github/workflows/reusable_run_notebook.yml @@ -1,4 +1,4 @@ -name: Reusable Buld and Upload Notebook +name: Reusable Build and Upload Notebook on: workflow_call: @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest container: - image: rerunio/ci_docker:0.11.0 + image: rerunio/ci_docker:0.12.0 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/reusable_test_wheels.yml b/.github/workflows/reusable_test_wheels.yml index 33228b2d1d94..8c1cc08b4292 100644 --- a/.github/workflows/reusable_test_wheels.yml +++ b/.github/workflows/reusable_test_wheels.yml @@ -56,24 +56,30 @@ jobs: - name: Set runner and target based on platform id: set-config shell: bash + # TODO(#5525): at least this target is broken, maybe others — we currently only use linux-x64 and windows-x64 run: | case "${{ inputs.PLATFORM }}" in - linux) + linux-arm64) + runner="buildjet-8vcpu-ubuntu-2204-arm" + target="aarch64-unknown-linux-gnu" + container="{'image': 'rerunio/ci_docker:0.12.0'}" + ;; + linux-x64) runner="ubuntu-latest-16-cores" target="x86_64-unknown-linux-gnu" - container="{'image': 'rerunio/ci_docker:0.11.0'}" + container="{'image': 'rerunio/ci_docker:0.12.0'}" ;; - windows) + windows-x64) runner="windows-latest-8-cores" target="x86_64-pc-windows-msvc" container="null" ;; - macos-arm) + macos-arm64) runner="macos-latest-large" # See https://github.blog/2023-10-02-introducing-the-new-apple-silicon-powered-m1-macos-larger-runner-for-github-actions/ target="aarch64-apple-darwin" container="null" ;; - macos-intel) + macos-x64) runner="macos-latest-large" # See https://github.blog/2023-10-02-introducing-the-new-apple-silicon-powered-m1-macos-larger-runner-for-github-actions/ target="x86_64-apple-darwin" container="null" @@ -123,12 +129,12 @@ jobs: - uses: prefix-dev/setup-pixi@v0.4.1 with: - pixi-version: v0.13.0 + pixi-version: v0.16.1 # The pip-cache setup logic doesn't work in the ubuntu docker container # That's probably fine since we bake these deps into the container already - name: Setup python - if: ${{ inputs.PLATFORM != 'linux' }} + if: ${{ inputs.PLATFORM != 'linux-x64' }} uses: actions/setup-python@v4 with: python-version: ${{ env.PYTHON_VERSION }} @@ -187,7 +193,7 @@ jobs: run: RUST_LOG=debug scripts/run_python_e2e_test.py --no-build # rerun-sdk is already built and installed - name: Run tests/roundtrips.py - if: ${{ inputs.PLATFORM != 'windows' }} + if: ${{ inputs.PLATFORM != 'windows-x64' }} shell: bash # --release so we can inherit from some of the artifacts that maturin has just built before # --target x86_64-unknown-linux-gnu because otherwise cargo loses the target cache… even though this is the target anyhow… @@ -196,7 +202,7 @@ jobs: RUST_LOG=debug tests/roundtrips.py --release --target x86_64-unknown-linux-gnu --no-py-build - name: Run docs/snippets/compare_snippet_output.py - if: ${{ inputs.PLATFORM != 'windows' }} + if: ${{ inputs.PLATFORM != 'windows-x64' }} shell: bash # --release so we can inherit from some of the artifacts that maturin has just built before # --target x86_64-unknown-linux-gnu because otherwise cargo loses the target cache… even though this is the target anyhow… diff --git a/ci_docker/Dockerfile b/ci_docker/Dockerfile index e5e4acfab46f..300ba04c48bf 100644 --- a/ci_docker/Dockerfile +++ b/ci_docker/Dockerfile @@ -2,11 +2,13 @@ FROM ubuntu:20.04 LABEL maintainer="opensource@rerun.io" # Remember to update the version in publish.sh # TODO(jleibs) use this version in the publish.sh script and below in the CACHE_KEY -LABEL version="0.11.0" +LABEL version="0.12.0" LABEL description="Docker image used for the CI of https://github.com/rerun-io/rerun" # Install the ubuntu package dependencies ENV DEBIAN_FRONTEND=noninteractive +ARG TARGETARCH + RUN set -eux; \ apt-get update; \ apt-get install -y ca-certificates lsb-release wget; \ @@ -57,8 +59,10 @@ RUN git clone --depth 1 --branch v23.5.9 https://github.com/google/flatbuffers.g make install && \ cd .. && rm -rf flatbuffers + # We need a more modern patchelf than ships on ubuntu-20.04 -RUN curl --fail -L https://github.com/NixOS/patchelf/releases/download/0.17.2/patchelf-0.17.2-x86_64.tar.gz | tar -xz ./bin/patchelf +RUN arch=$(if [ "$TARGETARCH" = "arm64" ]; then echo "aarch64"; else echo "x86_64"; fi) && \ + curl --fail -L https://github.com/NixOS/patchelf/releases/download/0.17.2/patchelf-0.17.2-${arch}.tar.gz | tar -xz ./bin/patchelf # TODO(andreas): Update cargo-deny below when updating rust version to 1.70.0 or above! ENV RUSTUP_HOME=/usr/local/rustup \ @@ -69,9 +73,10 @@ ENV RUSTUP_HOME=/usr/local/rustup \ # Install Rust # Borrowed from: https://github.com/rust-lang/docker-rust/blob/a8a2a9d/1.71.0/bookworm/Dockerfile -RUN set -eux; \ - rustArch='x86_64-unknown-linux-gnu'; \ - rustupSha256='0b2f6c8f85a3d02fde2efc0ced4657869d73fccfce59defb4e8d29233116e6db'; \ +RUN arch=$(if [ "$TARGETARCH" = "arm64" ]; then echo "aarch64"; else echo "x86_64"; fi) && \ + set -eux; \ + rustArch="${arch}-unknown-linux-gnu"; \ + rustupSha256=$(if [ "$TARGETARCH" = "arm64" ]; then echo "673e336c81c65e6b16dcdede33f4cc9ed0f08bde1dbe7a935f113605292dc800"; else echo "0b2f6c8f85a3d02fde2efc0ced4657869d73fccfce59defb4e8d29233116e6db"; fi); \ url="https://static.rust-lang.org/rustup/archive/${RUSTUP_VERSION}/${rustArch}/rustup-init"; \ wget "$url"; \ echo "${rustupSha256} *rustup-init" | sha256sum -c -; \ @@ -102,11 +107,8 @@ RUN pip install -r requirements-build.txt ADD rerun_py/requirements-lint.txt requirements-lint.txt RUN pip install -r requirements-lint.txt -# Note: We need a more modern binaryen than ships on ubuntu-20.4, so we pull it from github -RUN curl --fail -L https://github.com/WebAssembly/binaryen/releases/download/version_112/binaryen-version_112-x86_64-linux.tar.gz | tar xzk --strip-components 1 - # Increment this to invalidate cache -ENV CACHE_KEY=rerun_docker_v0.10.0 +ENV CACHE_KEY=rerun_docker_v0.12.0 # See: https://github.com/actions/runner-images/issues/6775#issuecomment-1410270956 RUN git config --system --add safe.directory '*' diff --git a/ci_docker/publish.sh b/ci_docker/publish.sh index 047dd990b15c..31d3d9b57d10 100755 --- a/ci_docker/publish.sh +++ b/ci_docker/publish.sh @@ -1,24 +1,11 @@ #!/usr/bin/env bash set -eux -VERSION=0.11.0 # Bump on each new version. Remember to update the version in the Dockerfile too. +VERSION=0.12.0 # Bump on each new version. Remember to update the version in the Dockerfile too. # The build needs to run from top of repo to access the requirements.txt cd `git rev-parse --show-toplevel` -# Pull :latest so we have the correct cache -docker pull rerunio/ci_docker - # Build the image -docker build -t ci_docker -f ci_docker/Dockerfile . -# This is necessary to build on mac, but is doing something weird with the Cache -# TODO(jleibs): Make this all work portably with caching -# docker buildx build --platform=linux/amd64 -t ci_docker -f ci_docker/Dockerfile . - -# Tag latest and version -docker tag ci_docker rerunio/ci_docker -docker tag ci_docker rerunio/ci_docker:$VERSION - -# Push the images back up -docker push rerunio/ci_docker -docker push rerunio/ci_docker:$VERSION +# buildx wants to do all of this in one step +docker buildx build --pull --platform linux/arm64,linux/amd64 -t rerunio/ci_docker -t rerunio/ci_docker:$VERSION --push -f ci_docker/Dockerfile . diff --git a/pixi.lock b/pixi.lock index 4b1d18ea4341..de4e93572c55 100644 --- a/pixi.lock +++ b/pixi.lock @@ -7,6 +7,7 @@ environments: linux-64: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-h79b3bcb_6.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-hb29e0c7_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.13-hd590300_0.conda @@ -20,11 +21,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-hecc5fa9_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.2-h19f5d62_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-h5606698_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/binaryen-116-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/binaryen-117-h59595ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hbdbef99_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/black-24.2.0-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.26.0-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.6.0-hd590300_0.conda @@ -34,21 +36,29 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16-16.0.6-default_hb11cfb5_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16.0.6-default_hb11cfb5_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-16.0.6-default_hb11cfb5_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.27.6-hcfe8598_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/colorlog-4.8.0-py311h38be061_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.6.0-h00ab1b0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.7-h661eb56_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/flatbuffers-23.5.26-h59595ed_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h8d2909c_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h76fc315_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.0-hed5481d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h8d2909c_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h8a814eb_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/just-1.22.1-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda @@ -74,6 +84,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda @@ -97,6 +108,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.1-h2797004_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 @@ -106,120 +118,212 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.5-h232c23b_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/maturin-1.4.0-py311h63ff55d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/meilisearch-1.5.1-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.8.0-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-18.18.2-hb753e55_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-1.9.2-h00e871a_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/prettier-2.8.8-h75cfd52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py311h459d7ec_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-14.0.2-py311h39c9aba_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-50.0-hd3aeb46_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.4-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.2.2-py311h7145743_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.5-h06160fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/taplo-0.8.1-he8a937b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.18.1-he8a937b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h75e419f_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_16.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.9.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.18.1-he8a937b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.25.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h75e419f_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - osx-64: - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + linux-aarch64: + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.16-hcac9c52_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.6.10-h967b9ec_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.13-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.18-h00d1b86_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.2-h128c7ac_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.1-he0aa6e1_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.5-h2bbb85f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.2-hf974719_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.5.2-h170583c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.15-h00d1b86_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.18-h00d1b86_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.26.2-h07bb24a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.267-hfce6cab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binaryen-117-h2f0025b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/black-24.2.0-py311hec3470c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h31becfc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.27.0-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.2.2-hcefe29a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-format-16-16.0.6-default_hb368394_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-format-16.0.6-default_hb368394_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-tools-16.0.6-default_hb368394_5.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-3.27.6-hef020d8_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-16.0.6-ha38d28d_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.9.7-h7b6a552_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/flatbuffers-24.3.7-h2f0025b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h54f1f3f_1004.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.0-ha63034d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-73.2-h787c7f5_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/just-1.24.0-h1d8f897_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.2-hc419048_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.40-h2d8c526_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.1-cxx17_h2f0025b_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-14.0.2-h25df049_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-14.0.2-h2f0025b_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-14.0.2-h2f0025b_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-flight-14.0.2-h2f4a9e5_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-flight-sql-14.0.2-hc81a7a7_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-gandiva-14.0.2-h3a2b1eb_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-14.0.2-hd45466a_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-21_linuxaarch64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-21_linuxaarch64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp16-16.0.6-default_hb368394_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-18.1.1-default_hf9b4efe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.5.0-h4e8248e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.2-h2f0025b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-13.2.0-hf8544c7_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-13.2.0-he9431aa_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-13.2.0-h582850c_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-13.2.0-hf8544c7_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.22.0-hd739bbb_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.22.0-hdb39181_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.1-h98a9317_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-21_linuxaarch64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm15-15.0.7-hb4f23b0_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm16-16.0.6-h0b931ab_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm18-18.1.1-hbfe100b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.58.0-hb0e430d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnl-3.9.0-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.26-pthreads_h5a5ec62_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-14.0.2-hb18b541_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-h648ac29_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.45.2-h194ca79_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-13.2.0-h9a76618_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.19.0-h043aeee_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.46.0-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.12.5-h3091e33_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h31becfc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/maturin-1.4.0-py311h06e5ef9_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mypy-1.8.0-py311hcd402e7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.4-h0425590_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.11.1-hdd96247_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nodejs-18.19.0-hc1f8a26_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.2.1-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.0-h75d905f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/prettier-2.8.8-hc2da131_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-5.9.8-py311hcd402e7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-14.0.2-py311h1eb6f34_12_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.8-h43d1f9e_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-50.0-h0425590_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.4-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ruff-0.2.2-py311he69e3a7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.4.5-h5a25046_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.10-he8610fa_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.9.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/typos-1.19.0-h1d8f897_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.25.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.15.0-hcf8619e_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h31becfc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.5-h4c53e97_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h79cb451_6.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-h7beb4c2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.13-h10d778d_0.conda @@ -233,8 +337,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-hf5538d0_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.2-h56a5195_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h4da54b2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/binaryen-116-he965462_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/binaryen-117-h73e2aa4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/black-24.2.0-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.26.0-h10d778d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.6.0-h282daa2_0.conda @@ -251,15 +356,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h7151d67_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-16.0.6-h6d92fbe_9.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-hb91bd55_9.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.27.6-hf40c264_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/colorlog-4.8.0-py311h6eed73b_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-16.0.6-ha38d28d_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-16.0.6-ha38d28d_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.6.0-h7728843_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.9.7-hd7636e7_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/flatbuffers-23.5.26-he965462_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.0-h31b1b29_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/just-1.22.1-h63b85fc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-ha02d983_16.conda @@ -312,75 +425,60 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.6-hb6ac08f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-16.0.6-hbedff68_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/maturin-1.4.0-py311h24bb903_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/meilisearch-1.5.1-hc85fda4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.8.0-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-h93d8f39_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/nodejs-18.18.2-h2713218_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py311hc43a94b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.2-h3758fe2_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/prettier-2.8.8-h3db311d_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py311he705e18_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-14.0.2-py311h54e7ce8_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.4-h0dc2134_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.2.2-py311hfff7943_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/taplo-0.8.1-h7205ca4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.18.1-h11a7dfb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda - osx-arm64: - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-16.0.6-h3808999_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.9.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.18.1-h11a7dfb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.25.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.16-h51b92d1_6.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.10-hf888d4c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.13-h93a5062_0.conda @@ -394,8 +492,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-hf888d4c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.2-h06549c9_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.267-h73c0887_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-116-h13dd4ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-117-hebf3989_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/black-24.2.0-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.26.0-h93a5062_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.6.0-h6aa9301_0.conda @@ -412,15 +511,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-16.0.6-default_h4cf2255_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-16.0.6-hcd7bac0_9.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-16.0.6-h54d7cd3_9.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.27.6-h1c59155_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/colorlog-4.8.0-py311h267d04e_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-16.0.6-h3808999_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-16.0.6-h3808999_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.6.0-h2ffa867_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.9.7-h0e2417a_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/flatbuffers-23.5.26-h13dd4ca_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.0-hc6770e3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/just-1.22.1-h5ef7bb8_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h634c8be_16.conda @@ -473,74 +580,60 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.6-hcd81f8e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-16.0.6-haab561b_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.4.0-py311h71175c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/meilisearch-1.5.1-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.8.0-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/nodejs-18.18.2-h7ed3092_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.2-h798d188_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/prettier-2.8.8-ha12bae2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py311h05b510d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-14.0.2-py311hd7bc329_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.8-hdf0ec26_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.4-hb547adb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.2.2-py311h8c97afb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/taplo-0.8.1-h69fbcac_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.18.1-h5ef7bb8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda - win-64: - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.9.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.18.1-h5ef7bb8_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.25.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-hec1de76_6.conda - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hd481e46_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.13-hcfcfb64_0.conda @@ -554,17 +647,25 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hd481e46_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.2-h8492d2a_7.conda - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h93f5800_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/binaryen-116-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/binaryen-117-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/black-24.2.0-py311h1ea47a8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.27.0-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/clang-format-16.0.6-default_h3a3e6c3_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/clang-tools-16.0.6-default_h3a3e6c3_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/cmake-3.27.6-hf0feee3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/colorlog-4.8.0-py311h1ea47a8_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.9.7-h849606c_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/flatbuffers-23.5.26-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.0.0-h57928b3_49841.conda - conda: https://conda.anaconda.org/conda-forge/win-64/just-1.22.1-h7f3b576_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda @@ -609,38 +710,62 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/maturin-1.4.0-py311h9a9e57f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/meilisearch-1.5.1-h8b8d39b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.0.0-h66d3029_49657.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/mypy-1.8.0-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ninja-1.11.1-h91493d7_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/nodejs-18.18.2-h57928b3_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/orc-1.9.2-h2702c50_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/prettier-2.8.8-hd2f1330_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py311ha68e1ae_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-14.0.2-py311h6a6099b_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.8-h2628c8c_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.2.2-py311hc14472d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.0.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/taplo-0.8.1-h7f3b576_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.11.0-h91493d7_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.9.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.18.1-h7f3b576_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vs2022_win-64-19.37.32822-h0123c8e_17.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.4-h57928b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl default: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -648,6 +773,7 @@ environments: linux-64: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.10-h0100c56_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.9-h5d48c4d_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.10-hd590300_0.conda @@ -661,21 +787,29 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.17-h7f92143_6.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.0-h3b5eec7_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.210-hac0d6e5_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/binaryen-116-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/binaryen-117-h59595ed_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/black-24.2.0-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.24.0-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16-16.0.6-default_hb11cfb5_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16.0.6-default_hb11cfb5_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-16.0.6-default_hb11cfb5_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.27.6-hcfe8598_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/colorlog-4.8.0-py311h38be061_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.7-h661eb56_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/flatbuffers-23.5.26-h59595ed_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/just-1.15.0-he8a937b_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda @@ -731,117 +865,212 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.11.5-h232c23b_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/maturin-1.4.0-py311h63ff55d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/meilisearch-1.5.1-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.8.0-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-18.18.2-hb753e55_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-1.9.2-h4b38347_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/prettier-2.8.8-h75cfd52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py311h459d7ec_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-14.0.2-py311h39c9aba_3_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-28.9-h59595ed_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.06.02-h2873b5e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.4-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.2.2-py311h7145743_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.1-h06160fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/taplo-0.8.1-he8a937b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-h2797004_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.16.20-he8a937b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h64cca9d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-h2797004_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.16.20-he8a937b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h64cca9d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - osx-64: - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + linux-aarch64: + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.16-hcac9c52_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.6.10-h967b9ec_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.13-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.18-h00d1b86_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.2-h128c7ac_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.1-he0aa6e1_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.5-h2bbb85f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.2-hf974719_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.5.2-h170583c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.15-h00d1b86_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.18-h00d1b86_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.26.2-h07bb24a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.267-hfce6cab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binaryen-117-h2f0025b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/black-24.2.0-py311hec3470c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h31becfc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.27.0-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.2.2-hcefe29a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-format-16-16.0.6-default_hb368394_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-format-16.0.6-default_hb368394_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-tools-16.0.6-default_hb368394_5.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-3.27.6-hef020d8_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.9.7-h7b6a552_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/flatbuffers-24.3.7-h2f0025b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h54f1f3f_1004.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.0-ha63034d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-73.2-h787c7f5_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/just-1.24.0-h1d8f897_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.2-hc419048_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.40-h2d8c526_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.1-cxx17_h2f0025b_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-14.0.2-h25df049_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-14.0.2-h2f0025b_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-14.0.2-h2f0025b_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-flight-14.0.2-h2f4a9e5_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-flight-sql-14.0.2-hc81a7a7_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-gandiva-14.0.2-h3a2b1eb_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-14.0.2-hd45466a_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-21_linuxaarch64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-21_linuxaarch64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp16-16.0.6-default_hb368394_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-18.1.1-default_hf9b4efe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.5.0-h4e8248e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.2-h2f0025b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-13.2.0-hf8544c7_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-13.2.0-he9431aa_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-13.2.0-h582850c_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-13.2.0-hf8544c7_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.22.0-hd739bbb_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.22.0-hdb39181_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.1-h98a9317_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-21_linuxaarch64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm15-15.0.7-hb4f23b0_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm16-16.0.6-h0b931ab_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm18-18.1.1-hbfe100b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.58.0-hb0e430d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnl-3.9.0-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.26-pthreads_h5a5ec62_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-14.0.2-hb18b541_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-h648ac29_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.45.2-h194ca79_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-13.2.0-h9a76618_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.19.0-h043aeee_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.46.0-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.12.5-h3091e33_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h31becfc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/maturin-1.4.0-py311h06e5ef9_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mypy-1.8.0-py311hcd402e7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.4-h0425590_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.11.1-hdd96247_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nodejs-18.19.0-hc1f8a26_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.2.1-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.0-h75d905f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/prettier-2.8.8-hc2da131_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-5.9.8-py311hcd402e7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-14.0.2-py311h1eb6f34_12_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.8-h43d1f9e_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-50.0-h0425590_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.4-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ruff-0.2.2-py311he69e3a7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.4.5-h5a25046_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.10-he8610fa_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/typos-1.19.0-h1d8f897_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.15.0-hcf8619e_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h31becfc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.5-h4c53e97_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.10-h5ed86db_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.9-had988b7_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.10-h10d778d_0.conda @@ -855,21 +1084,29 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.17-hb45f1eb_6.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.0-h88f2ebf_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.210-heeba50e_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/binaryen-116-he965462_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/binaryen-117-h73e2aa4_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/black-24.2.0-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.24.0-h10d778d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-16-16.0.6-default_h7151d67_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-16.0.6-default_h7151d67_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-16.0.6-default_h7151d67_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.27.6-hf40c264_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/colorlog-4.8.0-py311h6eed73b_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.9.7-hd7636e7_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/flatbuffers-23.5.26-he965462_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/just-1.15.0-h63b85fc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230802.1-cxx17_h048a20a_0.conda @@ -918,73 +1155,59 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.2-hff08bdf_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/maturin-1.4.0-py311h24bb903_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/meilisearch-1.5.1-hc85fda4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.8.0-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/nodejs-18.18.2-h2713218_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py311hc43a94b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.2-h9ab30d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/prettier-2.8.8-h3db311d_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py311he705e18_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-14.0.2-py311h54e7ce8_3_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.06.02-hd34609a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.4-h0dc2134_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.2.2-py311hfff7943_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/taplo-0.8.1-h7205ca4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hef22860_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.16.20-h63b85fc_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda - osx-arm64: - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.2.2-py311hfff7943_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hef22860_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.16.20-h63b85fc_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.10-h8e8137d_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.9-hb1772db_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.10-h93a5062_0.conda @@ -998,21 +1221,29 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.17-hb1772db_6.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.0-hcc526ff_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.210-ha042220_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-116-h13dd4ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-117-hebf3989_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/black-24.2.0-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.24.0-h93a5062_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.7.22-hf0a4a13_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-16-16.0.6-default_he012953_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-16.0.6-default_he012953_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-16.0.6-default_he012953_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.27.6-h1c59155_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/colorlog-4.8.0-py311h267d04e_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.9.7-h0e2417a_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/flatbuffers-23.5.26-h13dd4ca_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/just-1.15.0-h5ef7bb8_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230802.1-cxx17_h13dd4ca_0.conda @@ -1061,133 +1292,692 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.2-h1c12783_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.4.0-py311h71175c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/meilisearch-1.5.1-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.8.0-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/nodejs-18.18.2-h7ed3092_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.2-h7c018df_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/prettier-2.8.8-ha12bae2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py311h05b510d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-14.0.2-py311hd7bc329_3_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.8-hdf0ec26_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.06.02-h6135d0a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.4-hb547adb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.2.2-py311h8c97afb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/taplo-0.8.1-h69fbcac_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-hb31c410_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.16.20-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl win-64: - - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-hec1de76_6.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hd481e46_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.13-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-hd481e46_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-h0f06f08_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-hdb5aac5_5.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.5-h08270f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.2-hfea8755_4.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.2-h4b2095a_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-hd481e46_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hd481e46_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.2-h8492d2a_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h93f5800_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/binaryen-117-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/black-24.2.0-py311h1ea47a8_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.27.0-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/clang-format-16.0.6-default_h3a3e6c3_5.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/clang-tools-16.0.6-default_h3a3e6c3_5.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cmake-3.27.6-hf0feee3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.9.7-h849606c_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/flatbuffers-23.5.26-h63175ca_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.9-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-4.13.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.2.0-h57928b3_50496.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/just-1.15.0-h7f3b576_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240116.1-cxx17_h63175ca_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-14.0.2-hd01637b_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-14.0.2-h63175ca_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-14.0.2-h63175ca_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-14.0.2-hca4e5ea_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-14.0.2-h1ef3bed_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-14.0.2-h6d0e577_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-14.0.2-hf368baa_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-18_win64_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-18_win64_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libclang13-17.0.6-default_h85b4d89_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.5.0-hd5e4a3a_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.21.0-h2b62511_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.21.0-hb581fae_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.61.1-h864d0f4_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.3-default_haede6df_1009.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-18_win64_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libparquet-14.0.2-h7ec3a38_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.2-h503648d_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2023.09.01-hf8d8778_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.1-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.44.2-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.5-hc3477c8_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/maturin-1.4.0-py311h9a9e57f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/mypy-1.8.0-py311ha68e1ae_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/ninja-1.11.1-h91493d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/nodejs-18.18.2-h57928b3_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/orc-1.9.2-h2702c50_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/prettier-2.8.8-hd2f1330_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-14.0.2-py311h6a6099b_10_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.8-h2628c8c_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.2.2-py311hc14472d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.10.0-h91493d7_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.16.20-h7f3b576_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hdcecf7f_17.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-hec1de76_6.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hd481e46_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.13-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-hd481e46_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-h0f06f08_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-hdb5aac5_5.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.5-h08270f9_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.2-hfea8755_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.2-h4b2095a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-hd481e46_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hd481e46_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.2-h8492d2a_7.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h93f5800_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/binaryen-116-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + taplo: + channels: + - url: https://conda.anaconda.org/conda-forge/ + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h9e7f0e3_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.2-h4893938_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.3-h137ae52_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-he0cb598_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/binaryen-117-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/black-24.2.0-py311h38be061_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.27.0-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16-16.0.6-default_h127d8a8_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16.0.6-default_h127d8a8_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-16.0.6-default_h127d8a8_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.27.6-hcfe8598_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.7-h661eb56_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/flatbuffers-24.3.7-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.0-hed5481d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/just-1.24.0-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-14.0.2-h6bfc85a_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-14.0.2-h59595ed_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-14.0.2-h59595ed_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-14.0.2-hc6145d9_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-sql-14.0.2-h757c851_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-gandiva-14.0.2-hb016d2e_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-14.0.2-h757c851_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-21_linux64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-21_linux64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp16-16.0.6-default_h127d8a8_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-18.1.1-default_h5d6823c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.5.0-hca28451_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-21_linux64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hb3ce162_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm16-16.0.6-hb3ce162_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm18-18.1.1-h2448989_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.9.0-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.26-pthreads_h413a1c8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-14.0.2-h352af49_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.46.0-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.5-h232c23b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/maturin-1.4.0-py311h63ff55d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/meilisearch-1.5.1-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.8.0-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-18.19.0-hb753e55_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.0-h1e5e2c1_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/patchelf-0.17.2-h58526e2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/prettier-2.8.8-h75cfd52_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.8-py311h459d7ec_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-14.0.2-py311h39c9aba_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-50.0-hd3aeb46_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.4-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.2.2-py311h7145743_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.6-h06160fa_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/taplo-0.8.1-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.19.0-he8a937b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h11edf95_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + osx-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.2-h6f42f56_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.3-hf5b2fc6_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h232afc9_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/binaryen-117-h73e2aa4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/black-24.2.0-py311h6eed73b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.27.0-h10d778d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-16-16.0.6-default_h7151d67_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-16.0.6-default_h7151d67_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-16.0.6-default_h7151d67_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.27.6-hf40c264_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.9.7-hd7636e7_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/flatbuffers-24.3.7-h73e2aa4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.0-h31b1b29_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/just-1.24.0-h11a7dfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-14.0.2-he79e29d_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-14.0.2-h000cb23_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-14.0.2-h000cb23_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-14.0.2-h2382776_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-sql-14.0.2-h7e3fe20_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-gandiva-14.0.2-ha5acb15_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-14.0.2-h7e3fe20_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-21_osx64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-21_osx64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h7151d67_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-18.1.1-default_h0edc4dd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.5.0-h726d00d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-21_osx64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-hbedff68_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.1-hbcf5fad_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.26-openmp_hfef2a42_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-14.0.2-h381d950_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.47.0-h67532ce_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.5-hc0ae0f7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.6-hb6ac08f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/maturin-1.4.0-py311h24bb903_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.8.0-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-h93d8f39_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/nodejs-18.19.0-h119ffd7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py311hc43a94b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.0-h6c6cd50_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/prettier-2.8.8-h3db311d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.8-py311he705e18_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-14.0.2-py311h54e7ce8_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.4-h0dc2134_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.2.2-py311hfff7943_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/taplo-0.8.1-h7205ca4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.19.0-h11a7dfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.16-h0d2f7a6_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.10-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.14-h93a5062_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-h59ac3ca_6.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.1-hfe5d766_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.6-h9ac2cdb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.3-hb8a1441_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.2-h4398043_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.15-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-h677d54c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.3-h0de420c_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.267-h2fb64bc_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-117-hebf3989_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/black-24.2.0-py311h267d04e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.27.0-h93a5062_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-16-16.0.6-default_he012953_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-16.0.6-default_he012953_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-16.0.6-default_he012953_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.27.6-h1c59155_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.9.7-h0e2417a_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/flatbuffers-24.3.7-hebf3989_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.0-hc6770e3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/just-1.24.0-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.1-cxx17_hebf3989_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-14.0.2-h5233fb5_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-14.0.2-h13dd4ca_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-14.0.2-h13dd4ca_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-14.0.2-h95ca633_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-sql-14.0.2-hdc5392b_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-gandiva-14.0.2-hfef958d_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-14.0.2-hef52601_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-21_osxarm64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-21_osxarm64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp16-16.0.6-default_he012953_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-18.1.1-default_h83d0a53_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.5.0-h2d989ff_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.22.0-hbebe991_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.22.0-h8a76758_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.1-h9c18a4f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-21_osxarm64_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h2621b3d_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm16-16.0.6-haab561b_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.1-h30cc82d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.26-openmp_h6c19121_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-14.0.2-hf6ce1d5_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hbfab5d5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.2-h091b4b1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.47.0-h93a5062_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.5-h0d0cfa8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.6-hcd81f8e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.4.0-py311h71175c2_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.8.0-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/nodejs-18.19.0-h5f47a4d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.0-h3d3088e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/prettier-2.8.8-ha12bae2_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.8-py311h05b510d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-14.0.2-py311hd7bc329_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.8-hdf0ec26_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.4-hb547adb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.2.2-py311h8c97afb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/taplo-0.8.1-h69fbcac_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.19.0-h5ef7bb8_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-h7613915_8.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.14-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-h3df98b0_6.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-h4e3df0f_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.6-hf0b8b6f_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.3-h96fac68_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.2-h08df315_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hf6fcf4e_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.3-h6047f0a_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h558341a_3.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/binaryen-117-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/black-24.2.0-py311h1ea47a8_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.27.0-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/clang-format-16.0.6-default_h3a3e6c3_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/clang-tools-16.0.6-default_h3a3e6c3_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/cmake-3.27.6-hf0feee3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/colorlog-4.8.0-py311h1ea47a8_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.9.7-h849606c_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/flatbuffers-23.5.26-h63175ca_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.2.0-h57928b3_50496.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/just-1.15.0-h7f3b576_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/flatbuffers-24.3.7-h63175ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitignore-parser-0.1.11-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.0.0-h57928b3_49841.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/just-1.24.0-h7f3b576_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240116.1-cxx17_h63175ca_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-14.0.2-hd01637b_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-14.0.2-h63175ca_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-14.0.2-h63175ca_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-14.0.2-hca4e5ea_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-14.0.2-h1ef3bed_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-14.0.2-h6d0e577_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-14.0.2-hf368baa_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-18_win64_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-14.0.2-h2a83f13_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-14.0.2-h63175ca_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-14.0.2-h63175ca_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-14.0.2-h02312f3_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-14.0.2-h55b4db4_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-14.0.2-hcb01e45_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-14.0.2-h89268de_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-21_win64_mkl.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-18_win64_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libclang13-17.0.6-default_h85b4d89_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-21_win64_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libclang13-18.1.1-default_hf64faad_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.5.0-hd5e4a3a_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.21.0-h2b62511_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.21.0-hb581fae_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.61.1-h864d0f4_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.22.0-h9cad5c0_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.22.0-hb581fae_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.62.1-h5273850_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.3-default_haede6df_1009.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-18_win64_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libparquet-14.0.2-h7ec3a38_10_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.2-h503648d_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-21_win64_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libparquet-14.0.2-h7ec3a38_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.3-h503648d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2023.09.01-hf8d8778_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.1-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.2-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.44.2-hcfcfb64_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.48.0-hcfcfb64_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.5-hc3477c8_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda @@ -1196,36 +1986,61 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/maturin-1.4.0-py311h9a9e57f_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/meilisearch-1.5.1-h8b8d39b_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.0.0-h66d3029_49657.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/mypy-1.8.0-py311ha68e1ae_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ninja-1.11.1-h91493d7_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/nodejs-18.18.2-h57928b3_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/nodejs-18.19.0-h57928b3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.2.1-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/orc-1.9.2-h2702c50_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.0-heb0c069_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/prettier-2.8.8-hd2f1330_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.8-py311ha68e1ae_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-14.0.2-py311h6a6099b_10_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-14.0.2-py311h6a6099b_13_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.17.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.8-h2628c8c_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2023.09.01-hd3b24a8_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.2.2-py311hc14472d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/taplo-0.8.1-h7f3b576_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.10.0-h91493d7_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-hcfcfb64_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.16.20-h7f3b576_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.11.0-h91493d7_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.19.0-h7f3b576_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hdcecf7f_17.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda + - pypi: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl packages: - kind: conda name: _libgcc_mutex @@ -1257,24 +2072,34 @@ packages: size: 23621 timestamp: 1650670423406 - kind: conda - name: argcomplete - version: 1.12.3 - build: pyhd8ed1ab_2 - build_number: 2 - subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-1.12.3-pyhd8ed1ab_2.tar.bz2 - sha256: 2abb116f5bdc62d5e83c9dd15e5fc30c2a9571f728ccc012fad03350ed1d581e - md5: b8152341fc3fc9880c6e1b9d188974e5 + name: _openmp_mutex + version: '4.5' + build: 2_gnu + build_number: 16 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + md5: 6168d71addc746e8f2b8d57dfd2edcea depends: - - importlib_metadata >=0.23,<5 - - python >=3.5 - arch: x86_64 - platform: win - license: Apache-2.0 - license_family: Apache - size: 35310 - timestamp: 1619128850100 + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23712 + timestamp: 1650670790230 +- kind: pypi + name: argcomplete + version: 3.2.3 + url: https://files.pythonhosted.org/packages/88/8c/61021c45428ad2ef6131c6068d14f7f0968767e972e427cd87bd25c9ea7b/argcomplete-3.2.3-py3-none-any.whl + sha256: c12355e0494c76a2a7b73e3a59b09024ca0ba1e279fb9ed6c1b82d5b74b6a70c + requires_dist: + - coverage ; extra == 'test' + - pexpect ; extra == 'test' + - wheel ; extra == 'test' + - ruff ; extra == 'test' + - mypy ; extra == 'test' + requires_python: '>=3.8' - kind: conda name: attrs version: 23.1.0 @@ -1291,6 +2116,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/attrs size: 55022 timestamp: 1683424195402 - kind: conda @@ -1306,6 +2133,8 @@ packages: - python >=3.7 license: MIT license_family: MIT + purls: + - pkg:pypi/attrs size: 54582 timestamp: 1704011393776 - kind: conda @@ -1372,6 +2201,25 @@ packages: license_family: Apache size: 89155 timestamp: 1704306064106 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: h0d2f7a6_8 + build_number: 8 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.16-h0d2f7a6_8.conda + sha256: 82006dd3067f4d09fd8cee0ea9c4836b6ac0c02db68acd001ff5c7b8669522b5 + md5: a37cb159ebfb3d3adc1a351c98c1027f + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + license: Apache-2.0 + license_family: Apache + size: 89205 + timestamp: 1710282202281 - kind: conda name: aws-c-auth version: 0.7.16 @@ -1391,6 +2239,28 @@ packages: license_family: Apache size: 89495 timestamp: 1708633374785 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: h7613915_8 + build_number: 8 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.16-h7613915_8.conda + sha256: 9ac4ebfc14faa7377a0df29ebf562d55e04a99d6d72f8ce8bb6a661e4753cde3 + md5: 61c802b7e9c8d6215116c01ce7d582d9 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 99468 + timestamp: 1710282357839 - kind: conda name: aws-c-auth version: 0.7.16 @@ -1430,6 +2300,65 @@ packages: license_family: Apache size: 90856 timestamp: 1708633418805 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: h9d28af5_8 + build_number: 8 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda + sha256: f75a39577b61fc649e3a8c926b91218ebad6ea78beb2f2b16f90d3ae9493c1c4 + md5: 0b451cddce1ea8f9247b386ba3285edc + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + license: Apache-2.0 + license_family: Apache + size: 90270 + timestamp: 1710282294532 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: haed3651_8 + build_number: 8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda + sha256: 75a540b313e5dc212fc0a6057f8a5bee2dda443f17a5a076bd3ea4d7195d483e + md5: ce96c083829ab2727c942243ac93ffe0 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 103298 + timestamp: 1710281865011 +- kind: conda + name: aws-c-auth + version: 0.7.16 + build: hcac9c52_6 + build_number: 6 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.16-hcac9c52_6.conda + sha256: 183846836b1a6fa73ae852137eb1916f3d0f2a9d9569e6b1e5f8720f1ef60eb6 + md5: d2b70bb402aac5cfbfc269d43057fa4d + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 107769 + timestamp: 1708633088332 - kind: conda name: aws-c-auth version: 0.7.16 @@ -1505,6 +2434,21 @@ packages: license_family: Apache size: 39662 timestamp: 1701212885323 +- kind: conda + name: aws-c-cal + version: 0.6.10 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.10-h677d54c_2.conda + sha256: d4f0fa97a3f6f5a090b0c9ed078fedf6b50f19a406d272f8e4b2b214f074323e + md5: a501703d122cdf7cf38c1bbc8c16f981 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 38986 + timestamp: 1709815581194 - kind: conda name: aws-c-cal version: 0.6.10 @@ -1520,6 +2464,40 @@ packages: license_family: Apache size: 45497 timestamp: 1708003974070 +- kind: conda + name: aws-c-cal + version: 0.6.10 + build: h967b9ec_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.6.10-h967b9ec_1.conda + sha256: b92492ab587792933673ac9c2a35f863d23131f57185f8882d39e91cb68163d7 + md5: 70047d857a1c7dfe144be45bf13b94cb + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 48505 + timestamp: 1708003694470 +- kind: conda + name: aws-c-cal + version: 0.6.10 + build: ha9bf9b1_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda + sha256: e45d9f1eb862f566bdea3d3229dfc74f31e647a72198fe04aab58ccc03a30a37 + md5: ce2471034f5459a39636aacc292c96b6 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 55421 + timestamp: 1709815095625 - kind: conda name: aws-c-cal version: 0.6.10 @@ -1555,6 +2533,24 @@ packages: license_family: Apache size: 55726 timestamp: 1708004211846 +- kind: conda + name: aws-c-cal + version: 0.6.10 + build: hf6fcf4e_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.10-hf6fcf4e_2.conda + sha256: 800b25ee5590f3ddd9186e225c756b9e5d00d3ecce8c2de5d9343af85213d883 + md5: 7490ede93a75acc3589a2e43f77c79e9 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 55818 + timestamp: 1709815582485 - kind: conda name: aws-c-cal version: 0.6.10 @@ -1570,6 +2566,21 @@ packages: license_family: Apache size: 39206 timestamp: 1708003965707 +- kind: conda + name: aws-c-cal + version: 0.6.10 + build: hf9de6f9_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda + sha256: cb9b20aeec4cd037117fd0bfe2ae5a0a5f6a08a71f941be0f163bb27c87b98ea + md5: 393dbe9973160cb09cb3594c9246e260 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 45249 + timestamp: 1709815427644 - kind: conda name: aws-c-common version: 0.9.10 @@ -1626,6 +2637,20 @@ packages: license_family: Apache size: 208489 timestamp: 1707964779175 +- kind: conda + name: aws-c-common + version: 0.9.13 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.13-h31becfc_0.conda + sha256: 68a7dc87d1c7fefe07f6745acc9c7fffe5d53e1c8cc6b446f97bc3a257df4c7b + md5: 0f2a8f03a8eb0543a400494f444ebcfd + depends: + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 232361 + timestamp: 1707964647676 - kind: conda name: aws-c-common version: 0.9.13 @@ -1659,15 +2684,69 @@ packages: version: 0.9.13 build: hd590300_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.13-hd590300_0.conda - sha256: b113ee0822ff47ae7db10f75802aa0cde60cdada82d5d07e57c36daba146035f - md5: 0ba89522712d993987e6d0fae108c721 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.13-hd590300_0.conda + sha256: b113ee0822ff47ae7db10f75802aa0cde60cdada82d5d07e57c36daba146035f + md5: 0ba89522712d993987e6d0fae108c721 + depends: + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 225560 + timestamp: 1707964559211 +- kind: conda + name: aws-c-common + version: 0.9.14 + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda + sha256: 1d207a8aee42700763e6a7801c69721ccc06ce75e62e0e5d8fc6df0197c0a88b + md5: c620ac518f3086eaf4f105f64908a57c + license: Apache-2.0 + license_family: Apache + size: 208228 + timestamp: 1709669491258 +- kind: conda + name: aws-c-common + version: 0.9.14 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.14-h93a5062_0.conda + sha256: c58aea968814459ef485c1f1aeb889423b0fa808b7c1216d96d5282ff2e796ab + md5: 028bc18a1ef8bb1a4e4d6ec94e9b50da + license: Apache-2.0 + license_family: Apache + size: 203827 + timestamp: 1709669473014 +- kind: conda + name: aws-c-common + version: 0.9.14 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.14-hcfcfb64_0.conda + sha256: 46f4dced6c9d553d65e6f721d51ef43e6a343487a3073299c03a073161d7637f + md5: 169998d49ac3c4800187bfc546e1d165 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 222375 + timestamp: 1709669884758 +- kind: conda + name: aws-c-common + version: 0.9.14 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda + sha256: c71dd835b1d8c7097c8d152a65680f119a203b73a6a62c5aac414bafe5e997ad + md5: d44fe0d9a6971a4fb245be0055775d9d depends: - libgcc-ng >=12 license: Apache-2.0 license_family: Apache - size: 225560 - timestamp: 1707964559211 + size: 225655 + timestamp: 1709669368566 - kind: conda name: aws-c-compression version: 0.2.17 @@ -1720,6 +2799,68 @@ packages: license_family: Apache size: 18129 timestamp: 1701212675008 +- kind: conda + name: aws-c-compression + version: 0.2.18 + build: h00d1b86_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.18-h00d1b86_1.conda + sha256: f328392d70583dcb5ee49c95059fe086bafaae0d65c38bb9ec0b98ec6fb6a8fd + md5: 16f4516d03cbc0aba2bdda73db85ca37 + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 19873 + timestamp: 1708003535938 +- kind: conda + name: aws-c-compression + version: 0.2.18 + build: h4466546_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda + sha256: 7fcc6a924691f9de65c82fd559cb1cb2ebd121c42da544a9a43623d69a284e23 + md5: b0d9153fc7cfa8dc36b8703e1a59f5f3 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 19072 + timestamp: 1709815144275 +- kind: conda + name: aws-c-compression + version: 0.2.18 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h677d54c_2.conda + sha256: bbc73d8ec3d760d528f15edad66835d1fe63a035f254e760235e745cf360de20 + md5: 71e953c1c0fac25dd5d65d63d47389d8 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 17911 + timestamp: 1709815495665 +- kind: conda + name: aws-c-compression + version: 0.2.18 + build: h905ab21_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda + sha256: 021cee135f0d9b58fbc8d212618cd9bd6bd0012da41a6469edf010b2853dd3ef + md5: ffd7cfb55b1aa4e3eef477583b1ad87d + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 17930 + timestamp: 1709815482244 - kind: conda name: aws-c-compression version: 0.2.18 @@ -1769,6 +2910,24 @@ packages: license_family: Apache size: 18067 timestamp: 1708003629797 +- kind: conda + name: aws-c-compression + version: 0.2.18 + build: hf6fcf4e_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-hf6fcf4e_2.conda + sha256: ecb5ab2353c4499311fe17c82210955a498526c9563861777b3b0cd6dcc5cfea + md5: 6efdf7af73d7043a00394a2f1b039650 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 22366 + timestamp: 1709815905155 - kind: conda name: aws-c-compression version: 0.2.18 @@ -1862,6 +3021,25 @@ packages: license_family: Apache size: 54585 timestamp: 1708602875487 +- kind: conda + name: aws-c-event-stream + version: 0.4.2 + build: h128c7ac_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.2-h128c7ac_4.conda + sha256: 7e75f646a79e5eff69e9a73d859cdc94ae76a9a9d72f519ebef8314dfe331993 + md5: ff4fb2adfeee5bb13494feac3bc91b6b + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 55186 + timestamp: 1708602558232 - kind: conda name: aws-c-event-stream version: 0.4.2 @@ -1880,6 +3058,62 @@ packages: license_family: Apache size: 46870 timestamp: 1708602815747 +- kind: conda + name: aws-c-event-stream + version: 0.4.2 + build: h30f2259_6 + build_number: 6 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda + sha256: 65ea5552f7a87783b75a3ecf6e4acd2aee5357c4275a9932d732ee516acab0a9 + md5: 0923a8e81839b0b2d9787d85d635b196 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 46261 + timestamp: 1710264045535 +- kind: conda + name: aws-c-event-stream + version: 0.4.2 + build: h3df98b0_6 + build_number: 6 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-h3df98b0_6.conda + sha256: 823a4665b3d38a4078b34b6f891bd388400942a3bcbad55b4c6223c559b15de6 + md5: 80ca7e9993f6b0141ae5425a69771a9a + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 54211 + timestamp: 1710264185867 +- kind: conda + name: aws-c-event-stream + version: 0.4.2 + build: h59ac3ca_6 + build_number: 6 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-h59ac3ca_6.conda + sha256: 86db342fd921f17a50cf7648b45566b2449ac1408a94c2e6cae132b876f1c17c + md5: 7278d0ef10644f95a2dd619b9917e8a2 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 47119 + timestamp: 1710264020154 - kind: conda name: aws-c-event-stream version: 0.4.2 @@ -1898,6 +3132,25 @@ packages: license_family: Apache size: 46676 timestamp: 1708602620909 +- kind: conda + name: aws-c-event-stream + version: 0.4.2 + build: he635cd5_6 + build_number: 6 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda + sha256: 38a30beabafc1dd86c0264b6746315a1010e541a1b3ed7f97e1702873e5eaa51 + md5: 58fc78e523e35a08423c913751a51fde + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 53665 + timestamp: 1710263650074 - kind: conda name: aws-c-event-stream version: 0.4.2 @@ -1993,6 +3246,27 @@ packages: license_family: Apache size: 163076 timestamp: 1708602693889 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: h4e3df0f_7 + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.1-h4e3df0f_7.conda + sha256: 651bdcbe53630bf9665b76c18a6cb21a7b53fe347b03d88c1cb99ed0281c267e + md5: 08ba30d73686a5129f4209c25b31252a + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 180557 + timestamp: 1710264351681 - kind: conda name: aws-c-http version: 0.8.1 @@ -2012,6 +3286,43 @@ packages: license_family: Apache size: 195024 timestamp: 1708602547845 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: hbfc29b2_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda + sha256: 0dc5b73aa31cef3faeeb902a11f12e1244ac241f995d73e4f4e3e0c01622f7a1 + md5: 8476ec099649e9a6de52f7f4d916cd2a + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 194307 + timestamp: 1710263686092 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: hce3b3da_7 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda + sha256: a3e6bfd71bbc4119da1e79f2bce6094f045112c230b3fd5cc9e6ccd36aba3156 + md5: d287122dfb77c5fa0147fdf368c86d54 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 162710 + timestamp: 1710263951106 - kind: conda name: aws-c-http version: 0.8.1 @@ -2033,6 +3344,25 @@ packages: license_family: Apache size: 180105 timestamp: 1708603146126 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: he0aa6e1_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.1-he0aa6e1_5.conda + sha256: 40f254d4012a60733bc5428414bd72787d2198b8238a0d0dc799a0e666f3d788 + md5: 1397fefc62656680d66570c23d875198 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 188613 + timestamp: 1708602656753 - kind: conda name: aws-c-http version: 0.8.1 @@ -2051,6 +3381,24 @@ packages: license_family: Apache size: 151481 timestamp: 1708602772972 +- kind: conda + name: aws-c-http + version: 0.8.1 + build: hfe5d766_7 + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.1-hfe5d766_7.conda + sha256: 0a454c1280e87b4bfd3ab1d70498c5f60c62139ddcd06d1a68c39dcd81e05e75 + md5: 4096407e9d908ef9a292980f93034fcd + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-compression >=0.2.18,<0.2.19.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 151329 + timestamp: 1710264327114 - kind: conda name: aws-c-io version: 0.13.36 @@ -2126,6 +3474,24 @@ packages: license_family: Apache size: 159778 timestamp: 1708688290150 +- kind: conda + name: aws-c-io + version: 0.14.5 + build: h2bbb85f_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.5-h2bbb85f_1.conda + sha256: a6d25f44ec1b64387ede38fd8b066d7e3eedc77a4e9bb95197ec8a77fa02b236 + md5: 40573930eba2a6f2f19c16635457962f + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - libgcc-ng >=12 + - s2n >=1.4.5,<1.4.6.0a0 + license: Apache-2.0 + license_family: Apache + size: 160898 + timestamp: 1708687797361 - kind: conda name: aws-c-io version: 0.14.5 @@ -2176,6 +3542,70 @@ packages: license_family: Apache size: 136989 timestamp: 1708687976415 +- kind: conda + name: aws-c-io + version: 0.14.6 + build: h9ac2cdb_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.6-h9ac2cdb_0.conda + sha256: 1dcae62df79786292e841275994c9ded564eb49d7200284c09f7d61326a06c1b + md5: b0c80a8220ddc90196e3b76d856dc6b0 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 136547 + timestamp: 1710222457819 +- kind: conda + name: aws-c-io + version: 0.14.6 + build: h9e7f0e3_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h9e7f0e3_0.conda + sha256: bb9e7bee234532f7905faf4abc15e3a1be1d8f683b8a0d5863761daad18a7cac + md5: 3fef14ef6e79ea0da149cebb1d0635bf + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - s2n >=1.4.6,<1.4.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 157726 + timestamp: 1710222250665 +- kind: conda + name: aws-c-io + version: 0.14.6 + build: hf0b8b6f_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.6-hf0b8b6f_0.conda + sha256: ab046e34dcaa533d75f8f4892c63ec503812a69fa6e8d23bfbdb0d74926cdc40 + md5: aee3f042f60da448ab622b0a149d6ec2 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 160412 + timestamp: 1710222753707 +- kind: conda + name: aws-c-io + version: 0.14.6 + build: hf76ed93_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_0.conda + sha256: 824eb1fcf69f67c4fee4e05fd401dba6d5c55f9e37e3cb9904b8b81909e3c3be + md5: 586e11f2969f1f2a61104c5cec8a7957 + depends: + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 137968 + timestamp: 1710222523409 - kind: conda name: aws-c-mqtt version: 0.10.0 @@ -2286,6 +3716,24 @@ packages: license_family: Apache size: 164421 timestamp: 1708620822368 +- kind: conda + name: aws-c-mqtt + version: 0.10.2 + build: hf974719_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.2-hf974719_4.conda + sha256: 8f24dc8fa19429c4599159ae9a68f2e90418e3471adb273fab112cd122cba0af + md5: 9addf6456c59c94686fe2dfdd9f8c43d + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 146210 + timestamp: 1708620468353 - kind: conda name: aws-c-mqtt version: 0.10.2 @@ -2306,6 +3754,78 @@ packages: license_family: Apache size: 157819 timestamp: 1708621381498 +- kind: conda + name: aws-c-mqtt + version: 0.10.3 + build: h96fac68_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.3-h96fac68_2.conda + sha256: 70b62dcf6314a9e1f514fe6f838eb02dfc4a28f4d17723768211a60c28c3429b + md5: 463c0be9e1fb416192174156f58bb2af + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 157436 + timestamp: 1710283031953 +- kind: conda + name: aws-c-mqtt + version: 0.10.3 + build: ha335edc_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda + sha256: 99304e5095193b937745d0ce6812d0333186a31c41a51b1e4297ddcd962824eb + md5: c8bacb9a988fd8fb6b560a966c4979a8 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 139008 + timestamp: 1710282888188 +- kind: conda + name: aws-c-mqtt + version: 0.10.3 + build: hb8a1441_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.3-hb8a1441_2.conda + sha256: 344ba23eb2cd45105a09d775dd7449e17304b3930d5ff08fbc1426f0f8030b08 + md5: 26421a2d8a329048bb1a5673ce620de5 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + license: Apache-2.0 + license_family: Apache + size: 117955 + timestamp: 1710282576148 +- kind: conda + name: aws-c-mqtt + version: 0.10.3 + build: hffff1cc_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda + sha256: 6b2de4a0e6e907310127b1025a0030d023e1051da48ea5821dcc6db094d69ab7 + md5: 14ad8defb307e1edb293c3fc9da8648f + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 163172 + timestamp: 1710282530222 - kind: conda name: aws-c-s3 version: 0.4.7 @@ -2372,8 +3892,31 @@ packages: platform: osx license: Apache-2.0 license_family: Apache - size: 90455 - timestamp: 1704321754265 + size: 90455 + timestamp: 1704321754265 +- kind: conda + name: aws-c-s3 + version: 0.5.2 + build: h08df315_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.5.2-h08df315_2.conda + sha256: 2f7af939a87176de471bac1a1c6cc7336c714a64c495f1a5d967e0cfa7bb0e07 + md5: 0a7a232878640624469d3ca4923d146b + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 101487 + timestamp: 1710296653111 - kind: conda name: aws-c-s3 version: 0.5.2 @@ -2393,6 +3936,69 @@ packages: license_family: Apache size: 90732 timestamp: 1709172899774 +- kind: conda + name: aws-c-s3 + version: 0.5.2 + build: h170583c_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.5.2-h170583c_0.conda + sha256: a1ff6af6f8c03eb4f4d738a2bab006ad7c46580bef9613b2f53b0d98c47b1192 + md5: b8c6ea0b0244487e9cc579393c1dbf70 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 109725 + timestamp: 1709172552237 +- kind: conda + name: aws-c-s3 + version: 0.5.2 + build: h4398043_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.2-h4398043_2.conda + sha256: 27e90ada0ae6895159a49bc4ed7172b2757cd8fc63e0189dd8cce5d057c6ee06 + md5: 5ddebd5447f4baba6215b1bafcf605dc + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + license: Apache-2.0 + license_family: Apache + size: 90478 + timestamp: 1710296516337 +- kind: conda + name: aws-c-s3 + version: 0.5.2 + build: h4893938_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.2-h4893938_2.conda + sha256: 312d67b236c9c6003f92f682c55ff344721f79d50d9a4bcdea44f2144f637642 + md5: 7e24759a8b8ead67ce687f3c31ffd12f + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 105455 + timestamp: 1710296220268 - kind: conda name: aws-c-s3 version: 0.5.2 @@ -2436,6 +4042,26 @@ packages: license_family: Apache size: 101468 timestamp: 1709173131467 +- kind: conda + name: aws-c-s3 + version: 0.5.2 + build: h6f42f56_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.2-h6f42f56_2.conda + sha256: 950a37ab27ec0145a4c92a3524b8862a4f5affec08049dda7b9ab83403969fd6 + md5: 9f5dc9ef044d3c13b0959d04a2005753 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + license: Apache-2.0 + license_family: Apache + size: 91371 + timestamp: 1710296654896 - kind: conda name: aws-c-s3 version: 0.5.2 @@ -2504,6 +4130,68 @@ packages: license_family: Apache size: 47467 timestamp: 1701999663058 +- kind: conda + name: aws-c-sdkutils + version: 0.1.15 + build: h00d1b86_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.15-h00d1b86_1.conda + sha256: e2ec786734acca3a7449f27aee7052f93e627a76459c3718a4d9236b0e813dad + md5: 222e0288b02a00e62232dde9ff479146 + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 57857 + timestamp: 1708014280193 +- kind: conda + name: aws-c-sdkutils + version: 0.1.15 + build: h4466546_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda + sha256: 349a05cf5fbcb3f6f358fc05098b210aa7da4ec3ab6d4719c79bb93b50a629f8 + md5: 258194cedccd33fd8a7b95a8aa105015 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 55383 + timestamp: 1709830510021 +- kind: conda + name: aws-c-sdkutils + version: 0.1.15 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.15-h677d54c_2.conda + sha256: 02649707625df0c8908fd807f5d599b5f60b90d7b4e0e71953ff10b9aa0f010c + md5: a68e269534f50d5a94107b9b9b6be747 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 48880 + timestamp: 1709830883787 +- kind: conda + name: aws-c-sdkutils + version: 0.1.15 + build: h905ab21_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda + sha256: 77f58ac3aec0cd987f80e202a8197e123beb13b9b25b0137dd921c7a6ddc86ac + md5: bb1523b7de7ac6f112b1992cfcfb250b + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 50028 + timestamp: 1709830709542 - kind: conda name: aws-c-sdkutils version: 0.1.15 @@ -2553,6 +4241,24 @@ packages: license_family: Apache size: 50255 timestamp: 1708014587926 +- kind: conda + name: aws-c-sdkutils + version: 0.1.15 + build: hf6fcf4e_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.15-hf6fcf4e_2.conda + sha256: 03f361182431688732e7173f0d71e5778e0616e68d9ebf994d3ecb70483468a0 + md5: 87fb9f67d4c936a704d6a23a748fad77 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 54282 + timestamp: 1709830762581 - kind: conda name: aws-c-sdkutils version: 0.1.15 @@ -2620,6 +4326,68 @@ packages: license_family: Apache size: 48848 timestamp: 1701246965518 +- kind: conda + name: aws-checksums + version: 0.1.18 + build: h00d1b86_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.18-h00d1b86_1.conda + sha256: abe3046db1238044d236c01512d41ca743812510bc39da9d0d2b9726520e82df + md5: c4824ce78b16799e1f93e7f9b0f56b5e + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 50114 + timestamp: 1708017850698 +- kind: conda + name: aws-checksums + version: 0.1.18 + build: h4466546_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda + sha256: 9080f064f572ac1747d32b4dff30452ff44ef2df399e6ec7bf9730da1eb99bba + md5: 8a04fc5a5ecaba31f66904b47dcc7797 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - libgcc-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 49940 + timestamp: 1709826415680 +- kind: conda + name: aws-checksums + version: 0.1.18 + build: h677d54c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-h677d54c_2.conda + sha256: 3a7cc8824a23a39478e479865df20d88c12a954895fb9c8a91152cc76976183a + md5: 21b73ab89b82b17ae50d635ce675fea6 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 48836 + timestamp: 1709826804838 +- kind: conda + name: aws-checksums + version: 0.1.18 + build: h905ab21_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda + sha256: 5760728e7320a01519bcbbae8dcd31b86e819f66c58f641b86b27ce592e5fff3 + md5: f17e778398011e88d45edf58f24c18ae + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + license: Apache-2.0 + license_family: Apache + size: 48733 + timestamp: 1709826868797 - kind: conda name: aws-checksums version: 0.1.18 @@ -2669,6 +4437,24 @@ packages: license_family: Apache size: 48808 timestamp: 1708017957232 +- kind: conda + name: aws-checksums + version: 0.1.18 + build: hf6fcf4e_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.18-hf6fcf4e_2.conda + sha256: 1a67c0ee80cb2d18bd7cfc9ec1aae2ad78d51adc7ac9442ec70e370bbcef24de + md5: ffa6601a628ccc6ec5eddb0def2db1d2 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 52016 + timestamp: 1709827173669 - kind: conda name: aws-checksums version: 0.1.18 @@ -2787,6 +4573,31 @@ packages: license_family: Apache size: 216464 timestamp: 1709208473555 +- kind: conda + name: aws-crt-cpp + version: 0.26.2 + build: h07bb24a_7 + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.26.2-h07bb24a_7.conda + sha256: 08b125c53613c7363bba10b90543fe9744b5b5412cf01c635b795a5e586c0ff4 + md5: bfd628a5808085446ae16cbdfb0b934b + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 260420 + timestamp: 1709208294949 - kind: conda name: aws-crt-cpp version: 0.26.2 @@ -2802,66 +4613,165 @@ packages: - aws-c-common >=0.9.13,<0.9.14.0a0 - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.5,<0.14.6.0a0 - - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 333814 + timestamp: 1709208341782 +- kind: conda + name: aws-crt-cpp + version: 0.26.2 + build: h56a5195_7 + build_number: 7 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.2-h56a5195_7.conda + sha256: 3899ccca939b94adde813be207181cfae00d1211efa68613d4ba1828c9a39f0a + md5: 62ae597a0641cbcbf68a06beec4ac313 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 280702 + timestamp: 1709208918309 +- kind: conda + name: aws-crt-cpp + version: 0.26.2 + build: h8492d2a_7 + build_number: 7 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.2-h8492d2a_7.conda + sha256: 99bd606407c723da49ce9e831d2764849d44b48d9d7bfd8b36db20edda301ded + md5: 444af8c6a4c76298b6322807c25df166 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.5,<0.14.6.0a0 + - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 242812 + timestamp: 1709208518468 +- kind: conda + name: aws-crt-cpp + version: 0.26.3 + build: h0de420c_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.3-h0de420c_2.conda + sha256: 578ffab0c981ea227d5a9d70b32af5bcba58c632d0f8b38d4eb1ed88cc05eaaa + md5: e6d964373064af06199c6e4dff9f174e + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 + - aws-c-s3 >=0.5.2,<0.5.3.0a0 + - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 + - libcxx >=16 + license: Apache-2.0 + license_family: Apache + size: 218109 + timestamp: 1710309757551 +- kind: conda + name: aws-crt-cpp + version: 0.26.3 + build: h137ae52_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.3-h137ae52_2.conda + sha256: 596b6d63352b7ae189842dc86510d53438f88d1e2c1d56779eeebc130beef2b6 + md5: 21c8acfdfa31ab5582897dda7c9c8a75 + depends: + - aws-c-auth >=0.7.16,<0.7.17.0a0 + - aws-c-cal >=0.6.10,<0.6.11.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-c-http >=0.8.1,<0.8.2.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 - aws-c-s3 >=0.5.2,<0.5.3.0a0 - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - libgcc-ng >=12 - libstdcxx-ng >=12 license: Apache-2.0 license_family: Apache - size: 333814 - timestamp: 1709208341782 + size: 333634 + timestamp: 1710309442818 - kind: conda name: aws-crt-cpp - version: 0.26.2 - build: h56a5195_7 - build_number: 7 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.2-h56a5195_7.conda - sha256: 3899ccca939b94adde813be207181cfae00d1211efa68613d4ba1828c9a39f0a - md5: 62ae597a0641cbcbf68a06beec4ac313 + version: 0.26.3 + build: h6047f0a_2 + build_number: 2 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.3-h6047f0a_2.conda + sha256: 1cb3c3f8d0b19dad52eaa64758629f47aea88591cf3bc354fcb87c0923dc9e73 + md5: 5c8a2ba1c7a6477b10d0bcd33ee1202f depends: - aws-c-auth >=0.7.16,<0.7.17.0a0 - aws-c-cal >=0.6.10,<0.6.11.0a0 - - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.5,<0.14.6.0a0 - - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 - aws-c-s3 >=0.5.2,<0.5.3.0a0 - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - libcxx >=16 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: Apache - size: 280702 - timestamp: 1709208918309 + size: 242851 + timestamp: 1710309795536 - kind: conda name: aws-crt-cpp - version: 0.26.2 - build: h8492d2a_7 - build_number: 7 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.26.2-h8492d2a_7.conda - sha256: 99bd606407c723da49ce9e831d2764849d44b48d9d7bfd8b36db20edda301ded - md5: 444af8c6a4c76298b6322807c25df166 + version: 0.26.3 + build: hf5b2fc6_2 + build_number: 2 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.3-hf5b2fc6_2.conda + sha256: d4ec9488f2052276b4b119e62b2b08df52deec3e38dc7c57311f51413046de8b + md5: bcea6861674e784e2eb2f1de4f3bac35 depends: - aws-c-auth >=0.7.16,<0.7.17.0a0 - aws-c-cal >=0.6.10,<0.6.11.0a0 - - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-common >=0.9.14,<0.9.15.0a0 - aws-c-event-stream >=0.4.2,<0.4.3.0a0 - aws-c-http >=0.8.1,<0.8.2.0a0 - - aws-c-io >=0.14.5,<0.14.6.0a0 - - aws-c-mqtt >=0.10.2,<0.10.3.0a0 + - aws-c-io >=0.14.6,<0.14.7.0a0 + - aws-c-mqtt >=0.10.3,<0.10.4.0a0 - aws-c-s3 >=0.5.2,<0.5.3.0a0 - aws-c-sdkutils >=0.1.15,<0.1.16.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - libcxx >=16 license: Apache-2.0 license_family: Apache - size: 242812 - timestamp: 1709208518468 + size: 280273 + timestamp: 1710309758427 - kind: conda name: aws-sdk-cpp version: 1.11.210 @@ -2935,6 +4845,50 @@ packages: license_family: Apache size: 3267017 timestamp: 1704353210503 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: h232afc9_3 + build_number: 3 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-h232afc9_3.conda + sha256: d83b5e4728d61f996115251fbb1670b79c6b5c0a02f2f1f458b80a6b06b08eb1 + md5: f707d57fee350a6b47726b2996f8e4e1 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3367065 + timestamp: 1710323636919 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: h2fb64bc_3 + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.267-h2fb64bc_3.conda + sha256: 5ad2be70779844380b8b8567814ed3966ef2efd9c48cc258975cec7f072c9753 + md5: e11e8d3c0ca63039e4b8101a5063fa30 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3423557 + timestamp: 1710323443841 - kind: conda name: aws-sdk-cpp version: 1.11.267 @@ -2957,6 +4911,28 @@ packages: license_family: Apache size: 3375381 timestamp: 1708527712169 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: h558341a_3 + build_number: 3 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.267-h558341a_3.conda + sha256: 886817ef6b059f715ab3d93025d5306c5046688fdbdade21f6fb3ce33e053561 + md5: 42633be391d0a113f39356a37ce7ea40 + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 3409008 + timestamp: 1710323920901 - kind: conda name: aws-sdk-cpp version: 1.11.267 @@ -3024,65 +5000,125 @@ packages: license_family: Apache size: 3413748 timestamp: 1708528552370 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: he0cb598_3 + build_number: 3 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-he0cb598_3.conda + sha256: 55bf5d47ba2591507abb9b2120905cdb0b1834b2867f03c6cff4bb88f7ec7c58 + md5: ca4aebdc89bb9b08b3b6dd68ae09080d + depends: + - aws-c-common >=0.9.14,<0.9.15.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3636564 + timestamp: 1710322529863 +- kind: conda + name: aws-sdk-cpp + version: 1.11.267 + build: hfce6cab_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.267-hfce6cab_1.conda + sha256: 735f6c624215c384ad89729debf176620299e2923f8981d7e2acbb44cda6c52d + md5: 0d759609cfe4bd61b7a90f2d29185d84 + depends: + - aws-c-common >=0.9.13,<0.9.14.0a0 + - aws-c-event-stream >=0.4.2,<0.4.3.0a0 + - aws-checksums >=0.1.18,<0.1.19.0a0 + - aws-crt-cpp >=0.26.2,<0.26.3.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 3409636 + timestamp: 1708527387032 - kind: conda name: binaryen - version: '116' - build: h13dd4ca_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-116-h13dd4ca_0.conda - sha256: 80aba7f9d8f311ba103e6a4806231a404b0f39f130be5af07ea9574cd42afebf - md5: e4aad775b4f2c3b336b8e2eea63eaff2 + version: '117' + build: h2f0025b_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/binaryen-117-h2f0025b_0.conda + sha256: 3820ab878d1a20792271a37440da1d304b36e26effff6f302592d5098cefa496 + md5: 69f34782ba69df988531f13d6bcc4385 depends: - - libcxx >=15.0.7 + - libgcc-ng >=12 + - libstdcxx-ng >=12 license: Apache-2.0 - license_family: APACHE - size: 3505018 - timestamp: 1694723361260 + size: 5372762 + timestamp: 1710444374732 - kind: conda name: binaryen - version: '116' + version: '117' build: h59595ed_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/binaryen-116-h59595ed_0.conda - sha256: 84704b46b2bfde6d35fdd479bfe2769a6ef4c899677618ce1d6f8c926657cbf8 - md5: 52dff2370624a2be1e323c41e3882ed4 + url: https://conda.anaconda.org/conda-forge/linux-64/binaryen-117-h59595ed_0.conda + sha256: f6d7f876c514d2d138fd8b06e485b042598cf3dcda40a8a346252bb7e1adf8d7 + md5: 58aea5eaef8cb663104654734d432ba3 depends: - libgcc-ng >=12 - libstdcxx-ng >=12 license: Apache-2.0 license_family: APACHE - size: 5215096 - timestamp: 1694722302360 + size: 5783056 + timestamp: 1709092512197 - kind: conda name: binaryen - version: '116' + version: '117' build: h63175ca_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/binaryen-116-h63175ca_0.conda - sha256: 531c4be009192cfb1b53ef1724fc3c670d16f629c20a77b5664b90f3c4d048c9 - md5: eee203f471868cf9c078ddfae586f221 + url: https://conda.anaconda.org/conda-forge/win-64/binaryen-117-h63175ca_0.conda + sha256: 2cc0e433360f7c4a5ce8e2b5f8960cfba8675b6b3232830da7e6f8403c6b4186 + md5: b0028cf00bb7d8f3fd8075de8165b1a8 depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: APACHE - size: 36575639 - timestamp: 1694723421705 + size: 40046563 + timestamp: 1709093094826 - kind: conda name: binaryen - version: '116' - build: he965462_0 + version: '117' + build: h73e2aa4_0 subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/binaryen-116-he965462_0.conda - sha256: ccdf062ca035f8087619c454d3a676dd1598626ee753799cdf8cba1e497bebbd - md5: 8c5fcc736f62d68f1807f87b3f36708b + url: https://conda.anaconda.org/conda-forge/osx-64/binaryen-117-h73e2aa4_0.conda + sha256: f1dae7bbbdae9ee2f4b3479b51578fc67e77d54c5c235a5e5c7c1c58b2fff13e + md5: 029b1d804ba237f99163740225d53abc depends: - - libcxx >=15.0.7 + - libcxx >=16 license: Apache-2.0 license_family: APACHE - size: 3440338 - timestamp: 1694723081095 + size: 3797571 + timestamp: 1709093347983 +- kind: conda + name: binaryen + version: '117' + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/binaryen-117-hebf3989_0.conda + sha256: 9f4696ff6bf7a43261e549c1142dc24f45905fff68a6c0a1ebbdd0a84acd9056 + md5: 26d849f5539e7e20d8b7465a3616a622 + depends: + - libcxx >=16 + license: Apache-2.0 + license_family: APACHE + size: 3466426 + timestamp: 1709092708128 - kind: conda name: binutils version: '2.40' @@ -3209,6 +5245,49 @@ packages: license_family: MIT size: 386618 timestamp: 1708248490085 +- kind: conda + name: black + version: 24.2.0 + build: py311hec3470c_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/black-24.2.0-py311hec3470c_0.conda + sha256: 44600ae70a8fca4ea1fda9c86818e2a5a58c23b3b03a27b1de9079f5f022c193 + md5: 5f1d486090d858df5fd90f2137b27e53 + depends: + - click >=8.0.0 + - mypy_extensions >=0.4.3 + - packaging >=22.0 + - pathspec >=0.9 + - platformdirs >=2 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 386639 + timestamp: 1708248423560 +- kind: conda + name: blackdoc + version: 0.3.8 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/blackdoc-0.3.8-pyhd8ed1ab_0.tar.bz2 + sha256: ec7b75c0f88db3e8c8b506ec48fa4fa210b0c1d09b0969df726a68b5563d151d + md5: c03749cb0d5874fd5b9c1620a3d230c4 + depends: + - black + - importlib-metadata + - more-itertools + - python >=3.7 + - rich + - tomli + license: MIT + license_family: MIT + purls: + - pkg:pypi/blackdoc + size: 30092 + timestamp: 1667565048643 - kind: conda name: blackdoc version: 0.3.8 @@ -3229,6 +5308,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/blackdoc size: 30092 timestamp: 1667565048643 - kind: conda @@ -3259,6 +5340,21 @@ packages: license_family: BSD size: 127885 timestamp: 1699280178474 +- kind: conda + name: bzip2 + version: 1.0.8 + build: h31becfc_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h31becfc_5.conda + sha256: b9f170990625cb1eeefaca02e091dc009a64264b077166d8ed7aeb7a09e923b0 + md5: a64e35f01e0b7a2a152eca87d33b9c87 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 189668 + timestamp: 1699280060686 - kind: conda name: bzip2 version: 1.0.8 @@ -3436,6 +5532,44 @@ packages: license_family: MIT size: 162725 timestamp: 1706299899438 +- kind: conda + name: c-ares + version: 1.27.0 + build: h10d778d_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.27.0-h10d778d_0.conda + sha256: a53e14c071dcce756ce80673f2a90a1c6dff695a26bc9f5e54d56b55e76ee3dc + md5: 713dd57081dfe8535eb961b45ed26a0c + license: MIT + license_family: MIT + size: 148568 + timestamp: 1708685147963 +- kind: conda + name: c-ares + version: 1.27.0 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.27.0-h31becfc_0.conda + sha256: 4152e674377179b35d59ddd9218411477a206ecff5f5939dfc963f997cf3b8b8 + md5: f03f76a77d690f2d31ce12e7b4e12ae4 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 170421 + timestamp: 1708684764494 +- kind: conda + name: c-ares + version: 1.27.0 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.27.0-h93a5062_0.conda + sha256: a168e53ee462980cd78b324e055afdd00080ded378ca974969a0917eb4ae1ccb + md5: d3579ba506791b1f8f8a16cfc2885326 + license: MIT + license_family: MIT + size: 145697 + timestamp: 1708685057216 - kind: conda name: c-ares version: 1.27.0 @@ -3452,6 +5586,20 @@ packages: license_family: MIT size: 153934 timestamp: 1708685329364 +- kind: conda + name: c-ares + version: 1.27.0 + build: hd590300_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.27.0-hd590300_0.conda + sha256: 2a5866b19d28cb963fab291a62ff1c884291b9d6f59de14643e52f103e255749 + md5: f6afff0e9ee08d2f1b897881a4f38cdb + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 163578 + timestamp: 1708684786032 - kind: conda name: c-compiler version: 1.6.0 @@ -3584,6 +5732,17 @@ packages: license: ISC size: 155432 timestamp: 1706843687645 +- kind: conda + name: ca-certificates + version: 2024.2.2 + build: hcefe29a_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.2.2-hcefe29a_0.conda + sha256: 0f6b34d835e26e5fa97cca4985dc46f0aba551a3a23f07c6f13cca2542b8c642 + md5: 57c226edb90c4e973b9b7503537dd339 + license: ISC + size: 155738 + timestamp: 1706845723412 - kind: conda name: ca-certificates version: 2024.2.2 @@ -3805,6 +5964,25 @@ packages: license_family: Apache size: 692537 timestamp: 1706894104516 +- kind: conda + name: clang-format + version: 16.0.6 + build: default_h127d8a8_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16.0.6-default_h127d8a8_5.conda + sha256: 8ae23380654712d8e8440871419cd8409903c3e2fd7c051978f2923e662a9c92 + md5: 1fe9ee2e961ecae22f5a0413b34f9f5d + depends: + - clang-format-16 16.0.6 default_h127d8a8_5 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21690 + timestamp: 1709765119029 - kind: conda name: clang-format version: 16.0.6 @@ -3859,6 +6037,25 @@ packages: license_family: Apache size: 21613 timestamp: 1704262844623 +- kind: conda + name: clang-format + version: 16.0.6 + build: default_hb368394_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-format-16.0.6-default_hb368394_5.conda + sha256: e56e743bc4db5e85cebc479479c8ac6fd8be73effb3d40071f027b5ead77be8a + md5: 566748cfa5d501ed00b28612daa0bae7 + depends: + - clang-format-16 16.0.6 default_hb368394_5 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21892 + timestamp: 1706896136958 - kind: conda name: clang-format version: 16.0.6 @@ -3877,6 +6074,24 @@ packages: license_family: Apache size: 21914 timestamp: 1706894694897 +- kind: conda + name: clang-format-16 + version: 16.0.6 + build: default_h127d8a8_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16-16.0.6-default_h127d8a8_5.conda + sha256: 9843007a8ffd53008240aec77b74068733daf5a00c60480d0978d05146511522 + md5: 72cd7fd253434f1c6c6ee0af962ee700 + depends: + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 61980 + timestamp: 1709765062005 - kind: conda name: clang-format-16 version: 16.0.6 @@ -3912,6 +6127,24 @@ packages: license_family: Apache size: 61766 timestamp: 1704262713061 +- kind: conda + name: clang-format-16 + version: 16.0.6 + build: default_hb368394_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-format-16-16.0.6-default_hb368394_5.conda + sha256: 9c7bb588c975f100298736a0d4582a4b860071bb31ca195c2bdeaa1644681510 + md5: fb61b4171f7357ed8a6e38be8782628f + depends: + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 63067 + timestamp: 1706896079312 - kind: conda name: clang-format-16 version: 16.0.6 @@ -3927,8 +6160,34 @@ packages: - libllvm16 >=16.0.6,<16.1.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 56848 - timestamp: 1706894594045 + size: 56848 + timestamp: 1706894594045 +- kind: conda + name: clang-tools + version: 16.0.6 + build: default_h127d8a8_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-16.0.6-default_h127d8a8_5.conda + sha256: 4b1c26e1058995181efcbd31b9d952241f9c561aad79ca6b7261ec7dc4796bd7 + md5: a85978ea2f9ea8b3a0c0b5ccea48a42e + depends: + - clang-format 16.0.6 default_h127d8a8_5 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libclang13 >=16.0.6 + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + constrains: + - clangdev 16.0.6 + - clang 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26812015 + timestamp: 1709765163586 - kind: conda name: clang-tools version: 16.0.6 @@ -4008,6 +6267,32 @@ packages: license_family: Apache size: 26681224 timestamp: 1704262959552 +- kind: conda + name: clang-tools + version: 16.0.6 + build: default_hb368394_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-tools-16.0.6-default_hb368394_5.conda + sha256: e7fa9cf87f0cfda820c177247dd184ecd139751d43219dc864c665b02f4944a7 + md5: 7e2843f2ab82c0d7f31d07b4eafd105f + depends: + - clang-format 16.0.6 default_hb368394_5 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libclang13 >=16.0.6 + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + constrains: + - clangdev 16.0.6 + - clang 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26926170 + timestamp: 1706896230135 - kind: conda name: clang-tools version: 16.0.6 @@ -4199,6 +6484,24 @@ packages: license_family: BSD size: 19330 timestamp: 1706832814124 +- kind: conda + name: click + version: 8.1.7 + build: unix_pyh707e725_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec + md5: f3ad426304898027fc619827ff428eca + depends: + - __unix + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click + size: 84437 + timestamp: 1692311973840 - kind: conda name: click version: 8.1.7 @@ -4215,8 +6518,29 @@ packages: platform: osx license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/click size: 84437 timestamp: 1692311973840 +- kind: conda + name: click + version: 8.1.7 + build: win_pyh7428d3b_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda + sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0 + md5: 3549ecbceb6cd77b91a105511b7d0786 + depends: + - __win + - colorama + - python >=3.8 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/click + size: 85051 + timestamp: 1692312207348 - kind: conda name: click version: 8.1.7 @@ -4234,6 +6558,8 @@ packages: platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/click size: 85051 timestamp: 1692312207348 - kind: conda @@ -4283,6 +6609,30 @@ packages: license_family: BSD size: 18494905 timestamp: 1695269729661 +- kind: conda + name: cmake + version: 3.27.6 + build: hef020d8_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-3.27.6-hef020d8_0.conda + sha256: 099e3d6deac7fc29251552f87b59ee7299582caf291a20de71107327a4aded57 + md5: e20b2e0185007a671ebbb72f4353d70b + depends: + - 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 + license: BSD-3-Clause + license_family: BSD + size: 17776308 + timestamp: 1695269663260 - kind: conda name: cmake version: 3.27.6 @@ -4332,85 +6682,51 @@ packages: name: colorama version: 0.4.6 build: pyhd8ed1ab_0 - subdir: win-64 + subdir: noarch noarch: python url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 md5: 3faab06a954c2a04039983f2c4a50d99 depends: - python >=3.7 - arch: x86_64 - platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/colorama size: 25170 timestamp: 1666700778190 - kind: conda - name: colorlog - version: 4.8.0 - build: py311h1ea47a8_3 - build_number: 3 + name: colorama + version: 0.4.6 + build: pyhd8ed1ab_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/colorlog-4.8.0-py311h1ea47a8_3.conda - sha256: 3b317933f05df326e327faafcf1fd1be643df36f1aa479aab54f2a85062307f0 - md5: 9881fe3cbeed11cd8138a28c4c9d1f94 - depends: - - colorama - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - license: MIT - license_family: MIT - size: 20460 - timestamp: 1697027322301 -- kind: conda - name: colorlog - version: 4.8.0 - build: py311h267d04e_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/colorlog-4.8.0-py311h267d04e_3.conda - sha256: 86dcaba5a3cd40e9752aa08221c45997a434cf2917d0b32eea56d788522a514a - md5: e4b2335855768eade29813b85342c990 - depends: - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 - license: MIT - license_family: MIT - size: 20239 - timestamp: 1697027319606 -- kind: conda - name: colorlog - version: 4.8.0 - build: py311h38be061_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/colorlog-4.8.0-py311h38be061_3.conda - sha256: bb52f32dfd32fe73691eebcbb336103db8167c26134c56123b26dc9808a684fa - md5: 09b2eea88d971b3986ac2cb47c9ea99f + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: 3faab06a954c2a04039983f2c4a50d99 depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - license: MIT - license_family: MIT - size: 19834 - timestamp: 1697026997816 -- kind: conda + - python >=3.7 + arch: x86_64 + platform: win + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/colorama + size: 25170 + timestamp: 1666700778190 +- kind: pypi name: colorlog - version: 4.8.0 - build: py311h6eed73b_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/colorlog-4.8.0-py311h6eed73b_3.conda - sha256: b929b2da9e782b6a2f7b559e32e443293c3ecdf628918fc685db928b5570460f - md5: cd35ca12286652e78d1d4c457b6e5a98 - depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - license: MIT - license_family: MIT - size: 20046 - timestamp: 1697027212659 + version: 6.8.2 + url: https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl + sha256: 4dcbb62368e2800cb3c5abd348da7e53f6c362dda502ec27c560b2e58a66bd33 + requires_dist: + - colorama ; sys_platform == 'win32' + - black ; extra == 'development' + - flake8 ; extra == 'development' + - mypy ; extra == 'development' + - pytest ; extra == 'development' + - types-colorama ; extra == 'development' + requires_python: '>=3.6' - kind: conda name: compiler-rt version: 16.0.6 @@ -4526,38 +6842,11 @@ packages: license: BSD size: 6415 timestamp: 1701504710176 -- kind: conda - name: distlib - version: 0.3.7 - build: pyhd8ed1ab_0 - subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda - sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 - md5: 12d8aae6994f342618443a8f05c652a0 - depends: - - python 2.7|>=3.6 - arch: x86_64 - platform: win - license: Apache-2.0 - license_family: APACHE - size: 273692 - timestamp: 1689598624555 -- kind: conda +- kind: pypi name: distlib version: 0.3.8 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda - sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e - md5: db16c66b759a64dc5183d69cc3745a52 - depends: - - python 2.7|>=3.6 - license: Apache-2.0 - license_family: APACHE - size: 274915 - timestamp: 1702383349284 + url: https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl + sha256: 034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784 - kind: conda name: doxygen version: 1.9.7 @@ -4591,6 +6880,23 @@ packages: license_family: GPL size: 6179024 timestamp: 1687332729384 +- kind: conda + name: doxygen + version: 1.9.7 + build: h7b6a552_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.9.7-h7b6a552_1.conda + sha256: cb4e2a628da54bf13d2decd9bbe982c611c216eb82b5ab826da59397492babd8 + md5: f619530bed063f8498eb2e15de71cf32 + depends: + - libgcc-ng >=12 + - libiconv >=1.17,<2.0a0 + - libstdcxx-ng >=12 + license: GPL-2.0-only + license_family: GPL + size: 5785379 + timestamp: 1687332318274 - kind: conda name: doxygen version: 1.9.7 @@ -4640,6 +6946,8 @@ packages: platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/exceptiongroup size: 19262 timestamp: 1692026296517 - kind: conda @@ -4655,24 +6963,28 @@ packages: depends: - python >=3.7 license: MIT and PSF-2.0 + purls: + - pkg:pypi/exceptiongroup size: 20551 timestamp: 1704921321122 -- kind: conda +- kind: pypi name: filelock version: 3.13.1 - build: pyhd8ed1ab_0 - subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda - sha256: 4d742d91412d1f163e5399d2b50c5d479694ebcd309127abb549ca3977f89d2b - md5: 0c1729b74a8152fde6a38ba0a2ab9f45 - depends: - - python >=3.7 - arch: x86_64 - platform: win - license: Unlicense - size: 15605 - timestamp: 1698715139726 + url: https://files.pythonhosted.org/packages/81/54/84d42a0bee35edba99dee7b59a8d4970eccdd44b99fe728ed912106fc781/filelock-3.13.1-py3-none-any.whl + sha256: 57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c + requires_dist: + - furo >=2023.9.10 ; extra == 'docs' + - sphinx-autodoc-typehints !=1.23.4, >=1.24 ; extra == 'docs' + - sphinx >=7.2.6 ; extra == 'docs' + - covdefaults >=2.3 ; extra == 'testing' + - coverage >=7.3.2 ; extra == 'testing' + - diff-cover >=8 ; extra == 'testing' + - pytest-cov >=4.1 ; extra == 'testing' + - pytest-mock >=3.12 ; extra == 'testing' + - pytest-timeout >=2.2 ; extra == 'testing' + - pytest >=7.4.3 ; extra == 'testing' + - typing-extensions >=4.8 ; python_version < '3.11' and extra == 'typing' + requires_python: '>=3.8' - kind: conda name: flatbuffers version: 23.5.26 @@ -4736,6 +7048,80 @@ packages: license_family: APACHE size: 1303407 timestamp: 1685304046679 +- kind: conda + name: flatbuffers + version: 24.3.7 + build: h2f0025b_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/flatbuffers-24.3.7-h2f0025b_0.conda + sha256: 4284097708db3645f85dd0a9bbacfdd43d50ed1ad6cde0ebebfa24dac2518b83 + md5: 418752006d8190594749f21530c27fb5 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 1298784 + timestamp: 1710058440028 +- kind: conda + name: flatbuffers + version: 24.3.7 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/flatbuffers-24.3.7-h59595ed_0.conda + sha256: 30b53ebe46e902ea80479406d8d849f6d552d1f3ea4ee0eef6048a7a2201d93e + md5: e72ffaf09c193f6bebbb0054079ab7d1 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 1453620 + timestamp: 1710058292298 +- kind: conda + name: flatbuffers + version: 24.3.7 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/flatbuffers-24.3.7-h63175ca_0.conda + sha256: 40613c4386464f2a1fa8ccebf1a38fede56669b8cdb6e4b0307e427720805232 + md5: 030adc8125b572439459ea9f063cf3de + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 1727810 + timestamp: 1710058620131 +- kind: conda + name: flatbuffers + version: 24.3.7 + build: h73e2aa4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/flatbuffers-24.3.7-h73e2aa4_0.conda + sha256: e4d0e09f5f27825fc8ccb42cc4ebb20951b364a303aa4e95fc996afbac78bf79 + md5: 4bca4cc7c9864063a92b08fb6975b802 + depends: + - libcxx >=16 + license: Apache-2.0 + license_family: APACHE + size: 1336422 + timestamp: 1710058653949 +- kind: conda + name: flatbuffers + version: 24.3.7 + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/flatbuffers-24.3.7-hebf3989_0.conda + sha256: accfeff694d2b95a4a0ec6cd2ae5206028ce63a72583523e74bbb9d8e5b9ab53 + md5: 51f4a8e083d8caf54e945a9cf858a966 + depends: + - libcxx >=16 + license: Apache-2.0 + license_family: APACHE + size: 1278204 + timestamp: 1710058972127 - kind: conda name: gcc version: 12.3.0 @@ -4789,6 +7175,22 @@ packages: license_family: BSD size: 30351 timestamp: 1694604476800 +- kind: conda + name: gflags + version: 2.2.2 + build: h54f1f3f_1004 + build_number: 1004 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h54f1f3f_1004.tar.bz2 + sha256: c72f18b94048df5525d8ae73a9efb8d830048b70328d63738d91d3ea54e55b91 + md5: f286d3464cc8d467c92e4f17990c98c1 + depends: + - libgcc-ng >=7.5.0 + - libstdcxx-ng >=7.5.0 + license: BSD-3-Clause + license_family: BSD + size: 124596 + timestamp: 1599590718502 - kind: conda name: gflags version: 2.2.2 @@ -4835,6 +7237,24 @@ packages: license_family: BSD size: 116549 timestamp: 1594303828933 +- kind: conda + name: gitdb + version: 4.0.11 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + sha256: 52ab2798be31b8f509eeec458712f447ced4f96ecb672c6c9a42778f47e07b1b + md5: 623b19f616f2ca0c261441067e18ae40 + depends: + - python >=3.7 + - smmap >=3.0.1,<6 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/gitdb + size: 52872 + timestamp: 1697791718749 - kind: conda name: gitdb version: 4.0.11 @@ -4851,6 +7271,8 @@ packages: platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/gitdb size: 52872 timestamp: 1697791718749 - kind: conda @@ -4868,6 +7290,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/gitignore-parser size: 11371 timestamp: 1696511979480 - kind: conda @@ -4883,6 +7307,8 @@ packages: - python >=3.7 license: MIT license_family: MIT + purls: + - pkg:pypi/gitignore-parser size: 11460 timestamp: 1705776957779 - kind: conda @@ -4902,6 +7328,8 @@ packages: platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/gitpython size: 147305 timestamp: 1697650463508 - kind: conda @@ -4919,8 +7347,29 @@ packages: - typing_extensions >=3.7.4.3 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/gitpython size: 150528 timestamp: 1704911329345 +- kind: conda + name: gitpython + version: 3.1.42 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.42-pyhd8ed1ab_0.conda + sha256: a11e1cf4404157467d0f51906d1db80bcb8bfe4bb3d3eba703b28e981ea7e308 + md5: 6bc8e496351bafd761c0922c3ebd989a + depends: + - gitdb >=4.0.1,<5 + - python >=3.7 + - typing_extensions >=3.7.4.3 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/gitpython + size: 149604 + timestamp: 1708069389374 - kind: conda name: glog version: 0.6.0 @@ -4981,8 +7430,24 @@ packages: - libcxx >=16 license: BSD-3-Clause license_family: BSD - size: 115506 - timestamp: 1708261022187 + size: 115506 + timestamp: 1708261022187 +- kind: conda + name: glog + version: 0.7.0 + build: ha63034d_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.0-ha63034d_0.conda + sha256: 5b03faf3e29d277f03db2609399408182a2ee1af10986eed5a334e0d98f4e526 + md5: 70e70f34821c33530baeefd3ad1229bd + depends: + - gflags >=2.2.2,<2.3.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 147076 + timestamp: 1708260860922 - kind: conda name: glog version: 0.7.0 @@ -5080,6 +7545,21 @@ packages: license_family: MIT size: 12089150 timestamp: 1692900650789 +- kind: conda + name: icu + version: '73.2' + build: h787c7f5_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-73.2-h787c7f5_0.conda + sha256: aedb9c911ede5596c87e1abd763ed940fab680d71fdb953bce8e4094119d47b3 + md5: 9d3c29d71f28452a2e843aff8cbe09d2 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 12237094 + timestamp: 1692900632394 - kind: conda name: icu version: '73.2' @@ -5123,22 +7603,38 @@ packages: size: 25527 timestamp: 1676330831614 - kind: conda - name: importlib_metadata - version: 4.13.0 - build: hd8ed1ab_0 - subdir: win-64 - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-4.13.0-hd8ed1ab_0.conda - sha256: 3721a25eddddf46e562cfe04aa36c7c6417ae7056cd0c9d0a42d0349ce3bbcc8 - md5: eb09e30f586f5d8f8e8b784824be7017 + name: importlib-metadata + version: 7.0.2 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.2-pyha770c72_0.conda + sha256: 9a26136d2cc81ccac209d6ae24281ceba3365fe34e34b2c45570f2a96e9d9c1b + md5: b050a4bb0e90ebd6e7fa4093d6346867 depends: - - importlib-metadata >=4.13.0,<4.13.1.0a0 - arch: x86_64 - platform: win + - python >=3.8 + - zipp >=0.5 license: Apache-2.0 license_family: APACHE - size: 9145 - timestamp: 1676330837094 + size: 26900 + timestamp: 1709821273570 +- kind: conda + name: iniconfig + version: 2.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + md5: f800d2da156d08e289b14e87e43c1ae5 + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/iniconfig + size: 11101 + timestamp: 1673103208955 - kind: conda name: iniconfig version: 2.0.0 @@ -5154,6 +7650,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/iniconfig size: 11101 timestamp: 1673103208955 - kind: conda @@ -5184,41 +7682,6 @@ packages: license_family: Proprietary size: 2325424 timestamp: 1706182537883 -- kind: conda - name: jinja2 - version: 3.1.2 - build: pyhd8ed1ab_1 - build_number: 1 - subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - md5: c8490ed5c70966d232fdd389d0dbed37 - depends: - - markupsafe >=2.0 - - python >=3.7 - arch: x86_64 - platform: win - license: BSD-3-Clause - license_family: BSD - size: 101443 - timestamp: 1654302514195 -- kind: conda - name: jinja2 - version: 3.1.3 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda - sha256: fd517b7dd3a61eca34f8a6f9f92f306397149cae1204fce72ac3d227107dafdc - md5: e7d8df6509ba635247ff9aea31134262 - depends: - - markupsafe >=2.0 - - python >=3.7 - license: BSD-3-Clause - license_family: BSD - size: 111589 - timestamp: 1704967140287 - kind: conda name: just version: 1.15.0 @@ -5325,6 +7788,72 @@ packages: license: CC0-1.0 size: 1178083 timestamp: 1704893025811 +- kind: conda + name: just + version: 1.24.0 + build: h11a7dfb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/just-1.24.0-h11a7dfb_0.conda + sha256: 802572940bc1208d135637b9859517d4262d156d956a98c96ca5502240da7d7d + md5: 5ac25104279a5589381ade8bd8e56552 + constrains: + - __osx >=10.12 + license: CC0-1.0 + size: 1113461 + timestamp: 1708241218651 +- kind: conda + name: just + version: 1.24.0 + build: h1d8f897_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/just-1.24.0-h1d8f897_0.conda + sha256: 581e83c4f9aa9663244b767e49a857374019d71f589567611be2870a95a05f52 + md5: 0a0e604e2ff4c1a207f5a2fbc2df154c + depends: + - libgcc-ng >=12 + license: CC0-1.0 + size: 1104293 + timestamp: 1708246328468 +- kind: conda + name: just + version: 1.24.0 + build: h5ef7bb8_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/just-1.24.0-h5ef7bb8_0.conda + sha256: 8a887ad3b46cb7df6e6f28301bf498a1d546a191b4e856f5ec68b51508534efd + md5: cd1e84db2e7aafc373279d6ac9746e20 + constrains: + - __osx >=11.0 + license: CC0-1.0 + size: 1033268 + timestamp: 1708241219422 +- kind: conda + name: just + version: 1.24.0 + build: h7f3b576_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/just-1.24.0-h7f3b576_0.conda + sha256: 00ef2294055adaf43115f0929172e8cd6cecec3ec03fa73d0fd10d6c34ed4aa2 + md5: 969f459714747b46af1159ee41dabd6d + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: CC0-1.0 + size: 1166282 + timestamp: 1708241728702 +- kind: conda + name: just + version: 1.24.0 + build: he8a937b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/just-1.24.0-he8a937b_0.conda + sha256: 6d230b47d7548158e92d54580abdb2c1c767c986dc3d72431db7025570bf82cd + md5: 1de85b6ac80b52ce66fab344945cf2c3 + depends: + - libgcc-ng >=12 + license: CC0-1.0 + size: 1203601 + timestamp: 1708240909235 - kind: conda name: kernel-headers_linux-64 version: 2.6.32 @@ -5354,6 +7883,19 @@ packages: license: LGPL-2.1-or-later size: 117831 timestamp: 1646151697040 +- kind: conda + name: keyutils + version: 1.6.1 + build: h4e544f5_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b + md5: 1f24853e59c68892452ef94ddd8afd4b + depends: + - libgcc-ng >=10.3.0 + license: LGPL-2.1-or-later + size: 112327 + timestamp: 1646166857935 - kind: conda name: krb5 version: 1.21.2 @@ -5407,6 +7949,25 @@ packages: license_family: MIT size: 1183568 timestamp: 1692098004387 +- kind: conda + name: krb5 + version: 1.21.2 + build: hc419048_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.2-hc419048_0.conda + sha256: c3f24ead49fb7d7c29fae491bec3f090f63d77a46954eadbc4463f137e2b42cd + md5: 55b51af37bf6fdcfe06f140e62e8c8db + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.1.2,<4.0a0 + license: MIT + license_family: MIT + size: 1473397 + timestamp: 1692097651347 - kind: conda name: krb5 version: 1.21.2 @@ -5522,6 +8083,20 @@ packages: license_family: GPL size: 704696 timestamp: 1674833944779 +- kind: conda + name: ld_impl_linux-aarch64 + version: '2.40' + build: h2d8c526_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.40-h2d8c526_0.conda + sha256: 1ba06e8645094b340b4aee23603a6abb1b0383788180e65f3de34e655c5f577c + md5: 16246d69e945d0b1969a6099e7c5d457 + constrains: + - binutils_impl_linux-aarch64 2.40 + license: GPL-3.0-only + license_family: GPL + size: 738776 + timestamp: 1674833843183 - kind: conda name: libabseil version: '20230802.1' @@ -5575,6 +8150,25 @@ packages: license_family: Apache size: 1263396 timestamp: 1695063868515 +- kind: conda + name: libabseil + version: '20240116.1' + build: cxx17_h2f0025b_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.1-cxx17_h2f0025b_2.conda + sha256: bf8d5c1ee76960840d6a0e8eac4fd4111712a4745fffb1e6f9466feb3f11c1c6 + md5: 85dff948e5ec41a2eba9eb8fb001d01e + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + constrains: + - abseil-cpp =20240116.1 + - libabseil-static =20240116.1=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1286200 + timestamp: 1709159884574 - kind: conda name: libabseil version: '20240116.1' @@ -5688,6 +8282,85 @@ packages: license_family: APACHE size: 15778237 timestamp: 1706610772424 +- kind: conda + name: libarrow + version: 14.0.2 + build: h25df049_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-14.0.2-h25df049_12_cpu.conda + sha256: 6a722025c1815e97356a480444a948a895eba8a529e06a946775218dffca5c96 + md5: d7a52d1add3c83e733238ba1b5169b37 + depends: + - aws-crt-cpp >=0.26.2,<0.26.3.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.7.0,<0.8.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libgcc-ng >=12 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - apache-arrow-proc =*=cpu + - parquet-cpp <0.0a0 + - arrow-cpp <0.0a0 + license: Apache-2.0 + license_family: APACHE + size: 7385058 + timestamp: 1710292910535 +- kind: conda + name: libarrow + version: 14.0.2 + build: h2a83f13_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-14.0.2-h2a83f13_13_cpu.conda + sha256: 1e20499fa3ec9e4abb03ec91fa5422019868b36dcf2ae3d123e1b5785a9c7424 + md5: 3c1e5bd6b032045ee42bb09302f1c01f + depends: + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - openssl >=3.2.1,<4.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - parquet-cpp <0.0a0 + - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 4907643 + timestamp: 1710345937957 - kind: conda name: libarrow version: 14.0.2 @@ -5706,10 +8379,84 @@ packages: - libabseil >=20240116.1,<20240117.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libcxx >=14 + - libcxx >=14 + - libgoogle-cloud >=2.21.0,<2.22.0a0 + - libgoogle-cloud-storage >=2.21.0,<2.22.0a0 + - libre2-11 >=2023.6.2,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=1.9.2,<1.9.3.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - apache-arrow-proc =*=cpu + - arrow-cpp <0.0a0 + - parquet-cpp <0.0a0 + license: Apache-2.0 + license_family: APACHE + size: 5316906 + timestamp: 1708691094438 +- kind: conda + name: libarrow + version: 14.0.2 + build: h4ce3932_3_cpu + build_number: 3 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-14.0.2-h4ce3932_3_cpu.conda + sha256: bfc40fc098db7715245c0aa5809ae2b8489a44e2619b63c1f75a2f9fedbc90ff + md5: 65d8be032e978630f715376237e12d95 + depends: + - aws-crt-cpp >=0.26.0,<0.26.1.0a0 + - aws-sdk-cpp >=1.11.210,<1.11.211.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.6.0,<0.7.0a0 + - libabseil * cxx17* + - libabseil >=20230802.1,<20230803.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libcxx >=14 + - libgoogle-cloud >=2.12.0,<2.13.0a0 + - libre2-11 >=2023.6.2,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=1.9.2,<1.9.3.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - arrow-cpp <0.0a0 + - parquet-cpp <0.0a0 + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 14649507 + timestamp: 1706610614109 +- kind: conda + name: libarrow + version: 14.0.2 + build: h5001e6d_10_cpu + build_number: 10 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-14.0.2-h5001e6d_10_cpu.conda + sha256: 2e6340ba6cf72a4e38e8cfe1fd58bede4ffeb48955430b7bab0c69583233c81c + md5: ccba2f34c1345ad610734bd20f2aade7 + depends: + - aws-crt-cpp >=0.26.2,<0.26.3.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.7.0,<0.8.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libgcc-ng >=12 - libgoogle-cloud >=2.21.0,<2.22.0a0 - libgoogle-cloud-storage >=2.21.0,<2.22.0a0 - libre2-11 >=2023.6.2,<2024.0a0 + - libstdcxx-ng >=12 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.2.13,<1.3.0a0 - lz4-c >=1.9.3,<1.10.0a0 @@ -5718,60 +8465,61 @@ packages: - snappy >=1.1.10,<2.0a0 - zstd >=1.5.5,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 5316906 - timestamp: 1708691094438 + size: 8080771 + timestamp: 1708689749260 - kind: conda name: libarrow version: 14.0.2 - build: h4ce3932_3_cpu - build_number: 3 + build: h5233fb5_13_cpu + build_number: 13 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-14.0.2-h4ce3932_3_cpu.conda - sha256: bfc40fc098db7715245c0aa5809ae2b8489a44e2619b63c1f75a2f9fedbc90ff - md5: 65d8be032e978630f715376237e12d95 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-14.0.2-h5233fb5_13_cpu.conda + sha256: b2fdb38eac0220e2588548c13e1b599e567c147450e19011cb661786085c64f0 + md5: 5964f068ac691eb417ecc6173e3ec288 depends: - - aws-crt-cpp >=0.26.0,<0.26.1.0a0 - - aws-sdk-cpp >=1.11.210,<1.11.211.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - bzip2 >=1.0.8,<2.0a0 - - glog >=0.6.0,<0.7.0a0 + - glog >=0.7.0,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20230802.1,<20230803.0a0 + - libabseil >=20240116.1,<20240117.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - libcxx >=14 - - libgoogle-cloud >=2.12.0,<2.13.0a0 - - libre2-11 >=2023.6.2,<2024.0a0 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.2.13,<1.3.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=1.9.2,<1.9.3.0a0 + - orc >=2.0.0,<2.0.1.0a0 - re2 - snappy >=1.1.10,<2.0a0 - zstd >=1.5.5,<1.6.0a0 constrains: - - arrow-cpp <0.0a0 - parquet-cpp <0.0a0 - apache-arrow-proc =*=cpu + - arrow-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 14649507 - timestamp: 1706610614109 + size: 5325718 + timestamp: 1710345870461 - kind: conda name: libarrow version: 14.0.2 - build: h5001e6d_10_cpu - build_number: 10 + build: h6bfc85a_13_cpu + build_number: 13 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-14.0.2-h5001e6d_10_cpu.conda - sha256: 2e6340ba6cf72a4e38e8cfe1fd58bede4ffeb48955430b7bab0c69583233c81c - md5: ccba2f34c1345ad610734bd20f2aade7 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-14.0.2-h6bfc85a_13_cpu.conda + sha256: f62f6a0a50b94f55c4ee90288b599c17980f1c0b7d18ae9533c42fc18437fc8f + md5: 0b97d14e02c9a6c3a259f9cd88335c9f depends: - - aws-crt-cpp >=0.26.2,<0.26.3.0a0 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 - bzip2 >=1.0.8,<2.0a0 - glog >=0.7.0,<0.8.0a0 @@ -5780,25 +8528,25 @@ packages: - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - libgcc-ng >=12 - - libgoogle-cloud >=2.21.0,<2.22.0a0 - - libgoogle-cloud-storage >=2.21.0,<2.22.0a0 - - libre2-11 >=2023.6.2,<2024.0a0 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 - libstdcxx-ng >=12 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.2.13,<1.3.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=1.9.2,<1.9.3.0a0 + - orc >=2.0.0,<2.0.1.0a0 - re2 - snappy >=1.1.10,<2.0a0 - zstd >=1.5.5,<1.6.0a0 constrains: - - arrow-cpp <0.0a0 - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 + - arrow-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 8080771 - timestamp: 1708689749260 + size: 8070162 + timestamp: 1710345363045 - kind: conda name: libarrow version: 14.0.2 @@ -5915,6 +8663,44 @@ packages: license_family: APACHE size: 5696868 timestamp: 1708690271784 +- kind: conda + name: libarrow + version: 14.0.2 + build: he79e29d_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-14.0.2-he79e29d_13_cpu.conda + sha256: 613a144ad341462f08e7be43a028441501c810dc59023cbe12e3e56e27ad1c92 + md5: 02fa4f5f3f8287b5914f8ee7cff7487b + depends: + - __osx >=10.13 + - aws-crt-cpp >=0.26.3,<0.26.4.0a0 + - aws-sdk-cpp >=1.11.267,<1.11.268.0a0 + - bzip2 >=1.0.8,<2.0a0 + - glog >=0.7.0,<0.8.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libbrotlidec >=1.1.0,<1.2.0a0 + - libbrotlienc >=1.1.0,<1.2.0a0 + - libcxx >=14 + - libgoogle-cloud >=2.22.0,<2.23.0a0 + - libgoogle-cloud-storage >=2.22.0,<2.23.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - orc >=2.0.0,<2.0.1.0a0 + - re2 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu + - parquet-cpp <0.0a0 + license: Apache-2.0 + license_family: APACHE + size: 5718166 + timestamp: 1710346534084 - kind: conda name: libarrow-acero version: 14.0.2 @@ -5931,6 +8717,22 @@ packages: license_family: APACHE size: 512509 timestamp: 1708690347206 +- kind: conda + name: libarrow-acero + version: 14.0.2 + build: h000cb23_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-14.0.2-h000cb23_13_cpu.conda + sha256: bd071a96a8b4da5cf7fe88d586c5ecc77cff17a80dc5bb46873c73d29c70f788 + md5: f8a9bb4d1aef7853c734c829456efcff + depends: + - libarrow 14.0.2 he79e29d_13_cpu + - libcxx >=14 + license: Apache-2.0 + license_family: APACHE + size: 512740 + timestamp: 1710346674065 - kind: conda name: libarrow-acero version: 14.0.2 @@ -5963,6 +8765,22 @@ packages: license_family: APACHE size: 494852 timestamp: 1708691198827 +- kind: conda + name: libarrow-acero + version: 14.0.2 + build: h13dd4ca_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-14.0.2-h13dd4ca_13_cpu.conda + sha256: c43bf0f7c5fda78df3830656ad600b061fe3a3d1a2596f95e1d152fa9d36c936 + md5: c9f53116aac6f41597e004e42f479591 + depends: + - libarrow 14.0.2 h5233fb5_13_cpu + - libcxx >=14 + license: Apache-2.0 + license_family: APACHE + size: 495434 + timestamp: 1710345986422 - kind: conda name: libarrow-acero version: 14.0.2 @@ -5979,6 +8797,23 @@ packages: license_family: APACHE size: 495117 timestamp: 1706610742772 +- kind: conda + name: libarrow-acero + version: 14.0.2 + build: h2f0025b_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-14.0.2-h2f0025b_12_cpu.conda + sha256: d70bc3ef9fcf1fba63cf0b127512569ff22202306391d93c30f3d5ec4f557996 + md5: 6cf8a6e338e394fe0dd30e59988f8981 + depends: + - libarrow 14.0.2 h25df049_12_cpu + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 542198 + timestamp: 1710292954892 - kind: conda name: libarrow-acero version: 14.0.2 @@ -5996,6 +8831,23 @@ packages: license_family: APACHE size: 577227 timestamp: 1708689800054 +- kind: conda + name: libarrow-acero + version: 14.0.2 + build: h59595ed_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-14.0.2-h59595ed_13_cpu.conda + sha256: 16cadd969ffd3d68a0821c7d9af4fb7772ad2f54187852b09026677a1c203410 + md5: 28e25c6db46fc5542c858cf701909d84 + depends: + - libarrow 14.0.2 h6bfc85a_13_cpu + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 577795 + timestamp: 1710345426232 - kind: conda name: libarrow-acero version: 14.0.2 @@ -6031,6 +8883,24 @@ packages: license_family: APACHE size: 430548 timestamp: 1708690137226 +- kind: conda + name: libarrow-acero + version: 14.0.2 + build: h63175ca_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-14.0.2-h63175ca_13_cpu.conda + sha256: 8ee3b272ebdadbf4e41f4ea4d1b36db62555870378f8be941f83220bf3cd3b2e + md5: 389ccdec73910798474ab1517d5a5747 + depends: + - libarrow 14.0.2 h2a83f13_13_cpu + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 431459 + timestamp: 1710346036673 - kind: conda name: libarrow-dataset version: 14.0.2 @@ -6049,6 +8919,24 @@ packages: license_family: APACHE size: 511903 timestamp: 1708690574393 +- kind: conda + name: libarrow-dataset + version: 14.0.2 + build: h000cb23_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-14.0.2-h000cb23_13_cpu.conda + sha256: 0f013a4a208723516f0049585994dc2363c120cf11c18849c4b3b01bc4986f40 + md5: d6db4c70e3a1fc9ac0a48c9165e2e820 + depends: + - libarrow 14.0.2 he79e29d_13_cpu + - libarrow-acero 14.0.2 h000cb23_13_cpu + - libcxx >=14 + - libparquet 14.0.2 h381d950_13_cpu + license: Apache-2.0 + license_family: APACHE + size: 512999 + timestamp: 1710347067673 - kind: conda name: libarrow-dataset version: 14.0.2 @@ -6085,6 +8973,24 @@ packages: license_family: APACHE size: 526964 timestamp: 1708691531170 +- kind: conda + name: libarrow-dataset + version: 14.0.2 + build: h13dd4ca_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-14.0.2-h13dd4ca_13_cpu.conda + sha256: a0833d1bc74cb554ab5da8b01f65c77525190b295da1d77071adc778ebfb1072 + md5: 90c1416a2538df8b3343716cfec2c4f8 + depends: + - libarrow 14.0.2 h5233fb5_13_cpu + - libarrow-acero 14.0.2 h13dd4ca_13_cpu + - libcxx >=14 + - libparquet 14.0.2 hf6ce1d5_13_cpu + license: Apache-2.0 + license_family: APACHE + size: 527932 + timestamp: 1710346391216 - kind: conda name: libarrow-dataset version: 14.0.2 @@ -6103,6 +9009,25 @@ packages: license_family: APACHE size: 526945 timestamp: 1706611070744 +- kind: conda + name: libarrow-dataset + version: 14.0.2 + build: h2f0025b_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-14.0.2-h2f0025b_12_cpu.conda + sha256: 65a33363cb7e4936bc1c75f2f115ea4dd32498c283baa5c1ea1a321cfa17d10b + md5: d46471dbf3c19b687d324a297a72debd + depends: + - libarrow 14.0.2 h25df049_12_cpu + - libarrow-acero 14.0.2 h2f0025b_12_cpu + - libgcc-ng >=12 + - libparquet 14.0.2 hb18b541_12_cpu + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 551283 + timestamp: 1710293072163 - kind: conda name: libarrow-dataset version: 14.0.2 @@ -6122,6 +9047,25 @@ packages: license_family: APACHE size: 580942 timestamp: 1708689918 +- kind: conda + name: libarrow-dataset + version: 14.0.2 + build: h59595ed_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-14.0.2-h59595ed_13_cpu.conda + sha256: eae222df321ea3408a3b28ea85cb40504e86975cd6f258d37912f6ce6d0b9ad1 + md5: 5266653f8b74e0ba57401be532055410 + depends: + - libarrow 14.0.2 h6bfc85a_13_cpu + - libarrow-acero 14.0.2 h59595ed_13_cpu + - libgcc-ng >=12 + - libparquet 14.0.2 h352af49_13_cpu + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 581399 + timestamp: 1710345583152 - kind: conda name: libarrow-dataset version: 14.0.2 @@ -6161,6 +9105,48 @@ packages: license_family: APACHE size: 429115 timestamp: 1708690422907 +- kind: conda + name: libarrow-dataset + version: 14.0.2 + build: h63175ca_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-14.0.2-h63175ca_13_cpu.conda + sha256: 50ba7bff4899da18c8791071cbc733496eccc65d6948b2faac6a5f2e0a98e9b7 + md5: daeb4b650d02b601783ea6799f9afd6c + depends: + - libarrow 14.0.2 h2a83f13_13_cpu + - libarrow-acero 14.0.2 h63175ca_13_cpu + - libparquet 14.0.2 h7ec3a38_13_cpu + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 429023 + timestamp: 1710346405791 +- kind: conda + name: libarrow-flight + version: 14.0.2 + build: h02312f3_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-14.0.2-h02312f3_13_cpu.conda + sha256: 9a64a061f5d42e7c021f9e65066957cd1650f6a97cf3897363111b52f464021f + md5: f51f43c16adcee3ed9a1e151c1aeb92e + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h2a83f13_13_cpu + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 286961 + timestamp: 1710346136713 - kind: conda name: libarrow-flight version: 14.0.2 @@ -6183,6 +9169,49 @@ packages: license_family: APACHE size: 501085 timestamp: 1706609649937 +- kind: conda + name: libarrow-flight + version: 14.0.2 + build: h2382776_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-14.0.2-h2382776_13_cpu.conda + sha256: bbd32e1906eb567d95d41b72d64f993d88761dc2b2760fe508854baab7802966 + md5: 3bf6df6c793a2ea01f3e0612c741b372 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 he79e29d_13_cpu + - libcxx >=14 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 322715 + timestamp: 1710346774669 +- kind: conda + name: libarrow-flight + version: 14.0.2 + build: h2f4a9e5_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-flight-14.0.2-h2f4a9e5_12_cpu.conda + sha256: bbea5d23c616b6b36a6cbf04a617657553628d08a0844a2279ebdce1c749a69d + md5: e98e22bae314c018497b409170001620 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h25df049_12_cpu + - libgcc-ng >=12 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + - ucx >=1.15.0,<1.16.0a0 + license: Apache-2.0 + license_family: APACHE + size: 474817 + timestamp: 1710292993611 - kind: conda name: libarrow-flight version: 14.0.2 @@ -6204,6 +9233,26 @@ packages: license_family: APACHE size: 321632 timestamp: 1708690401993 +- kind: conda + name: libarrow-flight + version: 14.0.2 + build: h95ca633_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-14.0.2-h95ca633_13_cpu.conda + sha256: c44b819b5efb283c01aa43c805de17266cb407256c4e86427bb64b6cfd392e42 + md5: 392cd88b061dbc1c4366871e65a68ed9 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h5233fb5_13_cpu + - libcxx >=14 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 333172 + timestamp: 1710346111062 - kind: conda name: libarrow-flight version: 14.0.2 @@ -6245,6 +9294,28 @@ packages: license_family: APACHE size: 332020 timestamp: 1706610826254 +- kind: conda + name: libarrow-flight + version: 14.0.2 + build: hc6145d9_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-14.0.2-hc6145d9_13_cpu.conda + sha256: 5bb091f548f124d9aa0f1a2bb070be2f3713dabd7995e7b82c61427cf7b1f9a5 + md5: be1e8c18e141e9fb3358f1225c583d0d + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h6bfc85a_13_cpu + - libgcc-ng >=12 + - libgrpc >=1.62.1,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + - ucx >=1.15.0,<1.16.0a0 + license: Apache-2.0 + license_family: APACHE + size: 503693 + timestamp: 1710345464269 - kind: conda name: libarrow-flight version: 14.0.2 @@ -6385,6 +9456,26 @@ packages: license_family: APACHE size: 154009 timestamp: 1708690633124 +- kind: conda + name: libarrow-flight-sql + version: 14.0.2 + build: h55b4db4_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-flight-sql-14.0.2-h55b4db4_13_cpu.conda + sha256: 4ba5130101c323580e9f8ae86ab9a7389aa1a27a62c1d793e89cc99d24ff84c2 + md5: 8c27d39e7147c7ee420bcbdf12b83200 + depends: + - libarrow 14.0.2 h2a83f13_13_cpu + - libarrow-flight 14.0.2 h02312f3_13_cpu + - libprotobuf >=4.25.3,<4.25.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 235314 + timestamp: 1710346485995 - kind: conda name: libarrow-flight-sql version: 14.0.2 @@ -6422,6 +9513,44 @@ packages: license_family: APACHE size: 195809 timestamp: 1706609745191 +- kind: conda + name: libarrow-flight-sql + version: 14.0.2 + build: h757c851_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-flight-sql-14.0.2-h757c851_13_cpu.conda + sha256: 669a52f7240ab55fa51b89c805acb91c89975db6081347aff14ea8363c9f2b34 + md5: 690b85e4586d37c997a090d42e20295a + depends: + - libarrow 14.0.2 h6bfc85a_13_cpu + - libarrow-flight 14.0.2 hc6145d9_13_cpu + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 195497 + timestamp: 1710345622444 +- kind: conda + name: libarrow-flight-sql + version: 14.0.2 + build: h7e3fe20_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-flight-sql-14.0.2-h7e3fe20_13_cpu.conda + sha256: 90bd62adf53cd99da17365ab73f53b90df0af79b6861a9e21051b1a0b811174e + md5: 4c5fea48489a40db78b2fcbfe262900f + depends: + - __osx >=10.13 + - libarrow 14.0.2 he79e29d_13_cpu + - libarrow-flight 14.0.2 h2382776_13_cpu + - libcxx >=14 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 155420 + timestamp: 1710347160360 - kind: conda name: libarrow-flight-sql version: 14.0.2 @@ -6441,6 +9570,43 @@ packages: license_family: APACHE size: 153818 timestamp: 1706611190988 +- kind: conda + name: libarrow-flight-sql + version: 14.0.2 + build: hc81a7a7_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-flight-sql-14.0.2-hc81a7a7_12_cpu.conda + sha256: 0145909d1aee5df3c1b25b483f4f62f7e9081c568e74069b4e18a67ba69ade9e + md5: c2cbaeac8289e227203bc770aa987086 + depends: + - libarrow 14.0.2 h25df049_12_cpu + - libarrow-flight 14.0.2 h2f4a9e5_12_cpu + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 182885 + timestamp: 1710293099163 +- kind: conda + name: libarrow-flight-sql + version: 14.0.2 + build: hdc5392b_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-flight-sql-14.0.2-hdc5392b_13_cpu.conda + sha256: a74ba3c1ed45cc6b89b66b5dd465d6a1210bc75481d79b80028034f404a7968a + md5: d98a1133d4bba9a05325954e662f5295 + depends: + - libarrow 14.0.2 h5233fb5_13_cpu + - libarrow-flight 14.0.2 h95ca633_13_cpu + - libcxx >=14 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 163324 + timestamp: 1710346482468 - kind: conda name: libarrow-gandiva version: 14.0.2 @@ -6462,6 +9628,30 @@ packages: license_family: APACHE size: 698984 timestamp: 1706611013722 +- kind: conda + name: libarrow-gandiva + version: 14.0.2 + build: h3a2b1eb_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-gandiva-14.0.2-h3a2b1eb_12_cpu.conda + sha256: cc4399d0e141dbc024d7e523bb96526548dbfc3b6ad418265012fe164a3da88a + md5: edfc287a18bae624cccb0e3078137d7d + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h25df049_12_cpu + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + license: Apache-2.0 + license_family: APACHE + size: 855698 + timestamp: 1710293021684 - kind: conda name: libarrow-gandiva version: 14.0.2 @@ -6534,6 +9724,30 @@ packages: license_family: APACHE size: 10170570 timestamp: 1708690279861 +- kind: conda + name: libarrow-gandiva + version: 14.0.2 + build: ha5acb15_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-gandiva-14.0.2-ha5acb15_13_cpu.conda + sha256: 6d06c71df682907daf6a37deac2fac394388b8e3947b5171ba6fa280e45b1ebc + md5: e864ce81130c6fbae77fd7ffb768b41d + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 he79e29d_13_cpu + - libcxx >=14 + - libllvm15 >=15.0.7,<15.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + license: Apache-2.0 + license_family: APACHE + size: 700321 + timestamp: 1710346874742 - kind: conda name: libarrow-gandiva version: 14.0.2 @@ -6556,6 +9770,55 @@ packages: license_family: APACHE size: 895232 timestamp: 1706609674431 +- kind: conda + name: libarrow-gandiva + version: 14.0.2 + build: hb016d2e_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-gandiva-14.0.2-hb016d2e_13_cpu.conda + sha256: a82694957ba8209fa9eb7f5e26c4ad71a936fe3c963c133368c60da078267566 + md5: 677a678f1794a6a6c4efff894a5a92cb + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h6bfc85a_13_cpu + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + license: Apache-2.0 + license_family: APACHE + size: 894432 + timestamp: 1710345503892 +- kind: conda + name: libarrow-gandiva + version: 14.0.2 + build: hcb01e45_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-gandiva-14.0.2-hcb01e45_13_cpu.conda + sha256: 0d5764893b016216fada279215d7ac77d7791f1e724cb3d977538720e1ab3158 + md5: b01782c5a1e218bc257bb0a15fabd8b5 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h2a83f13_13_cpu + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 10177269 + timestamp: 1710346223297 - kind: conda name: libarrow-gandiva version: 14.0.2 @@ -6601,6 +9864,29 @@ packages: license_family: APACHE size: 688245 timestamp: 1706610908126 +- kind: conda + name: libarrow-gandiva + version: 14.0.2 + build: hfef958d_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-gandiva-14.0.2-hfef958d_13_cpu.conda + sha256: 692521ca74dc6ce6de168a5ae1d1c11136b0541af5e2aab388deeb3c35e61a59 + md5: 28e850b27dd93367bb783d0d16d55afc + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h5233fb5_13_cpu + - libcxx >=14 + - libllvm15 >=15.0.7,<15.1.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libutf8proc >=2.8.0,<3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + license: Apache-2.0 + license_family: APACHE + size: 688483 + timestamp: 1710346205367 - kind: conda name: libarrow-substrait version: 14.0.2 @@ -6680,6 +9966,46 @@ packages: license_family: APACHE size: 509163 timestamp: 1706609767216 +- kind: conda + name: libarrow-substrait + version: 14.0.2 + build: h757c851_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-14.0.2-h757c851_13_cpu.conda + sha256: e4e15042a93bc3a6e4e0717a2802c6859a5a9cafdcc8f49957f0948a249b2816 + md5: 15c79e6f7b9686ebff4d687a33a52a76 + depends: + - libarrow 14.0.2 h6bfc85a_13_cpu + - libarrow-acero 14.0.2 h59595ed_13_cpu + - libarrow-dataset 14.0.2 h59595ed_13_cpu + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 518209 + timestamp: 1710345660675 +- kind: conda + name: libarrow-substrait + version: 14.0.2 + build: h7e3fe20_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-14.0.2-h7e3fe20_13_cpu.conda + sha256: 4e27d6f673e8ef27d62d5c5a8bd00a8ae2b93d65c0b90373f2a5917479d6e68d + md5: c50111280b8d2f2c176d949e5c7ddfd1 + depends: + - __osx >=10.13 + - libarrow 14.0.2 he79e29d_13_cpu + - libarrow-acero 14.0.2 h000cb23_13_cpu + - libarrow-dataset 14.0.2 h000cb23_13_cpu + - libcxx >=14 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 454371 + timestamp: 1710347255673 - kind: conda name: libarrow-substrait version: 14.0.2 @@ -6699,6 +10025,29 @@ packages: license_family: APACHE size: 472877 timestamp: 1706611234135 +- kind: conda + name: libarrow-substrait + version: 14.0.2 + build: h89268de_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-14.0.2-h89268de_13_cpu.conda + sha256: 816be5f4ac5ed5b35fcc3966b39314acbf9aef31e50162656b53d103560f002c + md5: c3599d0881c8f26df0900993f40f7c10 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libarrow 14.0.2 h2a83f13_13_cpu + - libarrow-acero 14.0.2 h63175ca_13_cpu + - libarrow-dataset 14.0.2 h63175ca_13_cpu + - libprotobuf >=4.25.3,<4.25.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 361120 + timestamp: 1710346569221 - kind: conda name: libarrow-substrait version: 14.0.2 @@ -6719,6 +10068,45 @@ packages: license_family: APACHE size: 452971 timestamp: 1706611246525 +- kind: conda + name: libarrow-substrait + version: 14.0.2 + build: hd45466a_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-14.0.2-hd45466a_12_cpu.conda + sha256: 0ba6e17e61be79349ab6fe1de1c3984e8b88b3553056dffc251f49f3211a4762 + md5: c891077d81b44b532462b3f565e0de86 + depends: + - libarrow 14.0.2 h25df049_12_cpu + - libarrow-acero 14.0.2 h2f0025b_12_cpu + - libarrow-dataset 14.0.2 h2f0025b_12_cpu + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 503549 + timestamp: 1710293136119 +- kind: conda + name: libarrow-substrait + version: 14.0.2 + build: hef52601_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-14.0.2-hef52601_13_cpu.conda + sha256: 3a9302c70f68e7b1fd433b5b0176b8317fb85ea840155c520ae012c619c5785c + md5: d5ac1ee4616a6caa87ba3f84b47e3de1 + depends: + - libarrow 14.0.2 h5233fb5_13_cpu + - libarrow-acero 14.0.2 h13dd4ca_13_cpu + - libarrow-dataset 14.0.2 h13dd4ca_13_cpu + - libcxx >=14 + - libprotobuf >=4.25.3,<4.25.4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 473073 + timestamp: 1710346607250 - kind: conda name: libarrow-substrait version: 14.0.2 @@ -6851,6 +10239,27 @@ packages: license_family: BSD size: 14691 timestamp: 1705979549006 +- kind: conda + name: libblas + version: 3.9.0 + build: 21_linuxaarch64_openblas + build_number: 21 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-21_linuxaarch64_openblas.conda + sha256: 5d1dcfc2ef54ce415ffabc8e2d94d10f8a24e10096193da24b0b62dbfe35bf32 + md5: 7358230781e5d6e76e6adacf5201bcdf + depends: + - libopenblas >=0.3.26,<0.3.27.0a0 + - libopenblas >=0.3.26,<1.0a0 + constrains: + - liblapacke 3.9.0 21_linuxaarch64_openblas + - liblapack 3.9.0 21_linuxaarch64_openblas + - blas * openblas + - libcblas 3.9.0 21_linuxaarch64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14650 + timestamp: 1705979384501 - kind: conda name: libblas version: 3.9.0 @@ -6926,6 +10335,21 @@ packages: license_family: MIT size: 67476 timestamp: 1695990207321 +- kind: conda + name: libbrotlicommon + version: 1.1.0 + build: h31becfc_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h31becfc_1.conda + sha256: 1c3d4ea61e862eb5f1968915f6f5917ea61db9921aec30b14785775c87234060 + md5: 1b219fd801eddb7a94df5bd001053ad9 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 69237 + timestamp: 1695990107496 - kind: conda name: libbrotlicommon version: 1.1.0 @@ -6986,6 +10410,22 @@ packages: license_family: MIT size: 30327 timestamp: 1695990232422 +- kind: conda + name: libbrotlidec + version: 1.1.0 + build: h31becfc_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h31becfc_1.conda + sha256: 1d2558efbb727f9065dd94d5f906aa68252153f80e571456d3695fa102e8a352 + md5: 8db7cff89510bec0b863a0a8ee6a7bce + depends: + - libbrotlicommon 1.1.0 h31becfc_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 31926 + timestamp: 1695990123189 - kind: conda name: libbrotlidec version: 1.1.0 @@ -7050,6 +10490,22 @@ packages: license_family: MIT size: 299092 timestamp: 1695990259225 +- kind: conda + name: libbrotlienc + version: 1.1.0 + build: h31becfc_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h31becfc_1.conda + sha256: 271fd8ef9181ad19246bf8b4273c99b9608c6eedecb6b11cd925211b8f1c6217 + md5: ad3d3a826b5848d99936e4466ebbaa26 + depends: + - libbrotlicommon 1.1.0 h31becfc_1 + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 290542 + timestamp: 1695990138784 - kind: conda name: libbrotlienc version: 1.1.0 @@ -7202,6 +10658,25 @@ packages: license_family: BSD size: 14614 timestamp: 1705979564122 +- kind: conda + name: libcblas + version: 3.9.0 + build: 21_linuxaarch64_openblas + build_number: 21 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-21_linuxaarch64_openblas.conda + sha256: 86224669232944141f46b41d0ba18192c7f5af9cc3133fa89694f42701fe89fd + md5: 7eb9aa7a90f067f8dbfede586cdc55cd + depends: + - libblas 3.9.0 21_linuxaarch64_openblas + constrains: + - liblapacke 3.9.0 21_linuxaarch64_openblas + - liblapack 3.9.0 21_linuxaarch64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14575 + timestamp: 1705979392590 - kind: conda name: libcblas version: 3.9.0 @@ -7259,6 +10734,23 @@ packages: license_family: BSD size: 5017024 timestamp: 1705980469944 +- kind: conda + name: libclang-cpp16 + version: 16.0.6 + build: default_h127d8a8_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp16-16.0.6-default_h127d8a8_5.conda + sha256: 8d034d92a7f7a9841796297bc18c2d8d8133583a6f3b661bfb1ca88ba01a076b + md5: 9fed40c47995a15eca939c4562d879bf + depends: + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 17942793 + timestamp: 1709764754399 - kind: conda name: libclang-cpp16 version: 16.0.6 @@ -7292,6 +10784,23 @@ packages: license_family: Apache size: 17942324 timestamp: 1704262063346 +- kind: conda + name: libclang-cpp16 + version: 16.0.6 + build: default_hb368394_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp16-16.0.6-default_hb368394_5.conda + sha256: fb1fd911d494f23abd889a95b9ea603de261badcd5120df2eda7f12f36d0707c + md5: 0b273d3ae3793c79728ed914c4a2aac5 + depends: + - libgcc-ng >=12 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 17600643 + timestamp: 1706895662107 - kind: conda name: libclang-cpp16 version: 16.0.6 @@ -7422,6 +10931,101 @@ packages: license_family: Apache size: 7164068 timestamp: 1704280614681 +- kind: conda + name: libclang13 + version: 18.1.1 + build: default_h0edc4dd_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang13-18.1.1-default_h0edc4dd_0.conda + sha256: 6706f35efe4f45bd50c56854e93715eb59bb948feb098aabd23923d5bbd409a7 + md5: badbda562ead0bcae661586067298002 + depends: + - libcxx >=16.0.6 + - libllvm18 >=18.1.1,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 8055181 + timestamp: 1710477023799 +- kind: conda + name: libclang13 + version: 18.1.1 + build: default_h5d6823c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-18.1.1-default_h5d6823c_0.conda + sha256: eab9467b8e7bef6152af4ac2a167abab76f5453396f62755605cfa53eadafea7 + md5: 68ad4732fc951212bcc67e7d60de42e5 + depends: + - libgcc-ng >=12 + - libllvm18 >=18.1.1,<18.2.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11069471 + timestamp: 1710472508192 +- kind: conda + name: libclang13 + version: 18.1.1 + build: default_h83d0a53_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-18.1.1-default_h83d0a53_0.conda + sha256: a3e12d97d6f3a06b1375eca3057e12c262be568755236689efb076352eb84636 + md5: 591cdf454c3db0328daf524a5b6b15d0 + depends: + - libcxx >=16.0.6 + - libllvm18 >=18.1.1,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 7513624 + timestamp: 1710475008752 +- kind: conda + name: libclang13 + version: 18.1.1 + build: default_hf64faad_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libclang13-18.1.1-default_hf64faad_0.conda + sha256: 36dbad4abb730d6ba9904d60cac670c2b9d19bd11a5664db67b9c17660cef43a + md5: 2a7bf5472a4decbe0f800c84c384fb08 + depends: + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25314400 + timestamp: 1710479378028 +- kind: conda + name: libclang13 + version: 18.1.1 + build: default_hf9b4efe_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-18.1.1-default_hf9b4efe_0.conda + sha256: 2411bd3412f2007d3b640fb1bd71cb2ae7a6ae32186b3fbdf625a98b0cf4fd36 + md5: aa206882a3e166cb08b24c55f2092a4e + depends: + - libgcc-ng >=12 + - libllvm18 >=18.1.1,<18.2.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 10874336 + timestamp: 1710473662256 +- kind: conda + name: libcrc32c + version: 1.1.2 + build: h01db608_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 + sha256: b8b8c57a87da86b3ea24280fd6aa8efaf92f4e684b606bf2db5d3cb06ffbe2ea + md5: 268ee639c17ada0002fb04dd21816cc2 + depends: + - libgcc-ng >=9.4.0 + - libstdcxx-ng >=9.4.0 + license: BSD-3-Clause + license_family: BSD + size: 18669 + timestamp: 1633683724891 - kind: conda name: libcrc32c version: 1.1.2 @@ -7483,13 +11087,33 @@ packages: - kind: conda name: libcurl version: 8.5.0 - build: h2d989ff_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.5.0-h2d989ff_0.conda - sha256: f1c04be217aaf161ce3c99a8d618871295b5dc1eae2f7ff7b32078af50303f5b - md5: f1211ed00947a84e15a964a8f459f620 + build: h2d989ff_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.5.0-h2d989ff_0.conda + sha256: f1c04be217aaf161ce3c99a8d618871295b5dc1eae2f7ff7b32078af50303f5b + md5: f1211ed00947a84e15a964a8f459f620 + depends: + - krb5 >=1.21.2,<1.22.0a0 + - libnghttp2 >=1.58.0,<2.0a0 + - libssh2 >=1.11.0,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.0,<4.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: curl + license_family: MIT + size: 350298 + timestamp: 1701860532373 +- kind: conda + name: libcurl + version: 8.5.0 + build: h4e8248e_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.5.0-h4e8248e_0.conda + sha256: 4f4f8b884927d0c6fad4a8f5d7afaf789fe4f6554448ac8b416231f2f3dc7490 + md5: fa0f5edc06ffc25a01eed005c6dc3d8c depends: - krb5 >=1.21.2,<1.22.0a0 + - libgcc-ng >=12 - libnghttp2 >=1.58.0,<2.0a0 - libssh2 >=1.11.0,<2.0a0 - libzlib >=1.2.13,<1.3.0a0 @@ -7497,8 +11121,8 @@ packages: - zstd >=1.5.5,<1.6.0a0 license: curl license_family: MIT - size: 350298 - timestamp: 1701860532373 + size: 399469 + timestamp: 1701860213311 - kind: conda name: libcurl version: 8.5.0 @@ -7627,6 +11251,22 @@ packages: license_family: BSD size: 123878 timestamp: 1597616541093 +- kind: conda + name: libedit + version: 3.1.20191231 + build: he28a2e2_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d + md5: 29371161d77933a54fccf1bb66b96529 + depends: + - libgcc-ng >=7.5.0 + - ncurses >=6.2,<7.0.0a0 + license: BSD-2-Clause + license_family: BSD + size: 134104 + timestamp: 1597617110769 - kind: conda name: libev version: '4.33' @@ -7640,6 +11280,21 @@ packages: license_family: BSD size: 106663 timestamp: 1702146352558 +- kind: conda + name: libev + version: '4.33' + build: h31becfc_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + sha256: 973af77e297f1955dd1f69c2cbdc5ab9dfc88388a5576cd152cda178af0fd006 + md5: a9a13cb143bbaa477b1ebaefbe47a302 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 115123 + timestamp: 1702146237623 - kind: conda name: libev version: '4.33' @@ -7748,6 +11403,22 @@ packages: license_family: BSD size: 410555 timestamp: 1685726568668 +- kind: conda + name: libevent + version: 2.1.12 + build: h4ba1bb4_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda + sha256: 01333cc7d6e6985dd5700b43660d90e9e58049182017fd24862088ecbe1458e4 + md5: 96ae6083cd1ac9f6bc81631ac835b317 + depends: + - libgcc-ng >=12 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 438992 + timestamp: 1685726046519 - kind: conda name: libevent version: 2.1.12 @@ -7841,6 +11512,80 @@ packages: license_family: MIT size: 69602 timestamp: 1680191040160 +- kind: conda + name: libexpat + version: 2.6.2 + build: h2f0025b_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.2-h2f0025b_0.conda + sha256: 07453df3232a649f39fb4d1e68cfe1c78c3457764f85225f6f3ccd1bdd9818a4 + md5: 1b9f46b804a2c3c5d7fd6a80b77c35f9 + depends: + - libgcc-ng >=12 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 72544 + timestamp: 1710362309065 +- kind: conda + name: libexpat + version: 2.6.2 + build: h59595ed_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda + sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19 + md5: e7ba12deb7020dd080c6c70e7b6f6a3d + depends: + - libgcc-ng >=12 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 73730 + timestamp: 1710362120304 +- kind: conda + name: libexpat + version: 2.6.2 + build: h63175ca_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 + md5: bc592d03f62779511d392c175dcece64 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 139224 + timestamp: 1710362609641 +- kind: conda + name: libexpat + version: 2.6.2 + build: h73e2aa4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda + sha256: a188a77b275d61159a32ab547f7d17892226e7dac4518d2c6ac3ac8fc8dfde92 + md5: 3d1d51c8f716d97c864d12f7af329526 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 69246 + timestamp: 1710362566073 +- kind: conda + name: libexpat + version: 2.6.2 + build: hebf3989_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda + sha256: ba7173ac30064ea901a4c9fb5a51846dcc25512ceb565759be7d18cbf3e5415e + md5: e3cde7cfa87f82f7cb13d482d5e0ad09 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 63655 + timestamp: 1710362424980 - kind: conda name: libffi version: 3.4.2 @@ -7867,6 +11612,21 @@ packages: license_family: MIT size: 39020 timestamp: 1636488587153 +- kind: conda + name: libffi + version: 3.4.2 + build: h3557bc0_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 + sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c + md5: dddd85f4d52121fab0a8b099c5e06501 + depends: + - libgcc-ng >=9.4.0 + license: MIT + license_family: MIT + size: 59450 + timestamp: 1636488255090 - kind: conda name: libffi version: 3.4.2 @@ -7950,6 +11710,23 @@ packages: license_family: GPL size: 770506 timestamp: 1706819192021 +- kind: conda + name: libgcc-ng + version: 13.2.0 + build: hf8544c7_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-13.2.0-hf8544c7_5.conda + sha256: 869e44e1cf329198f5bea56c146207ed639b24b6281187159435b9499ecb3959 + md5: dee934e640275d9e74e7bbd455f25162 + depends: + - _openmp_mutex >=4.5 + constrains: + - libgomp 13.2.0 hf8544c7_5 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 456795 + timestamp: 1706820691781 - kind: conda name: libgfortran version: 5.0.0 @@ -8046,6 +11823,21 @@ packages: license_family: GPL size: 23829 timestamp: 1706819413770 +- kind: conda + name: libgfortran-ng + version: 13.2.0 + build: he9431aa_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-13.2.0-he9431aa_5.conda + sha256: a7e5d1ac34118a4fad8286050af0146226d2fb2bd63e7a1066dc4dae7ba42daa + md5: fab7c6a8c84492e18cbe578820e97a56 + depends: + - libgfortran5 13.2.0 h582850c_5 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 23994 + timestamp: 1706820985230 - kind: conda name: libgfortran5 version: 13.2.0 @@ -8082,6 +11874,23 @@ packages: license_family: GPL size: 1571379 timestamp: 1707328880361 +- kind: conda + name: libgfortran5 + version: 13.2.0 + build: h582850c_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-13.2.0-h582850c_5.conda + sha256: f778346e85eb19bca36d1a5c8cddf8e089dcd6799b8f3e1b3f2d5a3157920827 + md5: 547486aac825d236de3beecb927b389c + depends: + - libgcc-ng >=13.2.0 + constrains: + - libgfortran-ng 13.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1082835 + timestamp: 1706820715400 - kind: conda name: libgfortran5 version: 13.2.0 @@ -8186,6 +11995,19 @@ packages: license_family: GPL size: 419751 timestamp: 1706819107383 +- kind: conda + name: libgomp + version: 13.2.0 + build: hf8544c7_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-13.2.0-hf8544c7_5.conda + sha256: a98d4f242a351feb7983a28e7d6a0ca51da764c6233ea3dfc776975a3aba8a01 + md5: 379be2f115ffb73860e4e260dd2170b7 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 423091 + timestamp: 1706820564165 - kind: conda name: libgoogle-cloud version: 2.12.0 @@ -8364,6 +12186,126 @@ packages: license_family: Apache size: 1209079 timestamp: 1708638321316 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: h651e89d_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda + sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 + md5: 3f2faf53ecb3b51b92b3eee155b50233 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 849198 + timestamp: 1709738549021 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: h9be4e54_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda + sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed + md5: 4b4e36a91e7dabf7345b82d85767a7c3 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgcc-ng >=12 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 1209816 + timestamp: 1709737846418 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: h9cad5c0_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.22.0-h9cad5c0_1.conda + sha256: f76e892d13e1db405777c968787678d8ba912b7e4eef7f950fcdcca185e06e71 + md5: 63cd44a71f00d4e72844bf0e8be56be4 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - openssl >=3.2.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 14420 + timestamp: 1709737037941 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: hbebe991_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.22.0-hbebe991_1.conda + sha256: a114b4d46eebede7e514abaf9203ea8c952a6382c5c57d1b989da062e3899bd7 + md5: ec7ea95b08e8cbc39fa16b6eafee36e6 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libcxx >=16 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 836916 + timestamp: 1709739767863 +- kind: conda + name: libgoogle-cloud + version: 2.22.0 + build: hd739bbb_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.22.0-hd739bbb_1.conda + sha256: ed838cad9631c37fa12159594f2bc5b4eae1dfa5db09a83e0939a4410ef3b8c3 + md5: 85707855a6af6e3bf37779a478403b37 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcurl >=8.5.0,<9.0a0 + - libgcc-ng >=12 + - libgrpc >=1.62.0,<1.63.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 + - openssl >=3.2.1,<4.0a0 + constrains: + - libgoogle-cloud 2.22.0 *_1 + license: Apache-2.0 + license_family: Apache + size: 1192943 + timestamp: 1709738727212 - kind: conda name: libgoogle-cloud-storage version: 2.21.0 @@ -8431,26 +12373,135 @@ packages: timestamp: 1708637621024 - kind: conda name: libgoogle-cloud-storage - version: 2.21.0 - build: hc7a4891_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.21.0-hc7a4891_2.conda - sha256: c2237a8fffd58553d31e0a135746de979e2b6a7eaf001748bdb98cf618db3d52 - md5: cc54c794dac0d76eb1adaf6172e9c59e + version: 2.21.0 + build: hc7a4891_2 + build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.21.0-hc7a4891_2.conda + sha256: c2237a8fffd58553d31e0a135746de979e2b6a7eaf001748bdb98cf618db3d52 + md5: cc54c794dac0d76eb1adaf6172e9c59e + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libgcc-ng >=12 + - libgoogle-cloud 2.21.0 h72bcb37_2 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 749865 + timestamp: 1708638542903 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: h8a76758_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.22.0-h8a76758_1.conda + sha256: e23be5896fd78e0e8b1098aab8803192f0c4a328d3d30a57d20d80194045d793 + md5: a89fb5b36b08efaae128d4933e593315 + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libcxx >=16 + - libgoogle-cloud 2.22.0 hbebe991_1 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 507478 + timestamp: 1709740510222 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: ha67e85c_1 + build_number: 1 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda + sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 + md5: 0c25180c34b1a58d309b28386698fb6e + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libcxx >=16 + - libgoogle-cloud 2.22.0 h651e89d_1 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 523045 + timestamp: 1709739227970 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: hb581fae_1 + build_number: 1 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.22.0-hb581fae_1.conda + sha256: 5ee34f168948211db14874f521e6edf9b4032d533c61fd429caaa282be1d0e7b + md5: f63348292dea55cf834e631cf26e2669 + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libgoogle-cloud 2.22.0 h9cad5c0_1 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 14330 + timestamp: 1709737542249 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: hc7a4891_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda + sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 + md5: 7811f043944e010e54640918ea82cecd + depends: + - libabseil + - libcrc32c >=1.1.2,<1.2.0a0 + - libcurl + - libgcc-ng >=12 + - libgoogle-cloud 2.22.0 h9be4e54_1 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl + license: Apache-2.0 + license_family: Apache + size: 748818 + timestamp: 1709738181078 +- kind: conda + name: libgoogle-cloud-storage + version: 2.22.0 + build: hdb39181_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.22.0-hdb39181_1.conda + sha256: e0be5d1add9e3332e6155cebddd3f9f2ea4cc2840e2f3cb4413ed53bd8a42129 + md5: 7c15ecbf56d3a5467ae399e963dacbb8 depends: - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc-ng >=12 - - libgoogle-cloud 2.21.0 h72bcb37_2 + - libgoogle-cloud 2.22.0 hd739bbb_1 - libstdcxx-ng >=12 - libzlib >=1.2.13,<1.3.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 749865 - timestamp: 1708638542903 + size: 698963 + timestamp: 1709739002982 - kind: conda name: libgrpc version: 1.59.3 @@ -8634,6 +12685,131 @@ packages: license_family: APACHE size: 4975767 timestamp: 1707807808364 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h15f2491_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda + sha256: 1d4ece94dfef73d904dcba0fd9d56098796f5fdc62ea5f9edff60c71be7a3d63 + md5: 564517a8cbd095cff75eb996d33d2b7e + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 7667664 + timestamp: 1709938059287 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h384b2fc_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + sha256: 8c9898d259e2343df52259b599ec342c386679e1c420df603cba6f06078fcdd6 + md5: 2ac05daca7276a4d6ca4465707670380 + depends: + - __osx >=10.13 + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 4432823 + timestamp: 1709938959215 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h5273850_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.62.1-h5273850_0.conda + sha256: 338cb58d1095ee651acd168af9636834b41908f7a94e613088e284dc53d2947c + md5: 99ac2f772591801641ec692fee843796 + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 15963245 + timestamp: 1709939262816 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h98a9317_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.1-h98a9317_0.conda + sha256: 64f196a0893223bcf0f91ea89b0118a07f32c7dae8377bdee2d9f7fdf39cd3d5 + md5: 17107fbb7822215e90d12bb8c42102f4 + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 6820015 + timestamp: 1709938779780 +- kind: conda + name: libgrpc + version: 1.62.1 + build: h9c18a4f_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.1-h9c18a4f_0.conda + sha256: b8c6b48430d0778e9452df88fa7c07fc7828aac87291372ac42dbe78be4078d5 + md5: 24f15c1a9e111825d39bf77881430107 + depends: + - c-ares >=1.27.0,<2.0a0 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libre2-11 >=2023.9.1,<2024.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - re2 + constrains: + - grpc-cpp =1.62.1 + license: Apache-2.0 + license_family: APACHE + size: 4753906 + timestamp: 1709939281511 - kind: conda name: libhwloc version: 2.9.3 @@ -8680,6 +12856,20 @@ packages: license: GPL and LGPL size: 1450368 timestamp: 1652700749886 +- kind: conda + name: libiconv + version: '1.17' + build: h31becfc_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda + sha256: a30e09d089cb75a0d5b8e5c354694c1317da98261185ed65aa3793e741060614 + md5: 9a8eb13f14de7d761555a98712e6df65 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-only + size: 705787 + timestamp: 1702684557134 - kind: conda name: libiconv version: '1.17' @@ -8867,6 +13057,25 @@ packages: license_family: BSD size: 14599 timestamp: 1705979579648 +- kind: conda + name: liblapack + version: 3.9.0 + build: 21_linuxaarch64_openblas + build_number: 21 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-21_linuxaarch64_openblas.conda + sha256: 87c110c6a1171c62d6a8802098c4186dcc8eca0ee2d0376a843e0cd025096e4a + md5: ab08b651e3630c20d3032e59859f34f7 + depends: + - libblas 3.9.0 21_linuxaarch64_openblas + constrains: + - liblapacke 3.9.0 21_linuxaarch64_openblas + - blas * openblas + - libcblas 3.9.0 21_linuxaarch64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14583 + timestamp: 1705979400733 - kind: conda name: liblapack version: 3.9.0 @@ -9000,6 +13209,24 @@ packages: license_family: Apache size: 33321457 timestamp: 1701375836233 +- kind: conda + name: libllvm15 + version: 15.0.7 + build: hb4f23b0_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm15-15.0.7-hb4f23b0_4.conda + sha256: 12da3344f2ef37dcb80b4e2d106cf36ebc267c3be6211a8306dd1dbf07399d61 + md5: 8d7aa8eae04dc19426a417528d7041eb + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.12.1,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 32882415 + timestamp: 1701366839578 - kind: conda name: libllvm15 version: 15.0.7 @@ -9038,6 +13265,25 @@ packages: license_family: Apache size: 23877550 timestamp: 1690533932497 +- kind: conda + name: libllvm16 + version: 16.0.6 + build: h0b931ab_3 + build_number: 3 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm16-16.0.6-h0b931ab_3.conda + sha256: 4b1e37e830983d4d0886a894b984411914a25eb6cf9db9d806c4e93053a99d4b + md5: 333f681d34b2fb5d1947b3b6b3e798a6 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.12.1,<3.0.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 34835275 + timestamp: 1701373096012 - kind: conda name: libllvm16 version: 16.0.6 @@ -9255,6 +13501,76 @@ packages: license_family: Apache size: 26306756 timestamp: 1701378823527 +- kind: conda + name: libllvm18 + version: 18.1.1 + build: h2448989_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libllvm18-18.1.1-h2448989_0.conda + sha256: 4501e62ee42644f158b2273e6cef621c2bac148ebe729fb3ca10b337df83fa3a + md5: a77e3c2c568b3b5d8a79b158d0c5dd47 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.12.5,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 38392079 + timestamp: 1710432419352 +- kind: conda + name: libllvm18 + version: 18.1.1 + build: h30cc82d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.1-h30cc82d_0.conda + sha256: 35f2fbe7f87c9fda6f36c0ee8efc5b99c347a2f7a0d4bca3d0511b612773a30d + md5: a215b38429566e17aa4d9dba24680d0d + depends: + - libcxx >=16 + - libxml2 >=2.12.5,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25777635 + timestamp: 1710434884978 +- kind: conda + name: libllvm18 + version: 18.1.1 + build: hbcf5fad_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.1-hbcf5fad_0.conda + sha256: d5f0042e48091740f7084d390a4948b2a739acbc4045f852f7561c0597e1a078 + md5: 9cfc7fa4bdbf1f0558f053285b4b6afb + depends: + - libcxx >=16 + - libxml2 >=2.12.5,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27599082 + timestamp: 1710435070093 +- kind: conda + name: libllvm18 + version: 18.1.1 + build: hbfe100b_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm18-18.1.1-hbfe100b_0.conda + sha256: dbe94b626d33e2ea273ea8d86e500ae5911cd4b6aaf84d0aab881f6c7c531c20 + md5: cf5da33f6f0ea717dc71d73e5ff7f93f + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxml2 >=2.12.5,<3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 37702614 + timestamp: 1710430191630 - kind: conda name: libnghttp2 version: 1.58.0 @@ -9318,6 +13634,41 @@ packages: license_family: MIT size: 565451 timestamp: 1702130473930 +- kind: conda + name: libnghttp2 + version: 1.58.0 + build: hb0e430d_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.58.0-hb0e430d_1.conda + sha256: ecc11e4f92f9d5830a90d42b4db55c66c4ad531e00dcf30d55171d934a568cb5 + md5: 8f724cdddffa79152de61f5564a3526b + depends: + - c-ares >=1.23.0,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.0,<4.0a0 + license: MIT + license_family: MIT + size: 677508 + timestamp: 1702130071743 +- kind: conda + name: libnl + version: 3.9.0 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnl-3.9.0-h31becfc_0.conda + sha256: f69dd5a4ed9f51e8e3abaa529f8f9127541c5b2afb8ec75b9deddbb72a054498 + md5: eb3aee596100fbb7eb4d69056be75868 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + license_family: LGPL + size: 747627 + timestamp: 1702657818170 - kind: conda name: libnl version: 3.9.0 @@ -9332,6 +13683,20 @@ packages: license_family: LGPL size: 732866 timestamp: 1702657849946 +- kind: conda + name: libnsl + version: 2.0.1 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + sha256: fd18c2b75d7411096428d36a70b36b1a17e31f7b8956b6905d145792d49e97f8 + md5: c14f32510f694e3185704d89967ec422 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-only + license_family: GPL + size: 34501 + timestamp: 1697358973269 - kind: conda name: libnsl version: 2.0.1 @@ -9474,6 +13839,24 @@ packages: license_family: BSD size: 5578031 timestamp: 1704950143521 +- kind: conda + name: libopenblas + version: 0.3.26 + build: pthreads_h5a5ec62_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.26-pthreads_h5a5ec62_0.conda + sha256: b72719014a86f69162398fc32af0f23e6e1746ec795f7c5d38ad5998a78eb6f8 + md5: 2ea496754b596063335b3aeaa2b982ac + depends: + - libgcc-ng >=12 + - libgfortran-ng + - libgfortran5 >=12.3.0 + constrains: + - openblas >=0.3.26,<0.3.27.0a0 + license: BSD-3-Clause + license_family: BSD + size: 4306237 + timestamp: 1704951018697 - kind: conda name: libparquet version: 14.0.2 @@ -9493,6 +13876,25 @@ packages: license_family: APACHE size: 1158188 timestamp: 1708689889111 +- kind: conda + name: libparquet + version: 14.0.2 + build: h352af49_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-14.0.2-h352af49_13_cpu.conda + sha256: 3675da7fee45dfe0f053bbcb71b5dc32c58eba86eb04dd5e7dbd2e3f5b076edb + md5: 0c4ee07d6a56434b8e1abfdce42ffe9a + depends: + - libarrow 14.0.2 h6bfc85a_13_cpu + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 1160002 + timestamp: 1710345544372 - kind: conda name: libparquet version: 14.0.2 @@ -9530,6 +13932,24 @@ packages: license_family: APACHE size: 925350 timestamp: 1708690516278 +- kind: conda + name: libparquet + version: 14.0.2 + build: h381d950_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libparquet-14.0.2-h381d950_13_cpu.conda + sha256: e1227a121d942be15d02ec1fde3e43f2a17e5c5a37ed006e5382977d355a3294 + md5: 273a1178373fffd8d76a8e813699297e + depends: + - libarrow 14.0.2 he79e29d_13_cpu + - libcxx >=14 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 924906 + timestamp: 1710346971895 - kind: conda name: libparquet version: 14.0.2 @@ -9568,6 +13988,45 @@ packages: license_family: APACHE size: 783467 timestamp: 1708690358780 +- kind: conda + name: libparquet + version: 14.0.2 + build: h7ec3a38_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libparquet-14.0.2-h7ec3a38_13_cpu.conda + sha256: d59b700882bbe39cb387151638bb0becbbb04c86a668426867fb32bad8a37d82 + md5: babba3c50f817f425964de492844a521 + depends: + - libarrow 14.0.2 h2a83f13_13_cpu + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 782893 + timestamp: 1710346323580 +- kind: conda + name: libparquet + version: 14.0.2 + build: hb18b541_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-14.0.2-hb18b541_12_cpu.conda + sha256: c5befb28607fe3c44b98792fa18f5b6784a801135d70cfde93f44414b9f565da + md5: 9ab277c46fa4ce629ef1b66483b38765 + depends: + - libarrow 14.0.2 h25df049_12_cpu + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 1074395 + timestamp: 1710293046583 - kind: conda name: libparquet version: 14.0.2 @@ -9584,8 +14043,26 @@ packages: - openssl >=3.2.1,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 910129 - timestamp: 1708691448291 + size: 910129 + timestamp: 1708691448291 +- kind: conda + name: libparquet + version: 14.0.2 + build: hf6ce1d5_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-14.0.2-hf6ce1d5_13_cpu.conda + sha256: f265cc71bb623ce3fef0a681a4744d35562e1ae9a8ed23707cf0d629dc2763ff + md5: 9451897b618c5007a9adc5d9b4ebb0e2 + depends: + - libarrow 14.0.2 h5233fb5_13_cpu + - libcxx >=14 + - libthrift >=0.19.0,<0.19.1.0a0 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 909954 + timestamp: 1710346299150 - kind: conda name: libparquet version: 14.0.2 @@ -9741,6 +14218,96 @@ packages: license_family: BSD size: 2163244 timestamp: 1708436969402 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h08a7969_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda + sha256: 70e0eef046033af2e8d21251a785563ad738ed5281c74e21c31c457780845dcd + md5: 6945825cebd2aeb16af4c69d97c32c13 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2811207 + timestamp: 1709514552541 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h4e4d658_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda + sha256: 3f126769fb5820387d436370ad48600e05d038a28689fdf9988b64e1059947a8 + md5: 57b7ee4f1fd8573781cfdabaec4a7782 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2216001 + timestamp: 1709514908146 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h503648d_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.25.3-h503648d_0.conda + sha256: 5d4c5592be3994657ebf47e52f26b734cc50b0ea9db007d920e2e31762aac216 + md5: 4da7de0ba35777742edf67bf7a1075df + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 5650604 + timestamp: 1709514804631 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: h648ac29_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-h648ac29_0.conda + sha256: 76775a1457b2d4de1097bec2fda16b8e6e80f761d11aa7a525fa215bff4ab87c + md5: a239d63913ec9e008bdbe35899f677f4 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2576197 + timestamp: 1709513627963 +- kind: conda + name: libprotobuf + version: 4.25.3 + build: hbfab5d5_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hbfab5d5_0.conda + sha256: d754519abc3ddbdedab2a38d0639170f5347c1573eef80c707f3a8dc5dff706a + md5: 5f70b2b945a9741cba7e6dfe735a02a7 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libcxx >=16 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2154402 + timestamp: 1709514097574 - kind: conda name: libre2-11 version: 2023.06.02 @@ -9858,6 +14425,26 @@ packages: license_family: BSD size: 184017 timestamp: 1708947106275 +- kind: conda + name: libre2-11 + version: 2023.09.01 + build: h9d008c2_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + sha256: 1da5cfd57091a52c822ec9580694f1e07817e53db43b0407a477daa2d2a16fcd + md5: 387c114aadcaeb02210f646c4b5efca2 + depends: + - libabseil * cxx17* + - libabseil >=20240116.1,<20240117.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + constrains: + - re2 2023.09.01.* + license: BSD-3-Clause + license_family: BSD + size: 217529 + timestamp: 1708946830978 - kind: conda name: libre2-11 version: 2023.09.01 @@ -9949,6 +14536,75 @@ packages: license: Unlicense size: 870045 timestamp: 1707495642340 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h091b4b1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.2-h091b4b1_0.conda + sha256: 7c234320a1a2132b9cc972aaa06bb215bb220a5b1addb0bed7a5a321c805920e + md5: 9d07427ee5bd9afd1e11ce14368a48d6 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 825300 + timestamp: 1710255078823 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h194ca79_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.45.2-h194ca79_0.conda + sha256: 0ce6de6369c04386cfc8696b1f795f425843789609ae2e04e7a1eb7deae62a8b + md5: bf4c96a21fbfc6a6ef6a7781a534a4e0 + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 1038462 + timestamp: 1710253998432 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h2797004_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 866983a220e27a80cb75e85cb30466a1 + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 857489 + timestamp: 1710254744982 +- kind: conda + name: libsqlite + version: 3.45.2 + build: h92b6c6a_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 086f56e13a96a6cfb1bf640505ae6b70 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 902355 + timestamp: 1710254991672 +- kind: conda + name: libsqlite + version: 3.45.2 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.2-hcfcfb64_0.conda + sha256: 4bb24b986550275a6d02835150d943c4c675808d05c0efc5c2a22154d007a69f + md5: f95359f8dc5abf7da7776ece9ef10bc5 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense + size: 869606 + timestamp: 1710255095740 - kind: conda name: libssh2 version: 1.11.0 @@ -9965,6 +14621,22 @@ packages: license_family: BSD size: 271133 timestamp: 1685837707056 +- kind: conda + name: libssh2 + version: 1.11.0 + build: h492db2e_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda + sha256: 409163dd4a888b9266369f1bce57b5ca56c216e34249637c3e10eb404e356171 + md5: 45532845e121677ad328c9af9953f161 + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 284335 + timestamp: 1685837600415 - kind: conda name: libssh2 version: 1.11.0 @@ -10055,6 +14727,19 @@ packages: license_family: GPL size: 3834139 timestamp: 1706819252496 +- kind: conda + name: libstdcxx-ng + version: 13.2.0 + build: h9a76618_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-13.2.0-h9a76618_5.conda + sha256: c209f23a8a497fc87107a68b6bbc8d2089cf15fd4015b558dfdce63544379b05 + md5: 1b79d37dce0fad96bdf3de03925f43b4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3752658 + timestamp: 1706820778418 - kind: conda name: libthrift version: 0.19.0 @@ -10073,6 +14758,25 @@ packages: license_family: APACHE size: 331154 timestamp: 1695958512679 +- kind: conda + name: libthrift + version: 0.19.0 + build: h043aeee_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.19.0-h043aeee_1.conda + sha256: 83d38df283ae258eb73807442ccee62364cf50b853d238a5b03092374c7bcf45 + md5: 591ef1567ed4989d824fe35b45e3ae68 + depends: + - libevent >=2.1.12,<2.1.13.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.1.3,<4.0a0 + license: Apache-2.0 + license_family: APACHE + size: 400010 + timestamp: 1695958016227 - kind: conda name: libthrift version: 0.19.0 @@ -10156,6 +14860,20 @@ packages: license_family: MIT size: 103492 timestamp: 1667316405233 +- kind: conda + name: libutf8proc + version: 2.8.0 + build: h4e544f5_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 + sha256: c1956b64ad9613c66cf87398f5e2c36d071034a93892da7e8cc22e75cface878 + md5: bf0defbd8ac06270fb5ec05c85fb3c96 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 101529 + timestamp: 1667315331359 - kind: conda name: libutf8proc version: 2.8.0 @@ -10198,6 +14916,20 @@ packages: license_family: BSD size: 33601 timestamp: 1680112270483 +- kind: conda + name: libuuid + version: 2.38.1 + build: hb4cce97_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + sha256: 616277b0c5f7616c2cdf36f6c316ea3f9aa5bb35f2d4476a349ab58b9b91675f + md5: 000e30b09db0b7c775b21695dff30969 + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 35720 + timestamp: 1680113474501 - kind: conda name: libuv version: 1.44.2 @@ -10227,6 +14959,20 @@ packages: license_family: MIT size: 396101 timestamp: 1693539567563 +- kind: conda + name: libuv + version: 1.46.0 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.46.0-h31becfc_0.conda + sha256: 8c7aca3bb0cdcdc94984dbdeeb6e81669e140e4e70e1b58243a39019380aa600 + md5: 9f34d91c42a7820676a895c314910ba7 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 625152 + timestamp: 1693539400188 - kind: conda name: libuv version: 1.46.0 @@ -10253,6 +14999,60 @@ packages: license_family: MIT size: 893348 timestamp: 1693539405436 +- kind: conda + name: libuv + version: 1.47.0 + build: h67532ce_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.47.0-h67532ce_0.conda + sha256: a452b8fbb906e72d6c633ed133413f6a604471597f4c80dc73b4e81d2ef56b32 + md5: c2c8307836ecebc2799400a4eca27b37 + license: MIT + license_family: MIT + size: 404907 + timestamp: 1707450430194 +- kind: conda + name: libuv + version: 1.47.0 + build: h93a5062_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.47.0-h93a5062_0.conda + sha256: 802da3ad57041480f15fe0581d6fcd421d9cdae17d796d2b126b0a12aa2d3d44 + md5: b586a09ba87849e37634cbaf9ea0e60f + license: MIT + license_family: MIT + size: 404350 + timestamp: 1707450365805 +- kind: conda + name: libuv + version: 1.48.0 + build: hcfcfb64_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/libuv-1.48.0-hcfcfb64_0.conda + sha256: 6151c51857c2407139ce22fdc956022353e675b2bc96991a9201d51cceaa90b4 + md5: 485e49e1d500d996844df14cabf64d73 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 289753 + timestamp: 1709913743184 +- kind: conda + name: libxcrypt + version: 4.4.36 + build: h31becfc_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + sha256: 6b46c397644091b8a26a3048636d10b989b1bf266d4be5e9474bf763f828f41f + md5: b4df5d7d4b63579d081fd3a4cf99740e + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 114269 + timestamp: 1702724369203 - kind: conda name: libxcrypt version: 4.4.36 @@ -10363,6 +15163,24 @@ packages: license_family: MIT size: 704829 timestamp: 1707084502281 +- kind: conda + name: libxml2 + version: 2.12.5 + build: h3091e33_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.12.5-h3091e33_0.conda + sha256: 34f7a007fa23b70c56358738d7ba801df9a923422f2dcd23f3b2ca790ea2460a + md5: 2fcb5d64474a337f2a4213ec1dd40ce2 + depends: + - icu >=73.2,<74.0a0 + - libgcc-ng >=12 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - xz >=5.2.6,<6.0a0 + license: MIT + license_family: MIT + size: 752149 + timestamp: 1707084726972 - kind: conda name: libxml2 version: 2.12.5 @@ -10398,6 +15216,23 @@ packages: license_family: MIT size: 1567894 timestamp: 1707084720091 +- kind: conda + name: libzlib + version: 1.2.13 + build: h31becfc_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h31becfc_5.conda + sha256: aeeefbb61e5e8227e53566d5e42dbb49e120eb99109996bf0dbfde8f180747a7 + md5: b213aa87eea9491ef7b129179322e955 + depends: + - libgcc-ng >=12 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 67036 + timestamp: 1686575148440 - kind: conda name: libzlib version: 1.2.13 @@ -10615,6 +15450,21 @@ packages: license_family: BSD size: 134235 timestamp: 1674728465431 +- kind: conda + name: lz4-c + version: 1.9.4 + build: hd600fc2_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda + sha256: 076870eb72411f41c46598c7582a2f3f42ba94c526a2d60a0c8f70a0a7a64429 + md5: 500145a83ed07ce79c8cef24252f366b + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 163770 + timestamp: 1674727020254 - kind: conda name: lz4-c version: 1.9.4 @@ -10710,7 +15560,7 @@ packages: name: markdown-it-py version: 3.0.0 build: pyhd8ed1ab_0 - subdir: win-64 + subdir: noarch noarch: python url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 @@ -10718,85 +15568,50 @@ packages: depends: - mdurl >=0.1,<1 - python >=3.8 - arch: x86_64 - platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/markdown-it-py size: 64356 timestamp: 1686175179621 - kind: conda - name: markupsafe - version: 2.1.5 - build: py311h05b510d_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py311h05b510d_0.conda - sha256: 3f2127bd8788dc4b7c3d6d65ae4b7d2f8c7d02a246fc17b819390edeca53fd93 - md5: a27177455a9d29f4ac9d687a489e5d52 - depends: - - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - - python_abi 3.11.* *_cp311 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 26578 - timestamp: 1706900556332 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py311h459d7ec_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda - sha256: 14912e557a6576e03f65991be89e9d289c6e301921b6ecfb4e7186ba974f453d - md5: a322b4185121935c871d201ae00ac143 - depends: - - libgcc-ng >=12 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 27502 - timestamp: 1706900084436 -- kind: conda - name: markupsafe - version: 2.1.5 - build: py311ha68e1ae_0 + name: markdown-it-py + version: 3.0.0 + build: pyhd8ed1ab_0 subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py311ha68e1ae_0.conda - sha256: c629f79fe78b5df7f08daa6b7f125f7a67f789bf734949c6d68aa063d7296208 - md5: 07da1326e2837e055ef6f44ef3334b0a + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 + md5: 93a8e71256479c62074356ef6ebf501b depends: - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 30011 - timestamp: 1706900632904 + - mdurl >=0.1,<1 + - python >=3.8 + arch: x86_64 + platform: win + license: MIT + license_family: MIT + purls: + - pkg:pypi/markdown-it-py + size: 64356 + timestamp: 1686175179621 - kind: conda - name: markupsafe - version: 2.1.5 - build: py311he705e18_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py311he705e18_0.conda - sha256: 83a2b764a4946a04e693a4dd8fe5a35bf093a378da9ce18bf0689cd5dcb3c3fe - md5: 75abe7e2e3a0874a49d7c175115f443f + name: maturin + version: 1.4.0 + build: py311h06e5ef9_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/maturin-1.4.0-py311h06e5ef9_0.conda + sha256: 2a24157cc1247c02bfbb7a7e214622035548ed9e5bef52bcff3b13e091286791 + md5: dc365d844be0acc4fc0e24d8b7f33f4a depends: + - libgcc-ng >=12 + - openssl >=3.2.0,<4.0a0 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 26155 - timestamp: 1706900211496 + - tomli >=1.1.0 + license: MIT + license_family: MIT + size: 6218103 + timestamp: 1701556894019 - kind: conda name: maturin version: 1.4.0 @@ -10883,6 +15698,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/mdurl size: 13707 timestamp: 1639515992326 - kind: conda @@ -10898,44 +15715,10 @@ packages: - python >=3.6 license: MIT license_family: MIT + purls: + - pkg:pypi/mdurl size: 14680 timestamp: 1704317789138 -- kind: conda - name: meilisearch - version: 1.5.1 - build: h5ef7bb8_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/meilisearch-1.5.1-h5ef7bb8_0.conda - sha256: c359718f193da18e77b7d19402d7453fa732978433ac562bbc86dfd17ef1bff8 - md5: 595899dbe10e2a0ab8e37f894f683082 - license: MIT - license_family: MIT - size: 81671718 - timestamp: 1702680633448 -- kind: conda - name: meilisearch - version: 1.5.1 - build: h8b8d39b_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/meilisearch-1.5.1-h8b8d39b_0.conda - sha256: 20d6cb4a77ef155a3dd86bc671681ed2c616dab96fd0a9a6aea0a85119411a12 - md5: 7e7bf2fea36389d2177cdca54df2d4ce - license: MIT - license_family: MIT - size: 80798614 - timestamp: 1702681657601 -- kind: conda - name: meilisearch - version: 1.5.1 - build: hc85fda4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/meilisearch-1.5.1-hc85fda4_0.conda - sha256: b6545f77a15b4535f28f7b20d6d9cf957d06537a14e83ba159694effc6f546e2 - md5: d84149b3fce1ed6384959f7096a27877 - license: MIT - license_family: MIT - size: 81301310 - timestamp: 1702680502752 - kind: conda name: meilisearch version: 1.5.1 @@ -10999,6 +15782,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/more-itertools size: 53654 timestamp: 1691087125209 - kind: conda @@ -11014,6 +15799,8 @@ packages: - python >=3.8 license: MIT license_family: MIT + purls: + - pkg:pypi/more-itertools size: 54469 timestamp: 1704738585811 - kind: conda @@ -11086,6 +15873,26 @@ packages: license_family: MIT size: 9963457 timestamp: 1703184979309 +- kind: conda + name: mypy + version: 1.8.0 + build: py311hcd402e7_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mypy-1.8.0-py311hcd402e7_0.conda + sha256: 2a1d84dc94a02ed3cae2fad6dfea0fab4a9504649c1a009d1fff7bfbd9d48e57 + md5: 22b4d0e0a591e6dba331d95f8a702517 + depends: + - libgcc-ng >=12 + - mypy_extensions >=1.0.0 + - psutil >=4.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - typing_extensions >=4.1.0 + license: MIT + license_family: MIT + size: 15129179 + timestamp: 1703185374507 - kind: conda name: mypy version: 1.8.0 @@ -11104,6 +15911,23 @@ packages: license_family: MIT size: 11969071 timestamp: 1703184938293 +- kind: conda + name: mypy_extensions + version: 1.0.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + depends: + - python >=3.5 + license: MIT + license_family: MIT + purls: + - pkg:pypi/mypy-extensions + size: 10492 + timestamp: 1675543414256 - kind: conda name: mypy_extensions version: 1.0.0 @@ -11119,8 +15943,24 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/mypy-extensions size: 10492 timestamp: 1675543414256 +- kind: conda + name: ncurses + version: '6.4' + build: h0425590_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.4-h0425590_2.conda + sha256: d71cf2f2b1a9fae7ee2455a35a890423838e9594294beb4a002fe7c7b10bc086 + md5: 4ff0a396150dedad4269e16e5810f769 + depends: + - libgcc-ng >=12 + license: X11 AND BSD-3-Clause + size: 920540 + timestamp: 1698751239554 - kind: conda name: ncurses version: '6.4' @@ -11249,6 +16089,21 @@ packages: license_family: Apache size: 121284 timestamp: 1676837793132 +- kind: conda + name: ninja + version: 1.11.1 + build: hdd96247_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.11.1-hdd96247_0.conda + sha256: 2ba2e59f619c58d748f4b1b858502587691a7ed0fa9ac2c26ac04091908d95ae + md5: 58f4c67113cda9171e3c03d3e62731e1 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 2398482 + timestamp: 1676839419214 - kind: conda name: ninja version: 1.11.1 @@ -11343,29 +16198,114 @@ packages: size: 15614862 timestamp: 1700389549489 - kind: conda - name: nox - version: 2021.10.1 - build: pyhd8ed1ab_0 + name: nodejs + version: 18.19.0 + build: h119ffd7_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nodejs-18.19.0-h119ffd7_0.conda + sha256: 896ca8a8683f7d6c3402364f6d28bd00b9d3cb9acb88c85d2fc9ecefbbf4f7db + md5: 022ff05e89afedc3db2decb77a8af207 + depends: + - icu >=73.2,<74.0a0 + - libcxx >=14 + - libuv >=1.47.0,<1.48.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zlib + constrains: + - __osx >=10.15 + license: MIT + license_family: MIT + size: 11439181 + timestamp: 1707771884027 +- kind: conda + name: nodejs + version: 18.19.0 + build: h57928b3_0 subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/nox-2021.10.1-pyhd8ed1ab_0.tar.bz2 - sha256: 2f453a747762a186a500c2dbbc8dd78bc717223725d3701686083e79b02aee50 - md5: c29de03dc9c5595cb011a6b2204c14f5 - depends: - - argcomplete >=1.9.4,<2.0 - - colorlog >=2.6.1,<5.0.0 - - importlib_metadata - - jinja2 + url: https://conda.anaconda.org/conda-forge/win-64/nodejs-18.19.0-h57928b3_0.conda + sha256: de01dd21f413e0e230b62082d5ee7f25b19b3c7296e1172c7cef94c9d36b8c38 + md5: 41ce77dc534e5bc71b0fc1687a89dcfd + license: MIT + license_family: MIT + size: 22479049 + timestamp: 1707403072267 +- kind: conda + name: nodejs + version: 18.19.0 + build: h5f47a4d_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nodejs-18.19.0-h5f47a4d_0.conda + sha256: 1263d3c8aa9adaf4e11616dc05fb28cfdb761d70f2298959728f847688073240 + md5: 7798b881265f448c752fbae08e221b10 + depends: + - icu >=73.2,<74.0a0 + - libcxx >=14 + - libuv >=1.47.0,<1.48.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zlib + license: MIT + license_family: MIT + size: 10879191 + timestamp: 1707778803050 +- kind: conda + name: nodejs + version: 18.19.0 + build: hb753e55_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nodejs-18.19.0-hb753e55_0.conda + sha256: d233fe4da686125c2b89d588349eccc78cdcb5a75a2b5b5bc9dc4d0c8c23eda1 + md5: 0b4a67051e3b3812818ccf2f4ee2fd4e + depends: + - __glibc >=2.17,<3.0.a0 + - icu >=73.2,<74.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libuv >=1.46.0,<1.47.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zlib + license: MIT + license_family: MIT + size: 15917143 + timestamp: 1707407233064 +- kind: conda + name: nodejs + version: 18.19.0 + build: hc1f8a26_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nodejs-18.19.0-hc1f8a26_0.conda + sha256: 161e061a43f9069c2fb7daab8ee3e442d9eb6cd27f332c5bd2e5746643030c72 + md5: b83df948ac353669bab45fa6efb4c312 + depends: + - icu >=73.2,<74.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libuv >=1.46.0,<1.47.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - openssl >=3.2.1,<4.0a0 + - zlib + license: MIT + license_family: MIT + size: 16126685 + timestamp: 1707414728922 +- kind: pypi + name: nox + version: 2024.3.2 + url: https://files.pythonhosted.org/packages/c2/55/c0d4ca1e6f68da8a1c7055ad80d4bf1fef651af08a68b52323cee97880c9/nox-2024.3.2-py3-none-any.whl + sha256: e53514173ac0b98dd47585096a55572fe504fecede58ced708979184d05440be + requires_dist: + - argcomplete <4.0, >=1.9.4 + - colorlog <7.0.0, >=2.6.1 + - importlib-metadata ; python_version < '3.8' - packaging >=20.9 - - py >=1.4.0,<2.0.0 - - python >=3.6 - - virtualenv >=14.0.0 - arch: x86_64 - platform: win - license: Apache-2.0 - license_family: Apache - size: 39937 - timestamp: 1633199959832 + - typing-extensions >=3.7.4 ; python_version < '3.8' + - virtualenv >=20.14.1 + - jinja2 ; extra == 'tox_to_nox' + - tox ; extra == 'tox_to_nox' + - uv ; extra == 'uv' + requires_python: '>=3.7' - kind: conda name: numpy version: 1.26.4 @@ -11387,6 +16327,8 @@ packages: - numpy-base <0a0 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/numpy size: 7104093 timestamp: 1707226459646 - kind: conda @@ -11409,8 +16351,35 @@ packages: - numpy-base <0a0 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/numpy size: 8065890 timestamp: 1707225944355 +- kind: conda + name: numpy + version: 1.26.4 + build: py311h69ead2a_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda + sha256: 88800a1d9d11c2fccab09d40d36f7001616f5119eaf0ec86186562f33564e651 + md5: 3fd00dd400c8d3f9da12bf33061dd28d + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/numpy + size: 7234391 + timestamp: 1707225781489 - kind: conda name: numpy version: 1.26.4 @@ -11431,6 +16400,8 @@ packages: - numpy-base <0a0 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/numpy size: 6652352 timestamp: 1707226297967 - kind: conda @@ -11452,6 +16423,8 @@ packages: - numpy-base <0a0 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/numpy size: 7504319 timestamp: 1707226235372 - kind: conda @@ -11470,6 +16443,23 @@ packages: license_family: Apache size: 2862719 timestamp: 1706635779319 +- kind: conda + name: openssl + version: 3.2.1 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.2.1-h31becfc_0.conda + sha256: 952ef5de4e3913621a89ca2eb8186683bb73832527219c6443c260a6b46cd149 + md5: b7e7c53240214ae96f52a440c0b0126a + depends: + - ca-certificates + - libgcc-ng >=12 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 3382700 + timestamp: 1706635800272 - kind: conda name: openssl version: 3.2.1 @@ -11602,77 +16592,175 @@ packages: - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.1.10,<2.0a0 - zstd >=1.5.5,<1.6.0a0 - arch: x86_64 - platform: linux + arch: x86_64 + platform: linux + license: Apache-2.0 + license_family: Apache + size: 1018308 + timestamp: 1700372809593 +- kind: conda + name: orc + version: 1.9.2 + build: h798d188_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.2-h798d188_2.conda + sha256: eb45795b9d965fe7c066d283a72a883697bc9940d6696b641073d53a332bfa94 + md5: f09fc67b7de2e85b573b929fab0af059 + depends: + - libcxx >=16 + - libprotobuf >=4.25.2,<4.25.3.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 + license_family: Apache + size: 407007 + timestamp: 1708632909550 +- kind: conda + name: orc + version: 1.9.2 + build: h7c018df_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.2-h7c018df_0.conda + sha256: b1ad0f09dc69a8956079371d9853534f991f8311352e4e21503e6e5d20e4017b + md5: 1ef4159e9686d95ce8ea9f1d4d999f29 + depends: + - __osx >=10.9 + - libcxx >=16.0.6 + - libprotobuf >=4.24.4,<4.24.5.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + arch: aarch64 + platform: osx + license: Apache-2.0 + license_family: Apache + size: 405599 + timestamp: 1700373052638 +- kind: conda + name: orc + version: 1.9.2 + build: h9ab30d4_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.2-h9ab30d4_0.conda + sha256: a948db80c0b756db07abce1972d6b8d1a08a7ced5a687b02435348c81443de08 + md5: 8fb76f7b135aec885cfe47c52b2eb4b5 + depends: + - __osx >=10.13 + - __osx >=10.9 + - libcxx >=16.0.6 + - libprotobuf >=4.24.4,<4.24.5.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + arch: x86_64 + platform: osx + license: Apache-2.0 + license_family: Apache + size: 423917 + timestamp: 1700373043647 +- kind: conda + name: orc + version: 2.0.0 + build: h1e5e2c1_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.0-h1e5e2c1_0.conda + sha256: ed8cfe1f35e8ef703e540e7731e77fade1410bba406e17727a10dee08c37d5b4 + md5: 53e8f030579d34e1a36a735d527c021f + depends: + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 + license_family: Apache + size: 1028974 + timestamp: 1710232781925 +- kind: conda + name: orc + version: 2.0.0 + build: h3d3088e_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.0-h3d3088e_0.conda + sha256: 6a1f553e2ea3d2df3c465b02c7ece5c001cc2d3afb1fe7e2678a7ff7a5a14168 + md5: a8e452c3f2b6fecfd86e8f2b72450a9b + depends: + - libcxx >=16 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libzlib >=1.2.13,<1.3.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.1.10,<2.0a0 + - zstd >=1.5.5,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1018308 - timestamp: 1700372809593 + size: 413922 + timestamp: 1710233361620 - kind: conda name: orc - version: 1.9.2 - build: h798d188_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.2-h798d188_2.conda - sha256: eb45795b9d965fe7c066d283a72a883697bc9940d6696b641073d53a332bfa94 - md5: f09fc67b7de2e85b573b929fab0af059 + version: 2.0.0 + build: h6c6cd50_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.0-h6c6cd50_0.conda + sha256: 0c198b6a8de238d53002e7c03e4b1e94e769cf388adac2717fdaadfee9381a14 + md5: 5ce58b9a5679fe6640d6d68228099ce9 depends: + - __osx >=10.13 - libcxx >=16 - - libprotobuf >=4.25.2,<4.25.3.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 - libzlib >=1.2.13,<1.3.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.1.10,<2.0a0 - zstd >=1.5.5,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 407007 - timestamp: 1708632909550 + size: 433224 + timestamp: 1710233383447 - kind: conda name: orc - version: 1.9.2 - build: h7c018df_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.2-h7c018df_0.conda - sha256: b1ad0f09dc69a8956079371d9853534f991f8311352e4e21503e6e5d20e4017b - md5: 1ef4159e9686d95ce8ea9f1d4d999f29 + version: 2.0.0 + build: h75d905f_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.0-h75d905f_0.conda + sha256: 32c843b4ce01d29ed04e81ea5c20d78051d47091c6a27b9f6e1eb7c428983b01 + md5: 7fb160bb1300a3043fec7e40d50e9aa6 depends: - - __osx >=10.9 - - libcxx >=16.0.6 - - libprotobuf >=4.24.4,<4.24.5.0a0 + - libgcc-ng >=12 + - libprotobuf >=4.25.3,<4.25.4.0a0 + - libstdcxx-ng >=12 - libzlib >=1.2.13,<1.3.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.1.10,<2.0a0 - zstd >=1.5.5,<1.6.0a0 - arch: aarch64 - platform: osx license: Apache-2.0 license_family: Apache - size: 405599 - timestamp: 1700373052638 + size: 999580 + timestamp: 1710232876736 - kind: conda name: orc - version: 1.9.2 - build: h9ab30d4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.2-h9ab30d4_0.conda - sha256: a948db80c0b756db07abce1972d6b8d1a08a7ced5a687b02435348c81443de08 - md5: 8fb76f7b135aec885cfe47c52b2eb4b5 + version: 2.0.0 + build: heb0c069_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.0-heb0c069_0.conda + sha256: 5a9c0904f38e5c2e1d1494bd192ff98fca13ca07ed1590497b16a801bef497a0 + md5: 2733034196c084cdc07e0facfea995ea depends: - - __osx >=10.13 - - __osx >=10.9 - - libcxx >=16.0.6 - - libprotobuf >=4.24.4,<4.24.5.0a0 + - libprotobuf >=4.25.3,<4.25.4.0a0 - libzlib >=1.2.13,<1.3.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.1.10,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 - zstd >=1.5.5,<1.6.0a0 - arch: x86_64 - platform: osx license: Apache-2.0 license_family: Apache - size: 423917 - timestamp: 1700373043647 + size: 953672 + timestamp: 1710233287310 - kind: conda name: packaging version: '23.2' @@ -11688,8 +16776,27 @@ packages: platform: win license: Apache-2.0 license_family: APACHE + purls: + - pkg:pypi/packaging size: 49452 timestamp: 1696202521121 +- kind: conda + name: packaging + version: '24.0' + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda + sha256: a390182d74c31dfd713c16db888c92c277feeb6d1fe96ff9d9c105f9564be48a + md5: 248f521b64ce055e7feae3105e7abeb8 + depends: + - python >=3.8 + license: Apache-2.0 + license_family: APACHE + purls: + - pkg:pypi/packaging + size: 49832 + timestamp: 1710076089469 - kind: conda name: patchelf version: 0.17.2 @@ -11720,6 +16827,8 @@ packages: platform: win license: MPL-2.0 license_family: MOZILLA + purls: + - pkg:pypi/pathspec size: 38649 timestamp: 1690598108100 - kind: conda @@ -11735,6 +16844,8 @@ packages: - python >=3.7 license: MPL-2.0 license_family: MOZILLA + purls: + - pkg:pypi/pathspec size: 41173 timestamp: 1702250135032 - kind: conda @@ -11754,6 +16865,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/pip size: 1386212 timestamp: 1690024763393 - kind: conda @@ -11771,6 +16884,8 @@ packages: - wheel license: MIT license_family: MIT + purls: + - pkg:pypi/pip size: 1398245 timestamp: 1706960660581 - kind: conda @@ -11789,6 +16904,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/platformdirs size: 19985 timestamp: 1696272419779 - kind: conda @@ -11804,6 +16921,8 @@ packages: - python >=3.8 license: MIT license_family: MIT + purls: + - pkg:pypi/platformdirs size: 20210 timestamp: 1706713564353 - kind: conda @@ -11821,6 +16940,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/pluggy size: 22548 timestamp: 1693086745921 - kind: conda @@ -11836,6 +16957,8 @@ packages: - python >=3.8 license: MIT license_family: MIT + purls: + - pkg:pypi/pluggy size: 23384 timestamp: 1706116931972 - kind: conda @@ -11884,6 +17007,21 @@ packages: license_family: MIT size: 12979886 timestamp: 1691677482320 +- kind: conda + name: prettier + version: 2.8.8 + build: hc2da131_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/prettier-2.8.8-hc2da131_1.conda + sha256: 92edf0f0b6b5464ba65c16cdd4c9c589904d702f31cfa3da083d2e9148a208ac + md5: 76323f2eb984976e77da9b357f488a6b + depends: + - nodejs >=18.16.1,<19.0a0 + license: MIT + license_family: MIT + size: 12873889 + timestamp: 1691677118975 - kind: conda name: prettier version: 2.8.8 @@ -11913,6 +17051,8 @@ packages: - python_abi 3.11.* *_cp311 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/psutil size: 513415 timestamp: 1705722847446 - kind: conda @@ -11929,6 +17069,8 @@ packages: - python_abi 3.11.* *_cp311 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/psutil size: 505516 timestamp: 1705722586221 - kind: conda @@ -11947,8 +17089,29 @@ packages: - vc14_runtime >=14.29.30139 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/psutil size: 520242 timestamp: 1705723070638 +- kind: conda + name: psutil + version: 5.9.8 + build: py311hcd402e7_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-5.9.8-py311hcd402e7_0.conda + sha256: d04efc76d734ac2f1e00f52e3385ba80b089becf60aaae52f0edf185ca9f69e0 + md5: 858767f880caa447ae640a991ec5ba9e + depends: + - libgcc-ng >=12 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/psutil + size: 506604 + timestamp: 1705722743163 - kind: conda name: psutil version: 5.9.8 @@ -11962,6 +17125,8 @@ packages: - python_abi 3.11.* *_cp311 license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/psutil size: 513371 timestamp: 1705722716862 - kind: conda @@ -11979,22 +17144,35 @@ packages: size: 144301 timestamp: 1537755684331 - kind: conda - name: py - version: 1.11.0 - build: pyh6c4a22f_0 - subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2 - sha256: 268be33a290e3d51467ab29cbb5a80cf79f69dade2f2dead25d7f80d76c3543a - md5: b4613d7e7a493916d867842a6a148054 - depends: - - python >=2.7 - arch: x86_64 - platform: win - license: MIT - license_family: MIT - size: 76038 - timestamp: 1636301988765 + name: pyarrow + version: 14.0.2 + build: py311h1eb6f34_12_cpu + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-14.0.2-py311h1eb6f34_12_cpu.conda + sha256: b8946dd95fe52d3b11332738f9a14191590d7c53820de424e43209ed7b94066c + md5: f99ad4baaa57ab44e9af3aaa89c7bfc3 + depends: + - libarrow 14.0.2 h25df049_12_cpu + - libarrow-acero 14.0.2 h2f0025b_12_cpu + - libarrow-dataset 14.0.2 h2f0025b_12_cpu + - libarrow-flight 14.0.2 h2f4a9e5_12_cpu + - libarrow-flight-sql 14.0.2 hc81a7a7_12_cpu + - libarrow-gandiva 14.0.2 h3a2b1eb_12_cpu + - libarrow-substrait 14.0.2 hd45466a_12_cpu + - libgcc-ng >=12 + - libparquet 14.0.2 hb18b541_12_cpu + - libstdcxx-ng >=12 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 4398440 + timestamp: 1710295377459 - kind: conda name: pyarrow version: 14.0.2 @@ -12024,6 +17202,35 @@ packages: license_family: APACHE size: 4524767 timestamp: 1708692350829 +- kind: conda + name: pyarrow + version: 14.0.2 + build: py311h39c9aba_13_cpu + build_number: 13 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-14.0.2-py311h39c9aba_13_cpu.conda + sha256: 2eef5e752f71b9a2f74491e0f9d3c9e58761f179f8198cb8d710627ca3e9a13d + md5: e95c99f69395f1a43582de9b0d35a553 + depends: + - libarrow 14.0.2 h6bfc85a_13_cpu + - libarrow-acero 14.0.2 h59595ed_13_cpu + - libarrow-dataset 14.0.2 h59595ed_13_cpu + - libarrow-flight 14.0.2 hc6145d9_13_cpu + - libarrow-flight-sql 14.0.2 h757c851_13_cpu + - libarrow-gandiva 14.0.2 hb016d2e_13_cpu + - libarrow-substrait 14.0.2 h757c851_13_cpu + - libgcc-ng >=12 + - libparquet 14.0.2 h352af49_13_cpu + - libstdcxx-ng >=12 + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 4543451 + timestamp: 1710347598355 - kind: conda name: pyarrow version: 14.0.2 @@ -12081,6 +17288,34 @@ packages: license_family: APACHE size: 4009410 timestamp: 1708691836141 +- kind: conda + name: pyarrow + version: 14.0.2 + build: py311h54e7ce8_13_cpu + build_number: 13 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-14.0.2-py311h54e7ce8_13_cpu.conda + sha256: 543f8b4e7cc6453b64b0dd20b43ac312cc61fe28e10869f04edf5ee29214ce13 + md5: 9b4945755f71df2d66e2e9af881b4b0c + depends: + - libarrow 14.0.2 he79e29d_13_cpu + - libarrow-acero 14.0.2 h000cb23_13_cpu + - libarrow-dataset 14.0.2 h000cb23_13_cpu + - libarrow-flight 14.0.2 h2382776_13_cpu + - libarrow-flight-sql 14.0.2 h7e3fe20_13_cpu + - libarrow-gandiva 14.0.2 ha5acb15_13_cpu + - libarrow-substrait 14.0.2 h7e3fe20_13_cpu + - libcxx >=14 + - libparquet 14.0.2 h381d950_13_cpu + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 4020354 + timestamp: 1710348158705 - kind: conda name: pyarrow version: 14.0.2 @@ -12139,6 +17374,36 @@ packages: license_family: APACHE size: 3465525 timestamp: 1708693288111 +- kind: conda + name: pyarrow + version: 14.0.2 + build: py311h6a6099b_13_cpu + build_number: 13 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-14.0.2-py311h6a6099b_13_cpu.conda + sha256: 76d0f17e140cb3f22adefe568fa6fb5b0eaec250dc22306d4da21b8ce5869260 + md5: b22193a1d8c2d28f6c3dbb94da33147d + depends: + - libarrow 14.0.2 h2a83f13_13_cpu + - libarrow-acero 14.0.2 h63175ca_13_cpu + - libarrow-dataset 14.0.2 h63175ca_13_cpu + - libarrow-flight 14.0.2 h02312f3_13_cpu + - libarrow-flight-sql 14.0.2 h55b4db4_13_cpu + - libarrow-gandiva 14.0.2 hcb01e45_13_cpu + - libarrow-substrait 14.0.2 h89268de_13_cpu + - libparquet 14.0.2 h7ec3a38_13_cpu + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 3470330 + timestamp: 1710349686722 - kind: conda name: pyarrow version: 14.0.2 @@ -12168,6 +17433,35 @@ packages: license_family: APACHE size: 4094429 timestamp: 1708693258443 +- kind: conda + name: pyarrow + version: 14.0.2 + build: py311hd7bc329_13_cpu + build_number: 13 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-14.0.2-py311hd7bc329_13_cpu.conda + sha256: 077d688f4c748f99760d7b8555c6ecf0c071381d2978032316d0c50389a083a0 + md5: fdd086b17f9ae33004bdd1991ccb1321 + depends: + - libarrow 14.0.2 h5233fb5_13_cpu + - libarrow-acero 14.0.2 h13dd4ca_13_cpu + - libarrow-dataset 14.0.2 h13dd4ca_13_cpu + - libarrow-flight 14.0.2 h95ca633_13_cpu + - libarrow-flight-sql 14.0.2 hdc5392b_13_cpu + - libarrow-gandiva 14.0.2 hfef958d_13_cpu + - libarrow-substrait 14.0.2 hef52601_13_cpu + - libcxx >=14 + - libparquet 14.0.2 hf6ce1d5_13_cpu + - numpy >=1.23.5,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + license_family: APACHE + size: 4084630 + timestamp: 1710348774061 - kind: conda name: pyarrow version: 14.0.2 @@ -12212,6 +17506,8 @@ packages: platform: win license: BSD-2-Clause license_family: BSD + purls: + - pkg:pypi/pygments size: 853439 timestamp: 1691408777841 - kind: conda @@ -12227,6 +17523,8 @@ packages: - python >=3.7 license: BSD-2-Clause license_family: BSD + purls: + - pkg:pypi/pygments size: 860425 timestamp: 1700608076927 - kind: conda @@ -12252,6 +17550,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/pytest size: 244691 timestamp: 1694128618921 - kind: conda @@ -12275,8 +17575,35 @@ packages: - pytest-faulthandler >=2 license: MIT license_family: MIT + purls: + - pkg:pypi/pytest size: 251713 timestamp: 1706448088334 +- kind: conda + name: pytest + version: 8.1.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.1.1-pyhd8ed1ab_0.conda + sha256: 3c481d6b54af1a33c32a3f3eaa3e0971955431e7023db55808740cd062271c73 + md5: 94ff09cdedcb7b17e9cd5097ee2cfcff + depends: + - colorama + - exceptiongroup >=1.0.0rc8 + - iniconfig + - packaging + - pluggy <2.0,>=1.4 + - python >=3.8 + - tomli >=1 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pytest + size: 255523 + timestamp: 1709992719691 - kind: conda name: python version: 3.11.8 @@ -12303,6 +17630,36 @@ packages: license: Python-2.0 size: 18096526 timestamp: 1708116524168 +- kind: conda + name: python + version: 3.11.8 + build: h43d1f9e_0_cpython + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.8-h43d1f9e_0_cpython.conda + sha256: 4dbd3ac5f760cbf8c613df0a29d970ed1e8235101be1fa74ccd833300661706f + md5: fec01f7d8fdfec9c4881a1c9bdbc959e + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-aarch64 >=2.36.1 + - libexpat >=2.5.0,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.45.1,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.2.13,<1.3.0a0 + - ncurses >=6.4,<7.0a0 + - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - xz >=5.2.6,<6.0a0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 15317480 + timestamp: 1708116052369 - kind: conda name: python version: 3.11.8 @@ -12398,6 +17755,21 @@ packages: license_family: BSD size: 6385 timestamp: 1695147338551 +- kind: conda + name: python_abi + version: '3.11' + build: 4_cp311 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.11-4_cp311.conda + sha256: 135a21de5721a2667613529b4ac50a9454979bf969fa99d74b6e5ad9a4ff284d + md5: 89983f987dfee288f94ddb2ee550ea60 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6384 + timestamp: 1695147390555 - kind: conda name: python_abi version: '3.11' @@ -12462,6 +17834,23 @@ packages: license_family: BSD size: 3735644 timestamp: 1684785130341 +- kind: conda + name: rdma-core + version: '50.0' + build: h0425590_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rdma-core-50.0-h0425590_1.conda + sha256: 146c5f5c0162b39508b0f8d5b87e01e788ff6d553165e901e813afbf3b81ab50 + md5: 0e2cbcc4194d73065fcad8a4fb049893 + depends: + - libgcc-ng >=12 + - libnl >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + license: Linux-OpenIB + license_family: BSD + size: 4744617 + timestamp: 1710157969911 - kind: conda name: rdma-core version: '50.0' @@ -12479,6 +17868,24 @@ packages: license_family: BSD size: 4724921 timestamp: 1706524445013 +- kind: conda + name: rdma-core + version: '50.0' + build: hd3aeb46_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-50.0-hd3aeb46_1.conda + sha256: 85e38508eb4921e53cf1cb97435f9c9408ea2ddc582c6588ec50f3f3ec3abdc0 + md5: f462219598fcf46c0cdfb985c3482b4f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libnl >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + license: Linux-OpenIB + license_family: BSD + size: 4713842 + timestamp: 1710157799992 - kind: conda name: re2 version: 2023.06.02 @@ -12551,6 +17958,21 @@ packages: license_family: BSD size: 26617 timestamp: 1708946796423 +- kind: conda + name: re2 + version: 2023.09.01 + build: h9caee61_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + sha256: 31db9c598bfa7586ac2e3ba06681d676caa5d252b5b68f4b6173edc71f70681e + md5: a9667ab785e1686d53313364c695f58e + depends: + - libre2-11 2023.09.01 h9d008c2_2 + license: BSD-3-Clause + license_family: BSD + size: 26726 + timestamp: 1708946863063 - kind: conda name: re2 version: 2023.09.01 @@ -12597,6 +18019,22 @@ packages: license_family: GPL size: 281456 timestamp: 1679532220005 +- kind: conda + name: readline + version: '8.2' + build: h8fc344f_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda + sha256: 4c99f7417419734e3797d45bc355e61c26520e111893b0d7087a01a7fbfbe3dd + md5: 105eb1e16bf83bfb2eb380a48032b655 + depends: + - libgcc-ng >=12 + - ncurses >=6.3,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 294092 + timestamp: 1679532238805 - kind: conda name: readline version: '8.2' @@ -12639,6 +18077,20 @@ packages: license_family: MIT size: 177229 timestamp: 1693456080514 +- kind: conda + name: rhash + version: 1.4.4 + build: h31becfc_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.4-h31becfc_0.conda + sha256: 11c44602ac8f3054da83bfcfff0d8e04e83e231b51b0f8c660ff007669de14ff + md5: 8e4df96fa39923f420006095785a0e4b + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 199565 + timestamp: 1693455889616 - kind: conda name: rhash version: 1.4.4 @@ -12703,6 +18155,24 @@ packages: license_family: MIT size: 184071 timestamp: 1700160247583 +- kind: conda + name: rich + version: 13.7.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda + sha256: 2b26d58aa59e46f933c3126367348651b0dab6e0bf88014e857415bb184a4667 + md5: ba445bf767ae6f0d959ff2b40c20912b + depends: + - markdown-it-py >=2.2.0 + - pygments >=2.13.0,<3.0.0 + - python >=3.7.0 + - typing_extensions >=4.0.0,<5.0.0 + license: MIT + license_family: MIT + size: 184347 + timestamp: 1709150578093 - kind: conda name: ruff version: 0.2.2 @@ -12718,6 +18188,8 @@ packages: - python_abi 3.11.* *_cp311 license: MIT license_family: MIT + purls: + - pkg:pypi/ruff size: 5717696 timestamp: 1708223090811 - kind: conda @@ -12737,6 +18209,8 @@ packages: - __osx >=11.0 license: MIT license_family: MIT + purls: + - pkg:pypi/ruff size: 5280983 timestamp: 1708223865116 - kind: conda @@ -12755,8 +18229,30 @@ packages: - vc14_runtime >=14.29.30139 license: MIT license_family: MIT + purls: + - pkg:pypi/ruff size: 5662517 timestamp: 1708224151838 +- kind: conda + name: ruff + version: 0.2.2 + build: py311he69e3a7_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ruff-0.2.2-py311he69e3a7_0.conda + sha256: 79692d93fd01d2600aad350d34efa4faae33b87f35acce1560de61b4f14cc597 + md5: d43da3e0a735527d540d7f8947ee179b + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + purls: + - pkg:pypi/ruff + size: 5439861 + timestamp: 1708223383662 - kind: conda name: ruff version: 0.2.2 @@ -12773,6 +18269,8 @@ packages: - __osx >=10.12 license: MIT license_family: MIT + purls: + - pkg:pypi/ruff size: 5540591 timestamp: 1708224008985 - kind: conda @@ -12807,6 +18305,53 @@ packages: license_family: Apache size: 337907 timestamp: 1708664518615 +- kind: conda + name: s2n + version: 1.4.5 + build: h5a25046_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.4.5-h5a25046_0.conda + sha256: a72687e4bab7c9a0f2b502335f93daa84e3a8fcec0787e08923a62607cf01191 + md5: a7fa2e8f06035a24564ff3a7b84d2bd3 + depends: + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 333810 + timestamp: 1708664562153 +- kind: conda + name: s2n + version: 1.4.6 + build: h06160fa_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.6-h06160fa_0.conda + sha256: 2d03e27d607e3b797ada1ab805deebdd321c3ec99c1581188ac22041c06fd7b6 + md5: 88350a8ea5a9aa734b8b553bfd2ff78c + depends: + - libgcc-ng >=12 + - openssl >=3.2.1,<4.0a0 + license: Apache-2.0 + license_family: Apache + size: 339401 + timestamp: 1709937040957 +- kind: conda + name: semver + version: 2.13.0 + build: pyh9f0ad1d_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + sha256: 673ef5ef04cef60c3584b1d9b81024646b9d9a4c50749356c7ba5cede755e61d + md5: 2cab9f3a9683cb40a2176ccaf76e66c6 + depends: + - python + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/semver + size: 15712 + timestamp: 1603697876069 - kind: conda name: semver version: 2.13.0 @@ -12822,6 +18367,8 @@ packages: platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/semver size: 15712 timestamp: 1603697876069 - kind: conda @@ -12839,6 +18386,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/setuptools size: 464399 timestamp: 1694548452441 - kind: conda @@ -12854,8 +18403,27 @@ packages: - python >=3.7 license: MIT license_family: MIT + purls: + - pkg:pypi/setuptools size: 470548 timestamp: 1704224855187 +- kind: conda + name: setuptools + version: 69.2.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: da214ecd521a720a9d521c68047682dc + depends: + - python >=3.8 + license: MIT + license_family: MIT + purls: + - pkg:pypi/setuptools + size: 471183 + timestamp: 1710344615844 - kind: conda name: sigtool version: 0.1.3 @@ -12884,6 +18452,23 @@ packages: license_family: MIT size: 213817 timestamp: 1643442169866 +- kind: conda + name: smmap + version: 5.0.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + sha256: 23011cb3e064525bdb8787c75126a2e78d2344a72cd6773922006d1da1f2af16 + md5: 62f26a3d1387acee31322208f0cfa3e0 + depends: + - python >=3.5 + license: BSD-3-Clause + license_family: BSD + purls: + - pkg:pypi/smmap + size: 22483 + timestamp: 1634310465482 - kind: conda name: smmap version: 5.0.0 @@ -12899,6 +18484,8 @@ packages: platform: win license: BSD-3-Clause license_family: BSD + purls: + - pkg:pypi/smmap size: 22483 timestamp: 1634310465482 - kind: conda @@ -12944,6 +18531,21 @@ packages: license_family: BSD size: 38865 timestamp: 1678534590321 +- kind: conda + name: snappy + version: 1.1.10 + build: he8610fa_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.10-he8610fa_0.conda + sha256: 5a7d6cf781cbaaea4effce4d8f2677cd6173af5e8b744912e1283a704eb91946 + md5: 11c25e55894bb8207a81a87e6a32b6e7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 38265 + timestamp: 1678534683114 - kind: conda name: snappy version: 1.1.10 @@ -13095,6 +18697,21 @@ packages: license_family: APACHE size: 161382 timestamp: 1706164225098 +- kind: conda + name: tk + version: 8.6.13 + build: h194ca79_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + sha256: 7fa27cc512d3a783f38bd16bbbffc008807372499d5b65d089a8e43bde9db267 + md5: f75105e0585851f818e0009dd1dde4dc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: TCL + license_family: BSD + size: 3351802 + timestamp: 1695506242997 - kind: conda name: tk version: 8.6.13 @@ -13225,6 +18842,23 @@ packages: license_family: BSD size: 3318875 timestamp: 1699202167581 +- kind: conda + name: tomli + version: 2.0.1 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + md5: 5844808ffab9ebdb694585b50ba02a96 + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/tomli + size: 15940 + timestamp: 1644342331069 - kind: conda name: tomli version: 2.0.1 @@ -13240,8 +18874,27 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/tomli size: 15940 timestamp: 1644342331069 +- kind: conda + name: tomlkit + version: 0.12.3 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.3-pyha770c72_0.conda + sha256: 53cc436ab92d38683df1320e4468a8b978428e800195bf1c8c2460e90b0bc117 + md5: 074d0ce7a6261ab8b497c3518796ef3e + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/tomlkit + size: 37132 + timestamp: 1700046842169 - kind: conda name: tomlkit version: 0.12.3 @@ -13257,6 +18910,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/tomlkit size: 37132 timestamp: 1700046842169 - kind: conda @@ -13291,6 +18946,8 @@ packages: platform: win license: PSF-2.0 license_family: PSF + purls: + - pkg:pypi/typing-extensions size: 35108 timestamp: 1695040948828 - kind: conda @@ -13306,8 +18963,27 @@ packages: - python >=3.8 license: PSF-2.0 license_family: PSF + purls: + - pkg:pypi/typing-extensions size: 36058 timestamp: 1702176292645 +- kind: conda + name: typing_extensions + version: 4.10.0 + build: pyha770c72_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.10.0-pyha770c72_0.conda + sha256: 4be24d557897b2f6609f5d5f7c437833c62f4d4a96581e39530067e96a2d0451 + md5: 16ae769069b380646c47142d719ef466 + depends: + - python >=3.8 + license: PSF-2.0 + license_family: PSF + purls: + - pkg:pypi/typing-extensions + size: 37018 + timestamp: 1708904796013 - kind: conda name: typos version: 1.16.20 @@ -13426,6 +19102,77 @@ packages: license_family: MIT size: 3652168 timestamp: 1707161817201 +- kind: conda + name: typos + version: 1.19.0 + build: h11a7dfb_0 + subdir: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/typos-1.19.0-h11a7dfb_0.conda + sha256: 79da26e5585382a4ec5dde9ba0d43435f0dd441e9f344ef99d12f2dab0117b74 + md5: 97b99652ce2673198b2ab73b7cf85c31 + constrains: + - __osx >=10.12 + license: MIT + license_family: MIT + size: 3305763 + timestamp: 1709332590675 +- kind: conda + name: typos + version: 1.19.0 + build: h1d8f897_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/typos-1.19.0-h1d8f897_0.conda + sha256: 3cb7579ee8924d3fb0ba10ae42620aec9f6decaf8499510910ce8052ba269b82 + md5: 1b4263817ba9418e1c6bd7547028eef3 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 3607084 + timestamp: 1709332306391 +- kind: conda + name: typos + version: 1.19.0 + build: h5ef7bb8_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.19.0-h5ef7bb8_0.conda + sha256: d73ae2b63301e440049a9b0f78c9b6747d9ef1a6be360a5856ab77c6cefceca7 + md5: 8516e396a23de65bad5066799fdbecf2 + constrains: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 3307039 + timestamp: 1709332619096 +- kind: conda + name: typos + version: 1.19.0 + build: h7f3b576_0 + subdir: win-64 + url: https://conda.anaconda.org/conda-forge/win-64/typos-1.19.0-h7f3b576_0.conda + sha256: b9dc051dccb7cc9fb99d130f42703f0b14b711408d5b94d5864984b982981eb8 + md5: 0066abed96ba51601722fda1eee87973 + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: MIT + license_family: MIT + size: 2571575 + timestamp: 1709333263031 +- kind: conda + name: typos + version: 1.19.0 + build: he8a937b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/typos-1.19.0-he8a937b_0.conda + sha256: ee886a360248e517b75980e7c7249fbba7bed97e5f67371257f8dc29b5c348df + md5: 97d8f139e4fb369369fb71f53e29be45 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 3616719 + timestamp: 1709332292966 - kind: conda name: tzdata version: 2024a @@ -13452,6 +19199,25 @@ packages: license_family: PROPRIETARY size: 1283972 timestamp: 1666630199266 +- kind: conda + name: ucx + version: 1.15.0 + build: h11edf95_7 + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h11edf95_7.conda + sha256: 3e381ec5918045a43e0f349214a4d38e53990897ba07a6abf025f9e0156acaf2 + md5: 20a94f617ad76922f8737ad1fe317f4d + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - rdma-core >=50.0 + constrains: + - cuda-version >=11.2,<12 + license: BSD-3-Clause + license_family: BSD + size: 6847943 + timestamp: 1710357262334 - kind: conda name: ucx version: 1.15.0 @@ -13493,6 +19259,25 @@ packages: license_family: BSD size: 15172395 timestamp: 1705978902381 +- kind: conda + name: ucx + version: 1.15.0 + build: hcf8619e_7 + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.15.0-hcf8619e_7.conda + sha256: a22855693b154dc1a691d93b2acf21b3b485c355535d2f5bc23981fb6e330b53 + md5: 1c7268d3f881267e4f3c181257b3ad41 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - rdma-core >=50.0 + constrains: + - cuda-version >=11.2,<12 + license: BSD-3-Clause + license_family: BSD + size: 6868398 + timestamp: 1710357060520 - kind: conda name: vc version: '14.3' @@ -13565,44 +19350,36 @@ packages: license_family: Proprietary size: 749868 timestamp: 1702511239004 -- kind: conda - name: virtualenv - version: 20.24.6 - build: pyhd8ed1ab_0 - subdir: win-64 - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda - sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde - md5: fb1fc875719e217ed799a7aae11d3be4 - depends: - - distlib <1,>=0.3.7 - - filelock <4,>=3.12.2 - - platformdirs <4,>=3.9.1 - - python >=3.8 - arch: x86_64 - platform: win - license: MIT - license_family: MIT - size: 3067859 - timestamp: 1698092779433 -- kind: conda +- kind: pypi name: virtualenv - version: 20.25.0 - build: pyhd8ed1ab_0 - subdir: noarch - noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.25.0-pyhd8ed1ab_0.conda - sha256: 50827c3721a9dbf973b568709d4381add2a6552fa562f26a385c5edc16a534af - md5: c119653cba436d8183c27bf6d190e587 - depends: - - distlib <1,>=0.3.7 - - filelock <4,>=3.12.2 - - platformdirs <5,>=3.9.1 - - python >=3.8 - license: MIT - license_family: MIT - size: 3122816 - timestamp: 1701458945559 + version: 20.25.1 + url: https://files.pythonhosted.org/packages/16/65/0d0bdfdac31e2db8c6d6c18fe1e00236f0dea279f9846f94a9aafa49cfc9/virtualenv-20.25.1-py3-none-any.whl + sha256: 961c026ac520bac5f69acb8ea063e8a4f071bcc9457b9c1f28f6b085c511583a + requires_dist: + - distlib <1, >=0.3.7 + - filelock <4, >=3.12.2 + - importlib-metadata >=6.6 ; python_version < '3.8' + - platformdirs <5, >=3.9.1 + - furo >=2023.7.26 ; extra == 'docs' + - proselint >=0.13 ; extra == 'docs' + - sphinx-argparse >=0.4 ; extra == 'docs' + - sphinx >=7.1.2 ; extra == 'docs' + - sphinxcontrib-towncrier >=0.2.1a0 ; extra == 'docs' + - towncrier >=23.6 ; extra == 'docs' + - covdefaults >=2.3 ; extra == 'test' + - coverage-enable-subprocess >=1 ; extra == 'test' + - coverage >=7.2.7 ; extra == 'test' + - flaky >=3.7 ; extra == 'test' + - packaging >=23.1 ; extra == 'test' + - pytest-env >=0.8.2 ; extra == 'test' + - pytest-freezer >=0.4.8 ; platform_python_implementation == 'PyPy' and extra == 'test' + - pytest-mock >=3.11.1 ; extra == 'test' + - pytest-randomly >=3.12 ; extra == 'test' + - pytest-timeout >=2.1 ; extra == 'test' + - pytest >=7.4 ; extra == 'test' + - setuptools >=68 ; extra == 'test' + - time-machine >=2.10 ; platform_python_implementation == 'CPython' and extra == 'test' + requires_python: '>=3.7' - kind: conda name: vs2015_runtime version: 14.36.32532 @@ -13664,6 +19441,23 @@ packages: license_family: MIT size: 218421 timestamp: 1682376911339 +- kind: conda + name: wheel + version: 0.38.4 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + md5: c829cfb8cb826acb9de0ac1a2df0a940 + depends: + - python >=3.7 + license: MIT + license_family: MIT + purls: + - pkg:pypi/wheel + size: 32521 + timestamp: 1668051714265 - kind: conda name: wheel version: 0.38.4 @@ -13679,6 +19473,8 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/wheel size: 32521 timestamp: 1668051714265 - kind: conda @@ -13730,6 +19526,36 @@ packages: license: LGPL-2.1 and GPL-2.0 size: 217804 timestamp: 1660346976440 +- kind: conda + name: xz + version: 5.2.6 + build: h9cdd2b7_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 + sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 + md5: 83baad393a31d59c20b63ba4da6592df + depends: + - libgcc-ng >=12 + license: LGPL-2.1 and GPL-2.0 + size: 440555 + timestamp: 1660348056328 +- kind: conda + name: zipp + version: 3.17.0 + build: pyhd8ed1ab_0 + subdir: noarch + noarch: python + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26 + md5: 2e4d6bc0b14e10f895fc6791a7d9b26a + depends: + - python >=3.8 + license: MIT + license_family: MIT + purls: + - pkg:pypi/zipp + size: 18954 + timestamp: 1695255262261 - kind: conda name: zipp version: 3.17.0 @@ -13745,8 +19571,26 @@ packages: platform: win license: MIT license_family: MIT + purls: + - pkg:pypi/zipp size: 18954 timestamp: 1695255262261 +- kind: conda + name: zlib + version: 1.2.13 + build: h31becfc_5 + build_number: 5 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h31becfc_5.conda + sha256: aa3e9d46b13d1959faf634f03d929d7dec950dc1b84a8ff109f7f0e3f364b562 + md5: 96866c7301479abaf8308c50958c71a4 + depends: + - libgcc-ng >=12 + - libzlib 1.2.13 h31becfc_5 + license: Zlib + license_family: Other + size: 95842 + timestamp: 1686575155348 - kind: conda name: zlib version: 1.2.13 @@ -13810,6 +19654,22 @@ packages: license_family: BSD size: 343428 timestamp: 1693151615801 +- kind: conda + name: zstd + version: 1.5.5 + build: h4c53e97_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.5-h4c53e97_0.conda + sha256: d1e070029e9d07a3f25e6ed082d507b0f3cff1b109dd18d0b091a5c7b86dd07b + md5: b74eb9dbb5c3c15cb3cee7cbdf198c75 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 528989 + timestamp: 1693151197934 - kind: conda name: zstd version: 1.5.5 diff --git a/pixi.toml b/pixi.toml index 50e264179e07..abd900d9619e 100644 --- a/pixi.toml +++ b/pixi.toml @@ -16,13 +16,14 @@ channels = ["conda-forge"] description = "Log images, point clouds, etc, and visualize them effortlessly" homepage = "https://rerun.io" license = "MIT OR Apache-2.0" -platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"] +platforms = ["linux-64", "linux-aarch64", "osx-arm64", "osx-64", "win-64"] readme = "README.md" repository = "https://github.com/rerun-io/rerun" version = "0.1.0" # TODO(emilk): sync version with `Cargo.toml` with help from `crates.py` [environments] cpp = ["cpp"] +taplo = ["taplo"] [tasks] # Note: extra CLI argument after `pixi run TASK` are passed to the task cmd. @@ -78,12 +79,10 @@ lint-py-fmt-check = "ruff format --check --config rerun_py/pyproject.toml" lint-py-blackdoc = "blackdoc --check" lint-py-mypy = "mypy --install-types --non-interactive --no-warn-unused-ignore" lint-py-ruff = "ruff format --check --config rerun_py/pyproject.toml" -lint-taplo = "taplo fmt --check --diff" lint-typos = "typos" misc-fmt = "prettier --write '**/*.{yml,yaml,js,css,html}'" misc-fmt-check = "prettier --check '**/*.{yml,yaml,js,css,html}'" -toml-fmt = "taplo fmt" ruff-fmt = "ruff format --config rerun_py/pyproject.toml ." ruff-fix = "ruff --fix --config rerun_py/pyproject.toml ." @@ -109,6 +108,14 @@ search-index = "cargo run -p re_build_search_index --release --" # Files are stored in the `meilisearch` directory, so you can fully wipe it via `rm -rf meilisearch`. meilisearch = "meilisearch --db-path=./meilisearch/data.ms --dump-dir=./meilisearch/dumps/ --snapshot-dir=./meilisearch/snapshots/ --env=development --no-analytics --experimental-reduce-indexing-memory-usage --master-key=test" +# TODO(ab): move everything back to the main tasks/dependencies once taplo supports linux-aarch64. +[feature.taplo] +platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"] + +[feature.taplo.tasks] +lint-taplo = "taplo fmt --check --diff" +toml-fmt = "taplo fmt" + [feature.cpp.tasks] # All the cpp-* tasks can be configured with environment variables, e.g.: RERUN_WERROR=ON CXX=clang++ cpp-prepare-release = "cmake -G 'Ninja' -B build/release -S . -DCMAKE_BUILD_TYPE=Release" @@ -152,6 +159,18 @@ cpp-prepare-msvc = "cmake -G 'Visual Studio 17 2022' -B build-msvc -S ." [dependencies] +# IMPORTANT: do not add any dependencies here that may break CI. All dependencies should be available on all supported +# platforms (including linux-aarch64), or added conditionally. +# +# Hints: +# - To check a given package, go to https://prefix.dev/channels/conda-forge/packages/XXXX. It should support Windows, +# x86_64 and aarch64 macOS architectures, and x86_64 and aarch64 Linux architectures. +# - Some pure Python packages may wrongly be tagged as platform-specific. In this case, use `[pypi-dependencies]` +# instead (e.g. `nox`). +# - If a package is only used for a very specific CI job on a specific target, include it under that target (e.g. +# `meilisearch`). +# - Last resort, use a feature to conditionally include a dependency (e.g. `taplo`). + attrs = ">=23.1.0" blackdoc = "0.3.8" clang-tools = "16.0.6" # clang-format @@ -161,7 +180,6 @@ gitignore-parser = ">=0.1.9" gitpython = ">=3.1.40" just = ">=1.15.0" maturin = "1.4.0" -meilisearch = "1.5.1.*" mypy = "1.8.0" numpy = ">=1.23,<2" pip = ">=23" @@ -170,7 +188,6 @@ pytest = ">=7" python = "=3.11" # We use the latest Python version here, so we get the latest mypy etc, EXCEPT 3.12 is too new for some of our examples. We run our CI tests on ALL supported versions though. ruff = "0.2.2" semver = ">=2.13,<2.14" -taplo = "=0.8.1" typing_extensions = ">4.5" typos = ">=1.16.20" wheel = ">=0.38,<0.39" @@ -178,13 +195,19 @@ ninja = "1.11.1" # Make sure to use a version that is compatible with # the theme we're using, see https://github.com/jothepro/doxygen-awesome-css/blob/v2.2.1/README.md doxygen = "1.9.7.*" -binaryen = "116.*" # for `wasm-opt` -nox = "2021.10.1.*" +binaryen = "117.*" # for `wasm-opt` prettier = "2.8.8.*" tomlkit = "0.12.3.*" +[pypi-dependencies] +nox = ">=2024.3.2" # the conda-forge package is (wrongly) tagged as platform-specific + [target.linux-64.dependencies] patchelf = ">=0.17" +meilisearch = "1.5.1.*" # not available for linux-aarch64 + +[feature.taplo.dependencies] +taplo = "=0.8.1" # not (yet?) available for linux-aarch64 [feature.cpp.target.linux-64.dependencies] clang = "16.0.6"