diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000000..a52f6c89de --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,47 @@ + + +## Description + + +## Issues + + +## Before and After Images + + + + + diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..e98caaf1f9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: daily + + - package-ecosystem: pip + directory: / + schedule: + interval: daily diff --git a/.github/workflows/CI_cleanup.yml b/.github/workflows/CI_cleanup.yml index 6a797e7834..3d8e2edada 100644 --- a/.github/workflows/CI_cleanup.yml +++ b/.github/workflows/CI_cleanup.yml @@ -57,6 +57,11 @@ jobs: env: logdir: /tmp/log/ steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Make needed directories run: | mkdir -p ${{ env.logdir }} @@ -103,7 +108,7 @@ jobs: done - name: Upload logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ github.job }}-Logs path: | diff --git a/.github/workflows/actions/windows/getLibpack/action.yml b/.github/workflows/actions/windows/getLibpack/action.yml index bed52624a7..0cf86910fe 100644 --- a/.github/workflows/actions/windows/getLibpack/action.yml +++ b/.github/workflows/actions/windows/getLibpack/action.yml @@ -41,11 +41,11 @@ inputs: libpackdownloadurl: description: "URL where to download libpack" required: false - default: https://github.com/FreeCAD/FreeCAD-LibPack/releases/download/3.1.0/LibPack-1.1.0-v3.1.0-Release.7z + default: https://github.com/FreeCAD/FreeCAD-LibPack/releases/download/3.1.1.1/LibPack-1.1.0-v3.1.1.1-Release.7z libpackname: description: "Libpack name (once downloaded)" required: false - default: LibPack-1.1.0-v3.1.0-Release + default: LibPack-1.1.0-v3.1.1.1-Release runs: using: "composite" diff --git a/.github/workflows/auto-close_stale_issues_and_pull-requests.yml b/.github/workflows/auto-close_stale_issues_and_pull-requests.yml index 5e853db3c6..0c65f869ba 100644 --- a/.github/workflows/auto-close_stale_issues_and_pull-requests.yml +++ b/.github/workflows/auto-close_stale_issues_and_pull-requests.yml @@ -20,9 +20,14 @@ jobs: stale: runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: '🧹 Tag & close stale unconfirmed bugs' id: stale_issues - uses: actions/stale@v9.1.0 + uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: -1 @@ -49,7 +54,7 @@ jobs: - name: '🧹 Close stale requested feedback issues' id: awaiting_issues - uses: actions/stale@v9.1.0 + uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: -1 @@ -77,7 +82,7 @@ jobs: - name: '🧹 Tag & close inactive issues' id: inactive_issues - uses: actions/stale@v9.1.0 + uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: -1 @@ -108,7 +113,7 @@ jobs: - name: '🧹 Tag & close inactive PRs' id: inactive_pr - uses: actions/stale@v9.1.0 + uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: -1 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 0000000000..ffa9d8f33b --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,27 @@ +# Dependency Review Action +# +# This Action will scan dependency manifest files that change as part of a Pull Request, +# surfacing known-vulnerable versions of the packages declared or updated in the PR. +# Once installed, if the workflow run is marked as required, +# PRs introducing known-vulnerable packages will be blocked from merging. +# +# Source repository: https://github.com/actions/dependency-review-action +name: 'Dependency Review' +on: [pull_request] + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + + - name: 'Checkout Repository' + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: 'Dependency Review' + uses: actions/dependency-review-action@67d4f4bd7a9b17a0db54d2a7519187c65e339de8 # v4 diff --git a/.github/workflows/issue-metrics.yml b/.github/workflows/issue-metrics.yml index 63257e3330..cb51b3b6c8 100644 --- a/.github/workflows/issue-metrics.yml +++ b/.github/workflows/issue-metrics.yml @@ -16,6 +16,11 @@ jobs: steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Get dates for last month shell: bash run: | @@ -30,13 +35,13 @@ jobs: echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV" - name: Run issue-metrics tool - uses: github/issue-metrics@v3 + uses: github/issue-metrics@4f29f34d9d831fe224cbc6c8a0d711415ebd01b1 # v3.1.1 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} SEARCH_QUERY: 'repo:FreeCAD/FreeCAD is:issue created:${{ env.last_month }}' - name: Create issue - uses: peter-evans/create-issue-from-file@v4 + uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f # v4.0.1 with: title: Monthly issue metrics report token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 56de386954..65522eb958 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -9,6 +9,9 @@ on: pull_request_target: types: [opened, reopened] +permissions: + contents: read + jobs: label: runs-on: ubuntu-latest @@ -17,7 +20,12 @@ jobs: pull-requests: write steps: - - uses: actions/labeler@v5 + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + + - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" configuration-path: ".github/labels.yml" diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml new file mode 100644 index 0000000000..9c2d2ec58c --- /dev/null +++ b/.github/workflows/scorecards.yml @@ -0,0 +1,81 @@ +# This workflow uses actions that are not certified by GitHub. They are provided +# by a third-party and are governed by separate terms of service, privacy +# policy, and support documentation. + +name: Scorecard supply-chain security +on: + # For Branch-Protection check. Only the default branch is supported. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection + branch_protection_rule: + # To guarantee Maintained check is occasionally updated. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained + schedule: + - cron: '20 7 * * 2' + push: + branches: ["main"] + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + contents: read + actions: read + # To allow GraphQL ListCommits to work + issues: read + pull-requests: read + # To detect SAST tools + checks: read + + steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + + - name: "Checkout code" + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + persist-credentials: false + + - name: "Run analysis" + uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0 + with: + results_file: results.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecards on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. + # repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: true + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: "Upload artifact" + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + with: + name: SARIF file + path: results.sarif + retention-days: 5 + + # Upload the results to GitHub's code scanning dashboard. + - name: "Upload to code-scanning" + uses: github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15 + with: + sarif_file: results.sarif diff --git a/.github/workflows/sub_buildPixi.yml b/.github/workflows/sub_buildPixi.yml index c3c562ad06..f8dd75ec87 100644 --- a/.github/workflows/sub_buildPixi.yml +++ b/.github/workflows/sub_buildPixi.yml @@ -69,6 +69,11 @@ jobs: os: [windows-latest, ubuntu-latest, macos-latest] steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Set Platform Environment Variables shell: bash -l {0} env: @@ -81,7 +86,7 @@ jobs: fi - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Add GCC Problem Matcher if: runner.os == 'Linux' @@ -106,13 +111,13 @@ jobs: mkdir -p ${{ env.reportdir }} echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT - - uses: prefix-dev/setup-pixi@v0.8.3 + - uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da # v0.8.8 with: - pixi-version: v0.43.3 + pixi-version: v0.45.0 cache: false - name: Restore Compiler Cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 with: path: ${{ env.CCACHE_DIR }} key: FC-${{ env.cacheKey }}-${{ github.ref }}-${{ github.run_id }} @@ -195,14 +200,14 @@ jobs: - name: Save Compiler Cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 with: path: ${{ env.CCACHE_DIR }} key: FC-${{ env.cacheKey }}-${{ github.ref }}-${{ github.run_id }} - name: Upload logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ inputs.artifactBasename }}-${{ matrix.os }}-Logs path: | @@ -211,7 +216,7 @@ jobs: - name: Upload report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ env.reportfilename }} path: | diff --git a/.github/workflows/sub_buildUbuntu.yml b/.github/workflows/sub_buildUbuntu.yml index 5c652b1cf2..41d887964b 100644 --- a/.github/workflows/sub_buildUbuntu.yml +++ b/.github/workflows/sub_buildUbuntu.yml @@ -71,8 +71,13 @@ jobs: reportFile: ${{ steps.Init.outputs.reportFile }} steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Checking out source code - uses: actions/checkout@v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: submodules: true - name: Install FreeCAD dependencies @@ -94,7 +99,7 @@ jobs: compiler: ${{ env.CXX }} qt_major_version: 5 - name: Restore Compiler Cache - uses: actions/cache@v4 + uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 with: save-always: true path: ${{ env.CCACHE_DIR }} @@ -108,7 +113,7 @@ jobs: ccache -z ccache -p - name: Install cmake - uses: jwlawson/actions-setup-cmake@v2 + uses: jwlawson/actions-setup-cmake@802fa1a2c4e212495c05bf94dba2704a92a472be # v2.0.2 with: cmake-version: '3.31.6' - name: CMake Configure @@ -179,7 +184,7 @@ jobs: reportFile: ${{env.reportdir}}${{ env.reportfilename }} - name: Upload logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ inputs.artifactBasename }}-Logs path: | @@ -187,7 +192,7 @@ jobs: /var/crash/*FreeCAD* - name: Upload report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ env.reportfilename }} path: | diff --git a/.github/workflows/sub_buildWindows.yml b/.github/workflows/sub_buildWindows.yml index 11dbe16904..af11383bd3 100644 --- a/.github/workflows/sub_buildWindows.yml +++ b/.github/workflows/sub_buildWindows.yml @@ -62,8 +62,13 @@ jobs: reportFile: ${{ steps.Init.outputs.reportFile }} steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Checking out source code - uses: actions/checkout@v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: submodules: true - name: Make needed directories, files and initializations @@ -85,7 +90,7 @@ jobs: with: libpackdir: ${{ env.libpackdir }} - name: Restore compiler cache - uses: actions/cache@v4 + uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 with: save-always: true path: ${{ env.CCACHE_DIR }} @@ -99,7 +104,7 @@ jobs: . $env:ccachebindir\ccache -z . $env:ccachebindir\ccache -p - name: Install cmake - uses: jwlawson/actions-setup-cmake@v2 + uses: jwlawson/actions-setup-cmake@802fa1a2c4e212495c05bf94dba2704a92a472be # v2.0.2 with: cmake-version: '3.31.6' - name: Configuring CMake @@ -115,7 +120,7 @@ jobs: -DFREECAD_COPY_LIBPACK_BIN_TO_BUILD=ON -DFREECAD_COPY_PLUGINS_BIN_TO_BUILD=ON - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v2 + uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0 - name: Compiling sources run: | cd $env:builddir @@ -133,7 +138,7 @@ jobs: . ${{ env.builddir }}\bin\FreeCADCmd -t 0 # 2>&1 | tee -filepath ${{ env.logdir }}\integrationTests.log - name: Upload logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ inputs.artifactBasename }}-Logs path: | diff --git a/.github/workflows/sub_lint.yml b/.github/workflows/sub_lint.yml index 61cdbcbde8..3e587cb2a6 100644 --- a/.github/workflows/sub_lint.yml +++ b/.github/workflows/sub_lint.yml @@ -168,6 +168,9 @@ on: reportFile: value: ${{ jobs.Lint.outputs.reportFile }} +permissions: + contents: read + jobs: Lint: @@ -185,8 +188,13 @@ jobs: reportFile: ${{ steps.Init.outputs.reportFile }} steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: submodules: true @@ -335,7 +343,7 @@ jobs: - name: Upload logs and fixes if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ inputs.artifactBasename }}-Logs path: | @@ -344,7 +352,7 @@ jobs: - name: Upload report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ env.reportfilename }} path: | diff --git a/.github/workflows/sub_prepare.yml b/.github/workflows/sub_prepare.yml index d0d10edf58..d715482a0d 100644 --- a/.github/workflows/sub_prepare.yml +++ b/.github/workflows/sub_prepare.yml @@ -71,6 +71,11 @@ jobs: changedCppFiles: ${{ steps.Output.outputs.changedCppFiles }} steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Make needed directories, files and initializations id: Init run: | @@ -148,14 +153,14 @@ jobs: echo "" >> $GITHUB_OUTPUT - name: Upload logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ inputs.artifactBasename }}-Logs path: | ${{ env.logdir }} - name: Upload report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ env.reportfilename }} path: | diff --git a/.github/workflows/sub_weeklyBuild.yml b/.github/workflows/sub_weeklyBuild.yml index 90a4a5e462..666043a733 100644 --- a/.github/workflows/sub_weeklyBuild.yml +++ b/.github/workflows/sub_weeklyBuild.yml @@ -1,7 +1,7 @@ name: Weekly Build on: schedule: - - cron: "0 23 * * *" + - cron: "42 18 * * 1" permissions: contents: write @@ -12,7 +12,12 @@ jobs: outputs: build_tag: ${{ steps.tag_build.outputs.build_tag }} steps: - - uses: actions/checkout@v4 + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 2 submodules: 'recursive' @@ -25,24 +30,24 @@ jobs: echo "BUILD_TAG=${BUILD_TAG}" >> "$GITHUB_ENV" echo "build_tag=${BUILD_TAG}" >> "$GITHUB_OUTPUT" - # - name: Upload Source - # env: - # GH_TOKEN: ${{ github.token }} - # run: | - # python3 package/rattler-build/scripts/make_version_file.py ../freecad_version.txt - # git config user.email '41898282+github-actions[bot]@users.noreply.github.com' - # git config user.name 'github-actions[bot]' - # git apply package/rattler-build/scripts/disable_git_info.patch - # git commit -a -m "Disable git info write to Version.h" - # git archive HEAD -o freecad_source_${BUILD_TAG}.tar - # git submodule foreach --recursive \ - # "git archive HEAD --prefix=\$path/ -o \$sha1.tar && \ - # tar -A -f \$toplevel/freecad_source_${BUILD_TAG}.tar \$sha1.tar && \ - # rm \$sha1.tar" - # gzip freecad_source_${BUILD_TAG}.tar - # sha256sum freecad_source_${BUILD_TAG}.tar.gz > freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt - # gh release create ${BUILD_TAG} --title "Weekly Build ${BUILD_TAG}" --notes "Weekly Build ${BUILD_TAG}" --prerelease || true - # gh release upload --clobber ${BUILD_TAG} "freecad_source_${BUILD_TAG}.tar.gz" "freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt" + - name: Upload Source + env: + GH_TOKEN: ${{ github.token }} + run: | + python3 package/rattler-build/scripts/make_version_file.py ../freecad_version.txt + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' + git config user.name 'github-actions[bot]' + git apply package/rattler-build/scripts/disable_git_info.patch + git commit -a -m "Disable git info write to Version.h" + git archive HEAD -o freecad_source_${BUILD_TAG}.tar + git submodule foreach --recursive \ + "git archive HEAD --prefix=\$path/ -o \$sha1.tar && \ + tar -A -f \$toplevel/freecad_source_${BUILD_TAG}.tar \$sha1.tar && \ + rm \$sha1.tar" + gzip freecad_source_${BUILD_TAG}.tar + sha256sum freecad_source_${BUILD_TAG}.tar.gz > freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt + gh release create ${BUILD_TAG} --title "Weekly Build ${BUILD_TAG}" --notes "Weekly Build ${BUILD_TAG}" --prerelease || true + gh release upload --clobber ${BUILD_TAG} "freecad_source_${BUILD_TAG}.tar.gz" "freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt" build: needs: tag_build @@ -59,6 +64,11 @@ jobs: runs-on: ${{ matrix.os }} environment: weekly-build steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Set Platform Environment Variables shell: bash -l {0} env: @@ -71,13 +81,13 @@ jobs: echo 'RATTLER_CACHE_DIR=D:\rattler' >> "$GITHUB_ENV" fi - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 fetch-tags: true submodules: 'recursive' - - uses: prefix-dev/setup-pixi@v0.8.3 + - uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da # v0.8.8 with: pixi-version: v0.42.1 cache: false @@ -127,7 +137,7 @@ jobs: SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} SIGN_RELEASE: "true" TARGET_PLATFORM: ${{ matrix.target }} - UPLOAD_RELEASE: "false" + UPLOAD_RELEASE: "true" run: | cd package/rattler-build pixi install diff --git a/.github/workflows/sub_wrapup.yml b/.github/workflows/sub_wrapup.yml index 5d55edf169..f4984b9f0c 100644 --- a/.github/workflows/sub_wrapup.yml +++ b/.github/workflows/sub_wrapup.yml @@ -39,6 +39,9 @@ on: type: string required: true +permissions: + contents: read + jobs: WrapUp: @@ -50,11 +53,16 @@ jobs: shell: bash steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 + with: + egress-policy: audit + - name: Make needed directories, files and initializations run: | mkdir -p ${{ env.artifactsDownloadDir }} - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1 with: path: ${{ env.artifactsDownloadDir }} - name: Save input data to file @@ -111,7 +119,7 @@ jobs: cat report.md >> $GITHUB_STEP_SUMMARY - name: Delete used artifacts continue-on-error: true - uses: geekyeggo/delete-artifact@v5 + uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # v5.1.0 with: name: | ${{ env.usedArtifacts }} diff --git a/CMakePresets.json b/CMakePresets.json index 5223c37672..5773f91d59 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -14,6 +14,14 @@ "type": "BOOL", "value": "ON" }, + "CMAKE_JOB_POOL_COMPILE": { + "type": "STRING", + "value": "compile_jobs" + }, + "CMAKE_JOB_POOL_LINK": { + "type": "STRING", + "value": "link_jobs" + }, "CMAKE_POLICY_VERSION_MINIMUM": { "type": "STRING", "value": "3.5" @@ -119,6 +127,18 @@ }, "cmakeExecutable": "${sourceDir}/conda/cmake.sh", "cacheVariables": { + "CMAKE_C_COMPILER": { + "type": "STRING", + "value": "clang" + }, + "CMAKE_CXX_COMPILER": { + "type": "STRING", + "value": "clang++" + }, + "CMAKE_EXE_LINKER_FLAGS": { + "type": "STRING", + "value": "-fuse-ld=mold" + }, "CMAKE_INSTALL_PREFIX": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}" @@ -127,6 +147,10 @@ "type": "FILEPATH", "value": "$env{CONDA_PREFIX}" }, + "CMAKE_SHARED_LINKER_FLAGS": { + "type": "STRING", + "value": "-fuse-ld=mold" + }, "OCC_INCLUDE_DIR": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}/include/opencascade" diff --git a/cMake/FreeCAD_Helpers/CompilerChecksAndSetups.cmake b/cMake/FreeCAD_Helpers/CompilerChecksAndSetups.cmake index 7dda6ad4d7..89e239a9b2 100644 --- a/cMake/FreeCAD_Helpers/CompilerChecksAndSetups.cmake +++ b/cMake/FreeCAD_Helpers/CompilerChecksAndSetups.cmake @@ -9,6 +9,13 @@ macro(CompilerChecksAndSetups) # ================================================================================ + # Use a heuristic of 1 GiB of RAM needed per compiler job and limit to + # a single link job. Modern linkers are multithreaded and running them concurrently + # can exhaust resources. + cmake_host_system_information(RESULT avail_mem_MiB QUERY TOTAL_PHYSICAL_MEMORY) + math(EXPR max_compile_procs "${avail_mem_MiB} / 1024") + set_property(GLOBAL PROPERTY JOB_POOLS compile_jobs=${max_compile_procs} link_jobs=1) + # Allow developers to use Boost < 1.74 if (NOT BOOST_MIN_VERSION) set(BOOST_MIN_VERSION 1.74) diff --git a/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake b/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake index 3a09db02d2..7e3d4958fd 100644 --- a/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake +++ b/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake @@ -19,6 +19,15 @@ macro(SetGlobalCompilerAndLinkerSettings) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mxgot") endif() + if (CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU") + # Only add -Og if no -O* optimization flag exists + if (NOT "${CMAKE_C_FLAGS_DEBUG}" MATCHES "-O[a-z0-9]+") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Og") + endif() + if (NOT "${CMAKE_CXX_FLAGS_DEBUG}" MATCHES "-O[a-z0-9]+") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Og") + endif() + endif() if(MSVC) # set default compiler settings add_definitions(-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR -DNOMINMAX) diff --git a/package/rattler-build/pixi.lock b/package/rattler-build/pixi.lock index ba6515a9db..e4af7c1d73 100644 --- a/package/rattler-build/pixi.lock +++ b/package/rattler-build/pixi.lock @@ -12,7 +12,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.11.16-py312h178313f_0.conda - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda - conda: https://prefix.dev/conda-forge/linux-64/arpack-3.9.1-nompi_hf03ea27_102.conda - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 @@ -28,7 +28,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda - conda: https://prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda - - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda - conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda - conda: https://prefix.dev/conda-forge/linux-64/calculix-2.22-hae4e037_1.conda @@ -36,13 +36,13 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/coin3d-4.0.3-hd74d64a_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda - - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda - conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda - conda: https://prefix.dev/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.13-py312h2ec8cdc_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py312h2ec8cdc_0.conda - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda - conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2 @@ -58,7 +58,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.56.0-py312h178313f_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda - conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda - conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda @@ -69,7 +69,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.23.1-h5888daf_0.conda - conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda - conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.0-h4833e2c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.1-h4833e2c_0.conda - conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda - conda: https://prefix.dev/conda-forge/linux-64/gmpy2-2.1.5-py312h7201bc8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/gmsh-4.13.1-hccb25f3_1.conda @@ -100,7 +100,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda - conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.21.8-h84d6215_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.21.9-h84d6215_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda - conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.23.1-h8e693c7_0.conda @@ -115,7 +115,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.1-default_h9c6a7e4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.2-default_h9c6a7e4_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 @@ -136,12 +136,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.0-h2ff4ddf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.1-h2ff4ddf_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.53-hbd13f7d_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda @@ -149,8 +149,8 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.9.0-31_he2f377e_openblas.conda - conda: https://prefix.dev/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.2-ha7bfdaf_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h5ddbaa4_116.conda - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda @@ -172,12 +172,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.6.0-h5888daf_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.6.0-h630ec5c_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5888daf_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libpq-17.4-h27ae623_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda - - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.3-hca62329_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda - conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libspnav-1.1-h4ab18f5_2.conda @@ -200,12 +200,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.8.1-hc4a0caf_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h8d12d68_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h4bc477f_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://prefix.dev/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/lxml-5.3.1-py312he28fd5a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lxml-5.3.2-py312h68d7fa5_0.conda - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda - conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.1-py312hd3ec401_0.conda @@ -214,17 +214,17 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/multidict-6.2.0-py312h178313f_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/multidict-6.3.2-py312h178313f_0.conda - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-64/mysql-common-9.0.1-h266115a_5.conda - - conda: https://prefix.dev/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/mysql-common-9.0.1-h266115a_6.conda + - conda: https://prefix.dev/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_6.conda - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.11.3-he02047a_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/numpy-2.2.4-py312h72c5963_0.conda - conda: https://prefix.dev/conda-forge/linux-64/occt-7.8.1-all_h4c4714a_203.conda - - conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/openblas-0.3.29-pthreads_h6ec200e_0.conda - conda: https://prefix.dev/conda-forge/linux-64/opencamlib-2023.01.11-py312h98ce3ff_7.conda @@ -234,9 +234,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda - conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda - conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_3.conda - conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.3-h861ebed_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-h679aaff_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda @@ -246,7 +246,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/pixman-0.44.2-h29eaf8c_0.conda - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda - conda: https://prefix.dev/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/propcache-0.2.1-py312h178313f_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda @@ -261,7 +261,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/python_abi-3.12-6_cp312.conda - conda: https://prefix.dev/conda-forge/linux-64/pythonocc-core-7.8.1.1-all_h2b018f6_200.conda - - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda - conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda - conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.8.2-h588cce1_0.conda @@ -269,11 +269,11 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.50-h9b8e6db_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.54-h9b8e6db_0.conda - conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.10-h3083f51_0.conda - - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-h0d71592_13.conda + - conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-hb7ebc10_14.conda - conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda - conda: https://prefix.dev/conda-forge/linux-64/soqt6-1.6.3-h23d7b0e_0.conda - conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.49.1-h9eae976_2.conda @@ -284,13 +284,13 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda - - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda - conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py312h3d4e8c9_211.conda - conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py312he62ef8e_211.conda - conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py312h3d4e8c9_211.conda - conda: https://prefix.dev/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda - - conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.42-hd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.43-hd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 @@ -325,9 +325,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/xz-5.6.4-hbcc6ac9_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.6.4-hbcc6ac9_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda - conda: https://prefix.dev/conda-forge/linux-64/yarl-1.18.3-py312h178313f_1.conda @@ -342,7 +342,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/aiohttp-3.11.16-py312hcc812fe_0.conda - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/arpack-3.9.1-nompi_h6fc4d3a_102.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2 @@ -358,7 +358,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/calculix-2.22-h287cb45_1.conda @@ -366,13 +366,13 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/coin3d-4.0.3-h411181d_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda - - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.2-py312h451a7dd_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/cyrus-sasl-2.1.27-hf6b2984_7.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.13-py312h6f74592_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.14-py312h6f74592_0.conda - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2 @@ -388,7 +388,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.56.0-py312hcc812fe_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.57.0-py312hcc812fe_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/freeglut-3.2.2-h5eeb66e_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-he93130f_0.conda @@ -399,7 +399,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-tools-0.23.1-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.0-h78ca943_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.1-h78ca943_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gmpy2-2.1.5-py312he9d48ea_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gmsh-4.13.1-h334f342_1.conda @@ -444,7 +444,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/libcap-2.71-h51d75a7_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libcblas-3.9.0-31_hab92f65_openblas.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.7-default_he324ac1_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.1-default_h4390ef5_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.2-default_h4390ef5_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.13.0-h6702fde_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2 @@ -465,12 +465,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.0-hc486b8e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.1-hc486b8e_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libglu-9.0.3-hc7f7585_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.51-h05609ea_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.53-h05609ea_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libhwloc-2.11.2-default_h2c612a5_1001.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-hc99b53d_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda @@ -478,8 +478,8 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/liblapacke-3.9.0-31_hc659ca5_openblas.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm19-19.1.7-h2edbd07_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm20-20.1.2-h2edbd07_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.8.1-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h46655bb_116.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda @@ -499,12 +499,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.6.0-h5ad3122_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.6.0-h8231d02_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5ad3122_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.5.2-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libpciaccess-0.18-h31becfc_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libpng-1.6.47-hec79eb8_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libpq-17.4-hf590da8_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.3-hf20323b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.4-h74ffddf_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/librsvg-2.58.4-h9b423fc_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libspnav-1.1-h68df207_2.conda @@ -526,12 +526,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libxkbcommon-1.8.1-h2ef6bd0_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.7-h2e0c361_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.7-he060846_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/loguru-0.7.2-py312h8025657_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-5.3.1-py312h1ce91a6_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-5.3.2-py312haa63388_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/matplotlib-base-3.10.1-py312h965bf68_0.conda @@ -540,13 +540,13 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/msgpack-python-1.1.0-py312h451a7dd_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.2.0-py312hcc812fe_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.3.2-py312hcc812fe_0.conda - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_5.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_6.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_6.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.11.3-h0a1ffab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/numpy-2.2.4-py312hce01fe4_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/occt-7.8.1-all_h78e3548_203.conda @@ -558,9 +558,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.5.0-h6c5ec6d_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openldap-2.6.9-h30c48ee_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.5.0-hd08dc88_0.conda - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pango-1.56.3-hd49db62_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pcl-1.15.0-h29e8f2a_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda @@ -570,7 +570,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/pixman-0.44.2-h86a87f0_0.conda - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/proj-9.5.1-h9655f4d_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.2.1-py312hcc812fe_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.3.1-py312hcc812fe_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pulseaudio-client-17.0-h729494f_0.conda @@ -585,7 +585,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/python_abi-3.12-6_cp312.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pythonocc-core-7.8.1.1-all_h1892dc3_200.conda - - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hcc812fe_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/qt6-main-6.8.2-ha0a94ed_0.conda @@ -593,11 +593,11 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/scipy-1.15.2-py312hb5459e8_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.50-h7851d19_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.54-h7851d19_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl3-3.2.10-h9cc03ad_0.conda - - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h212b014_13.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h3752d33_14.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/soqt6-1.6.3-h808f404_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/sqlite-3.49.1-h578a6b9_2.conda @@ -608,7 +608,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/unicodedata2-16.0.0-py312hb2c0f52_0.conda - - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py312h502ffb0_212.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py312hb4c926f_212.conda @@ -647,9 +647,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-5.6.4-h2dbfc1b_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-gpl-tools-5.6.4-h2dbfc1b_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-tools-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-5.8.1-h2dbfc1b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-gpl-tools-5.8.1-h2dbfc1b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-tools-5.8.1-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h2f0025b_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/yarl-1.18.3-py312hcc812fe_1.conda @@ -675,7 +675,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda - conda: https://prefix.dev/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda - conda: https://prefix.dev/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - - conda: https://prefix.dev/conda-forge/osx-64/c-ares-1.34.4-hf13058a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda - conda: https://prefix.dev/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda - conda: https://prefix.dev/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda - conda: https://prefix.dev/conda-forge/osx-64/calculix-2.22-h1ca30be_1.conda @@ -683,13 +683,13 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/coin3d-4.0.3-h9b6ce5f_2.conda - - conda: https://prefix.dev/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda - - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/contourpy-1.3.2-py312hc47a885_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda - conda: https://prefix.dev/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda - conda: https://prefix.dev/conda-forge/osx-64/dbus-1.13.6-h811a1a6_3.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.13-py312haafddd8_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.14-py312haafddd8_0.conda - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda - conda: https://prefix.dev/conda-forge/osx-64/epoxy-1.5.10-h5eb16cf_1.tar.bz2 @@ -705,7 +705,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.56.0-py312h3520af0_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.57.0-py312h3520af0_0.conda - conda: https://prefix.dev/conda-forge/osx-64/freeimage-3.18.0-h7cd8ba8_22.conda - conda: https://prefix.dev/conda-forge/osx-64/freetype-2.13.3-h40dfd5c_0.conda - conda: https://prefix.dev/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 @@ -752,8 +752,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda - conda: https://prefix.dev/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda - conda: https://prefix.dev/conda-forge/osx-64/libcblas-3.9.0-31_h6bc05c3_accelerate.conda - - conda: https://prefix.dev/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_8.conda - - conda: https://prefix.dev/conda-forge/osx-64/libclang13-20.1.1-default_hf2b7afa_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_9.conda + - conda: https://prefix.dev/conda-forge/osx-64/libclang13-20.1.2-default_hf2b7afa_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libcurl-8.13.0-h5dec5d8_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libcxx-20.1.2-hf95d169_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libdeflate-1.23-he65b83e_0.conda @@ -763,8 +763,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libffi-3.4.6-h281671d_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libgd-2.3.3-h8555400_11.conda - conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-0.23.1-h27064b9_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgfortran-14.2.0-hef36b68_105.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgfortran5-14.2.0-h58528f3_105.conda - conda: https://prefix.dev/conda-forge/osx-64/libglib-2.84.0-h5c976ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libhwloc-2.11.2-default_h4cdd727_1001.conda - conda: https://prefix.dev/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda @@ -774,7 +774,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/liblapacke-3.9.0-31_h323ef19_accelerate.conda - conda: https://prefix.dev/conda-forge/osx-64/libllvm18-18.1.8-hc29ff6c_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libllvm20-20.1.2-hc29ff6c_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.8.1-hd471939_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hd7a758f_116.conda - conda: https://prefix.dev/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda @@ -791,11 +791,11 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.6.0-hbcac03e_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.6.0-hacd10b5_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.6.0-hbcac03e_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/libopus-1.5.2-he3325bb_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libpng-1.6.47-h3c4a55f_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libpq-17.4-h9c5cfc2_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.28.3-h6401091_1.conda - - conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.3-h8f7feda_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.4-h0ade9e5_0.conda - conda: https://prefix.dev/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_2.conda - conda: https://prefix.dev/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda @@ -806,13 +806,13 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libwebp-base-1.5.0-h6cf52b4_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/libxml2-2.13.7-hebb159f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libxml2-2.13.7-h93c44a6_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - - conda: https://prefix.dev/conda-forge/osx-64/llvm-openmp-20.1.1-ha54dae1_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/llvm-openmp-20.1.2-ha54dae1_1.conda - conda: https://prefix.dev/conda-forge/osx-64/loguru-0.7.2-py312hb401068_2.conda - - conda: https://prefix.dev/conda-forge/osx-64/lxml-5.3.1-py312h91b2f42_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/lxml-5.3.2-py312h3ce7cfc_0.conda - conda: https://prefix.dev/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda - conda: https://prefix.dev/conda-forge/osx-64/markupsafe-3.0.2-py312h3520af0_1.conda - conda: https://prefix.dev/conda-forge/osx-64/matplotlib-base-3.10.1-py312h535dea3_0.conda @@ -820,13 +820,13 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/msgpack-python-1.1.0-py312hc5c4d5f_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/multidict-6.2.0-py312h6f3313d_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/multidict-6.3.2-py312h6f3313d_0.conda - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_5.conda - - conda: https://prefix.dev/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_5.conda + - conda: https://prefix.dev/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_6.conda + - conda: https://prefix.dev/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_6.conda - conda: https://prefix.dev/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-64/nlohmann_json-3.11.3-hf036a51_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/nlohmann_json-3.12.0-h92383a6_0.conda - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/numpy-2.2.4-py312h6693b03_0.conda - conda: https://prefix.dev/conda-forge/osx-64/occt-7.8.1-all_ha9a7d59_203.conda @@ -837,9 +837,9 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/openh264-2.5.0-hdfcf091_0.conda - conda: https://prefix.dev/conda-forge/osx-64/openjpeg-2.5.3-h7fd6d84_0.conda - conda: https://prefix.dev/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.5.0-hc426f3f_0.conda - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda - - conda: https://prefix.dev/conda-forge/osx-64/pandas-2.2.3-py312h98e817e_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/pandas-2.2.3-py312hec45ffd_3.conda - conda: https://prefix.dev/conda-forge/osx-64/pango-1.56.3-hf94f63b_0.conda - conda: https://prefix.dev/conda-forge/osx-64/pcl-1.15.0-h96d8db5_0.conda - conda: https://prefix.dev/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda @@ -849,7 +849,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/pixman-0.44.2-h1fd1274_0.conda - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda - conda: https://prefix.dev/conda-forge/osx-64/proj-9.5.1-h5273da6_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/propcache-0.2.1-py312h3520af0_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/propcache-0.3.1-py312h3520af0_0.conda - conda: https://prefix.dev/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda - conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.14-he965462_0.conda - conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.10.0-headless_py312hae307ac_15.conda @@ -863,7 +863,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/python_abi-3.12-6_cp312.conda - conda: https://prefix.dev/conda-forge/osx-64/pythonocc-core-7.8.1.1-all_h7c11160_200.conda - - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/pyyaml-6.0.2-py312h3520af0_2.conda - conda: https://prefix.dev/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda - conda: https://prefix.dev/conda-forge/osx-64/qt6-main-6.8.2-h35a4a19_0.conda @@ -871,11 +871,11 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/scipy-1.15.2-py312hd04560d_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.50-hc0cb955_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.54-hc0cb955_0.conda - conda: https://prefix.dev/conda-forge/osx-64/sdl3-3.2.10-h6dd79e8_0.conda - - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-ha774313_13.conda + - conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-h9ba7290_14.conda - conda: https://prefix.dev/conda-forge/osx-64/snappy-1.2.1-haf3c120_1.conda - conda: https://prefix.dev/conda-forge/osx-64/soqt6-1.6.3-h667e493_0.conda - conda: https://prefix.dev/conda-forge/osx-64/sqlite-3.49.1-h2e4c9dc_2.conda @@ -886,7 +886,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/osx-64/unicodedata2-16.0.0-py312h01d7ebd_0.conda - - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/utfcpp-4.0.6-h93fb1c9_0.conda - conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py312h6e7d914_212.conda - conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py312h7cf0cd7_212.conda @@ -932,7 +932,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/calculix-2.22-hf186d59_1.conda @@ -940,13 +940,13 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/coin3d-4.0.3-h705ab75_2.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda - - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.2-py312hb23fbb9_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda - conda: https://prefix.dev/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/dbus-1.13.6-h3818c69_3.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.13-py312hd8f9ff3_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.14-py312hd8f9ff3_0.conda - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda @@ -963,7 +963,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.56.0-py312h998013c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.57.0-py312h998013c_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda - conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-h1d14073_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 @@ -1010,8 +1010,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libcblas-3.9.0-31_h8d39bcd_accelerate.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_8.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.1-default_h81d93ff_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_9.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.2-default_h81d93ff_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.13.0-h73640d1_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.2-ha82da77_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda @@ -1021,8 +1021,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libgd-2.3.3-hb2c3a21_11.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.23.1-h493aca8_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-14.2.0-heb5dd2a_105.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-14.2.0-h2c44a93_105.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.84.0-hdff4504_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libhwloc-2.11.2-default_hbce5d74_1001.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda @@ -1032,7 +1032,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/liblapacke-3.9.0-31_h09be921_accelerate.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm20-20.1.2-hc4b4ae8_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h6569565_116.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda @@ -1049,11 +1049,11 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.6.0-h286801f_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.6.0-he275e1d_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.6.0-h286801f_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.5.2-h48c0fde_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libpng-1.6.47-h3783ad8_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libpq-17.4-h6896619_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.3-hee66ff5_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.4-h62a31ad_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda @@ -1064,13 +1064,13 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.7-h178c5d8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.7-h52572c6_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.1-hdb05f8b_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.2-hdb05f8b_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/loguru-0.7.2-py312h81bd7bf_2.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/lxml-5.3.1-py312h9535dd2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lxml-5.3.2-py312hc2c121e_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/matplotlib-base-3.10.1-py312hdbc7e53_0.conda @@ -1078,13 +1078,13 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/msgpack-python-1.1.0-py312h6142ec9_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.2.0-py312hdb8e49c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.3.2-py312hdb8e49c_0.conda - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_5.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_6.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_6.conda - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.11.3-h00cdb27_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.12.0-ha1acc90_0.conda - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/numpy-2.2.4-py312h7c1f314_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/occt-7.8.1-all_h869bdd7_203.conda @@ -1095,9 +1095,9 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.0-h81ee809_0.conda - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pandas-2.2.3-py312hcb1e3ce_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pango-1.56.3-h73f1e88_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pcl-1.15.0-hd09b3b3_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda @@ -1107,7 +1107,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/pixman-0.44.2-h2f9eb0b_0.conda - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/proj-9.5.1-h1318a7e_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.2.1-py312h998013c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.3.1-py312h998013c_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.10.0-headless_py312h660ad0e_15.conda @@ -1121,7 +1121,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/python_abi-3.12-6_cp312.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pythonocc-core-7.8.1.1-all_h4a50698_200.conda - - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py312h998013c_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda - conda: https://prefix.dev/conda-forge/osx-arm64/qt6-main-6.8.2-h4464394_0.conda @@ -1129,11 +1129,11 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/scipy-1.15.2-py312h99a188d_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.50-h994913f_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.54-h994913f_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sdl3-3.2.10-he842692_0.conda - - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-hf192bc0_13.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-h10d9485_14.conda - conda: https://prefix.dev/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/soqt6-1.6.3-hd20b56a_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sqlite-3.49.1-hd7222ec_2.conda @@ -1145,7 +1145,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/unicodedata2-16.0.0-py312hea69d52_0.conda - - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py312h8d5bf7a_209.conda - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py312h679c1d7_209.conda @@ -1175,11 +1175,12 @@ environments: - conda: . build: he8ea13f_0 win-64: + - conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/aiohttp-3.11.16-py312h31fea79_0.conda - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda - - conda: https://prefix.dev/conda-forge/win-64/arpack-3.9.1-nompi_h034da5f_101.conda + - conda: https://prefix.dev/conda-forge/win-64/arpack-3.9.1-nompi_h1f7371d_102.conda - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda - conda: https://prefix.dev/conda-forge/win-64/blas-2.131-openblas.conda - conda: https://prefix.dev/conda-forge/win-64/blas-devel-3.9.0-31_hc0f8095_openblas.conda @@ -1191,23 +1192,23 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda - conda: https://prefix.dev/conda-forge/win-64/cairo-1.18.4-h5782bbf_0.conda - - conda: https://prefix.dev/conda-forge/win-64/calculix-2.22-h27aae45_0.conda + - conda: https://prefix.dev/conda-forge/win-64/calculix-2.22-h9c8f9f9_1.conda - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/coin3d-4.0.3-h192c3d0_2.conda - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda + - conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda - - conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.13-py312h275cf98_0.conda + - conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.14-py312h275cf98_0.conda - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda - conda: https://prefix.dev/conda-forge/win-64/expat-2.7.0-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_h34ab625_703.conda - conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h8958603_3.conda - - conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.9-h27fc217_1.conda + - conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.10-h5d05227_0.conda - conda: https://prefix.dev/conda-forge/win-64/fmt-11.1.4-h5f12afc_1.conda - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 @@ -1216,7 +1217,7 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/fonttools-4.56.0-py312h31fea79_0.conda + - conda: https://prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda - conda: https://prefix.dev/conda-forge/win-64/freeglut-3.2.2-he0c23c2_3.conda - conda: https://prefix.dev/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda - conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda @@ -1260,21 +1261,25 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda - conda: https://prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda - conda: https://prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h9bd4c3b_openblas.conda - - conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.1-default_ha5278ca_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.2-default_ha5278ca_0.conda - conda: https://prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda - conda: https://prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda - conda: https://prefix.dev/conda-forge/win-64/libgd-2.3.3-h7208af6_11.conda - conda: https://prefix.dev/conda-forge/win-64/libgettextpo-0.22.5-h5728263_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.0-h7025463_0.conda - - conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_hc8275d1_1000.conda + - conda: https://prefix.dev/conda-forge/win-64/libgfortran-14.2.0-h719f0c7_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libgfortran5-14.2.0-hf020157_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.1-h7025463_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda - conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda - conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda - conda: https://prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda - conda: https://prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h2526c6b_openblas.conda - conda: https://prefix.dev/conda-forge/win-64/liblapacke-3.9.0-31_h1d0e49f_openblas.conda - - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda - conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h5bdc103_116.conda - conda: https://prefix.dev/conda-forge/win-64/libogg-1.3.5-h2466b09_0.conda - conda: https://prefix.dev/conda-forge/win-64/libopenblas-0.3.29-pthreads_head3c61_0.conda @@ -1291,40 +1296,36 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2024.6.0-he0c23c2_3.conda - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2024.6.0-ha83d810_3.conda - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2024.6.0-he0c23c2_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/libopus-1.5.2-h2466b09_0.conda - conda: https://prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda - conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.28.3-h8309712_1.conda - - conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.3-h0f5434b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.4-h866491b_0.conda - conda: https://prefix.dev/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_3.conda - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda - conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libstdcxx-14.2.0-h904f734_2.conda - conda: https://prefix.dev/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda - conda: https://prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda - conda: https://prefix.dev/conda-forge/win-64/libusb-1.0.28-h2466b09_0.conda - conda: https://prefix.dev/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 - conda: https://prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda - - conda: https://prefix.dev/conda-forge/win-64/libxcb-1.16-h013a479_1.conda - - conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.7-he286e8c_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + - conda: https://prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda - conda: https://prefix.dev/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda - conda: https://prefix.dev/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - conda: https://prefix.dev/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_2.conda - - conda: https://prefix.dev/conda-forge/win-64/lxml-5.3.1-py312h53bce91_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lxml-5.3.2-py312hef2e38f_0.conda - conda: https://prefix.dev/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda - - conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - conda: https://prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda - conda: https://prefix.dev/conda-forge/win-64/matplotlib-base-3.10.1-py312h90004f6_0.conda - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda - - conda: https://prefix.dev/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/multidict-6.2.0-py312h31fea79_0.conda + - conda: https://prefix.dev/conda-forge/win-64/multidict-6.3.2-py312h31fea79_0.conda - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.11.3-he0c23c2_1.conda + - conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.12.0-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/numpy-2.2.4-py312h3150e54_0.conda - conda: https://prefix.dev/conda-forge/win-64/occt-7.8.1-all_hae6dad1_203.conda @@ -1336,21 +1337,20 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/openexr-3.3.3-h1acc403_0.conda - conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda - conda: https://prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda - - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda - - conda: https://prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_3.conda - conda: https://prefix.dev/conda-forge/win-64/pango-1.56.3-h286b592_0.conda - conda: https://prefix.dev/conda-forge/win-64/pcl-1.15.0-hcec6b29_0.conda - conda: https://prefix.dev/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda - - conda: https://prefix.dev/conda-forge/win-64/pillow-10.4.0-py312h381445a_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pillow-11.1.0-py312h078707f_0.conda - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda - conda: https://prefix.dev/conda-forge/win-64/pivy-0.6.9-py312qt6h8483413_2.conda - conda: https://prefix.dev/conda-forge/win-64/pixman-0.44.2-had0cd8c_0.conda - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda - conda: https://prefix.dev/conda-forge/win-64/proj-9.5.1-h4f671f6_0.conda - - conda: https://prefix.dev/conda-forge/win-64/propcache-0.2.1-py312h31fea79_1.conda - - conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda + - conda: https://prefix.dev/conda-forge/win-64/propcache-0.3.1-py312h31fea79_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda - conda: https://prefix.dev/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda - conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.10.0-qt6_py312he23ae38_615.conda - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda @@ -1363,18 +1363,18 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/python_abi-3.12-6_cp312.conda - conda: https://prefix.dev/conda-forge/win-64/pythonocc-core-7.8.1.1-all_h86126fc_200.conda - - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda - conda: https://prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda - conda: https://prefix.dev/conda-forge/win-64/qt6-main-6.8.2-h1259614_0.conda - conda: https://prefix.dev/conda-forge/win-64/rapidjson-1.1.0.post20240409-he0c23c2_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/scipy-1.15.2-py312h451d5c4_0.conda - - conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.50-hecf2515_1.conda + - conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.54-hecf2515_0.conda - conda: https://prefix.dev/conda-forge/win-64/sdl3-3.2.10-he0c23c2_0.conda - - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda - - conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-hdbf5530_13.conda + - conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-h4c8b7ef_14.conda - conda: https://prefix.dev/conda-forge/win-64/snappy-1.2.1-h500f7fa_1.conda - conda: https://prefix.dev/conda-forge/win-64/soqt6-1.6.3-h796eb14_0.conda - conda: https://prefix.dev/conda-forge/win-64/sqlite-3.49.1-h2466b09_2.conda @@ -1387,7 +1387,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda - conda: https://prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda - - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda @@ -1404,21 +1404,16 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/xorg-fixesproto-5.0-hcd874cb_1002.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.9-h0076a8d_1.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxfixes-5.0.3-hcd874cb_1004.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxrender-0.9.11-hcd874cb_0.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-renderproto-0.11.1-hcd874cb_1002.tar.bz2 - - conda: https://prefix.dev/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda - - conda: https://prefix.dev/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.2-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.6-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.12-hf48077a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.6-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxfixes-6.0.1-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-h0e40799_1.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxrender-0.9.12-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.1-h0e40799_0.conda - conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 - conda: https://prefix.dev/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda - conda: https://prefix.dev/conda-forge/win-64/yarl-1.18.3-py312h31fea79_1.conda @@ -1444,14 +1439,14 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda - conda: https://prefix.dev/conda-forge/linux-64/python-3.12.9-h9e4cc4f_1_cpython.conda - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda @@ -1467,14 +1462,14 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.5.0-hd08dc88_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/python-3.12.9-h1683364_1_cpython.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda @@ -1498,12 +1493,12 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libintl-0.23.1-h27064b9_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libintl-devel-0.23.1-h27064b9_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.8.1-hd471939_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_2.conda - conda: https://prefix.dev/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.5.0-hc426f3f_0.conda - conda: https://prefix.dev/conda-forge/osx-64/python-3.12.9-h9ccd52b_1_cpython.conda - conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://prefix.dev/conda-forge/osx-64/sed-4.7-h3efe00b_1000.tar.bz2 @@ -1529,12 +1524,12 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-devel-0.23.1-h493aca8_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.0-h81ee809_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.12.9-hc22306f_1_cpython.conda - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sed-4.8-hc6a1b29_0.tar.bz2 @@ -1547,10 +1542,10 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/git-2.49.0-h57928b3_0.conda - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda - - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda - conda: https://prefix.dev/conda-forge/win-64/python-3.12.9-h3f84c4b_1_cpython.conda - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -1589,6 +1584,20 @@ packages: license_family: BSD size: 23712 timestamp: 1650670790230 +- conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + build_number: 8 + sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d + md5: 37e16618af5c4851a3f3d66dd0e11141 + depends: + - libgomp >=7.5.0 + - libwinpthread >=12.0.0.r2.ggc561118da + constrains: + - openmp_impl 9999 + - msys2-conda-epoch <0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 49468 + timestamp: 1718213032772 - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda sha256: 63e532087119112c81d81c067e00d1fd49ff1b842ffea4469b78b505be63c042 md5: 11539f9e49efaa281da735ded100b152 @@ -1714,25 +1723,25 @@ packages: license_family: APACHE size: 13229 timestamp: 1734342253061 -- conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda - sha256: f507b58f77eabc0cc133723cb7fc45c053d551f234df85e70fb3ede082b0cd53 - md5: ae1370588aa6a5157c34c73e9bbb36a0 +- conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda + sha256: b9214bc17e89bf2b691fad50d952b7f029f6148f4ac4fe7c60c08f093efdf745 + md5: 76df83c2a9035c54df5d04ff81bcc02d depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: LGPL-2.1-or-later license_family: GPL - size: 560238 - timestamp: 1731489643707 -- conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda - sha256: 4141180b0304559fefa8ca66f1cc217a1d957b03aa959f955daf33718162042f - md5: f643bb02c4bbcfe7de161a8ca5df530b + size: 566531 + timestamp: 1744668655747 +- conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda + sha256: 0aa836f6dd9132f243436898ed8024f408910f65220bafbfc95f71ab829bb395 + md5: a696b24c1b473ecc4774bcb5a6ac6337 depends: - libgcc >=13 license: LGPL-2.1-or-later license_family: GPL - size: 591318 - timestamp: 1731489774660 + size: 595290 + timestamp: 1744668754404 - conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 md5: 346722a0be40f6edc53f12640d301338 @@ -1820,7 +1829,7 @@ packages: - __osx >=10.13 - libblas >=3.9.0,<4.0a0 - libcxx >=18 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - liblapack >=3.9.0,<4.0a0 license: BSD-3-Clause @@ -1834,25 +1843,28 @@ packages: - __osx >=11.0 - libblas >=3.9.0,<4.0a0 - libcxx >=18 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - liblapack >=3.9.0,<4.0a0 license: BSD-3-Clause license_family: BSD size: 120348 timestamp: 1736084183877 -- conda: https://prefix.dev/conda-forge/win-64/arpack-3.9.1-nompi_h034da5f_101.conda - sha256: 5f06659c9c95ff3b321c7279b79ab77fe0e6179090479d099a1d6d84436aa9d3 - md5: fe3f7ffec3476c29ce060ae655550fa4 +- conda: https://prefix.dev/conda-forge/win-64/arpack-3.9.1-nompi_h1f7371d_102.conda + sha256: 393a0f11fe53c9a4ce8e003f0f9816ce098179d4c06eacffd573afbb0f2e2f0c + md5: 27e7f6df5aed21fe9d319f171a5cdbd3 depends: - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 - liblapack >=3.9.0,<4.0a0 - - m2w64-gcc-libs - - m2w64-gcc-libs-core + - libstdcxx >=13 + - ucrt >=10.0.20348.0 license: BSD-3-Clause license_family: BSD - size: 164157 - timestamp: 1717419659282 + size: 162939 + timestamp: 1736084372191 - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 sha256: 26ab9386e80bf196e51ebe005da77d57decf6d989b4f34d96130560bc133479c md5: 6b889f174df1e0f816276ae69281af4d @@ -2430,43 +2442,43 @@ packages: license_family: BSD size: 54927 timestamp: 1720974860185 -- conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda - sha256: d4f28d87b6339b94f74762c0076e29c8ef8ddfff51a564a92da2843573c18320 - md5: e2775acf57efd5af15b8e3d1d74d72d3 +- conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb + md5: f7f0d6cc2dc986d42ac2689ec88192be depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: MIT license_family: MIT - size: 206085 - timestamp: 1734208189009 -- conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.4-h86ecc28_0.conda - sha256: 1187a41d4bb2afe02cb18690682edc98d1e9f5e0ccda638d8704a75ea1875bbe - md5: 356da36f35d36dcba16e43f1589d4e39 + size: 206884 + timestamp: 1744127994291 +- conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda + sha256: ccae98c665d86723993d4cb0b456bd23804af5b0645052c09a31c9634eebc8df + md5: 5deaa903d46d62a1f8077ad359c3062e depends: - libgcc >=13 license: MIT license_family: MIT - size: 215979 - timestamp: 1734208193181 -- conda: https://prefix.dev/conda-forge/osx-64/c-ares-1.34.4-hf13058a_0.conda - sha256: 8dcc1628d34fe7d759f3a7dee52e09c5162a3f9669dddd6100bff965450f4a0a - md5: 133255af67aaf1e0c0468cc753fd800b + size: 215950 + timestamp: 1744127972012 +- conda: https://prefix.dev/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda + sha256: b37f5dacfe1c59e0a207c1d65489b760dff9ddb97b8df7126ceda01692ba6e97 + md5: eafe5d9f1a8c514afe41e6e833f66dfd depends: - __osx >=10.13 license: MIT license_family: MIT - size: 184455 - timestamp: 1734208242547 -- conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda - sha256: 09c0c8476e50b2955f474a4a1c17c4c047dd52993b5366b6ea8e968e583b921f - md5: c1c999a38a4303b29d75c636eaa13cf9 + size: 184824 + timestamp: 1744128064511 +- conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda + sha256: b4bb55d0806e41ffef94d0e3f3c97531f322b3cb0ca1f7cdf8e47f62538b7a2b + md5: f8cd1beb98240c7edb1a95883360ccfa depends: - __osx >=11.0 license: MIT license_family: MIT - size: 179496 - timestamp: 1734208291879 + size: 179696 + timestamp: 1744128058734 - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 md5: 19f3a56f68d2fd06c516076bff482c52 @@ -2637,7 +2649,7 @@ packages: - __osx >=10.13 - arpack >=3.9.1,<3.10.0a0 nompi_* - libblas >=3.9.0,<4.0a0 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - liblapack >=3.9.0,<4.0a0 - llvm-openmp >=18.1.8 @@ -2652,7 +2664,7 @@ packages: - __osx >=11.0 - arpack >=3.9.1,<3.10.0a0 nompi_* - libblas >=3.9.0,<4.0a0 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - liblapack >=3.9.0,<4.0a0 - llvm-openmp >=18.1.8 @@ -2660,19 +2672,22 @@ packages: license_family: GPL size: 2486600 timestamp: 1736281025715 -- conda: https://prefix.dev/conda-forge/win-64/calculix-2.22-h27aae45_0.conda - sha256: 41182738f9bbcb779eecab60cbe5489e88d02b63ab8598c2a1edfe48467abc0c - md5: 5d8dbbdedfc382d7fb679518bedd049f +- conda: https://prefix.dev/conda-forge/win-64/calculix-2.22-h9c8f9f9_1.conda + sha256: e35a8a49c4cf7bb189d213fd7e87307d84823608fe5fa2f37b1cde9f8934a8c6 + md5: 5a4c7237b26a9f664993f5865d88f9da depends: - arpack >=3.9.1,<3.10.0a0 nompi_* - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 - liblapack >=3.9.0,<4.0a0 - - m2w64-gcc-libs - - m2w64-gcc-libs-core + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 license: GPL-2.0-or-later license_family: GPL - size: 2516811 - timestamp: 1725269881292 + size: 2609714 + timestamp: 1736281588040 - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 md5: c207fa5ac7ea99b149344385a9c0880d @@ -2837,9 +2852,9 @@ packages: license_family: BSD size: 27011 timestamp: 1733218222191 -- conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda - sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259 - md5: f5fbba0394ee45e9a64a73c2a994126a +- conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda + sha256: 4c8f2aa34aa031229e6f8aa18f146bce7987e26eae9c6503053722a8695ebf0c + md5: e688276449452cdfe9f8f5d3e74c23f6 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -2848,12 +2863,11 @@ packages: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause - license_family: BSD - size: 276332 - timestamp: 1731428454756 -- conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda - sha256: 051b2116358499376244bfebd0f5e234644261988744b3e79dd4822ce0116aad - md5: ba590e4630833739c3eb5fcd5f046d0e + size: 276533 + timestamp: 1744743235779 +- conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.2-py312h451a7dd_0.conda + sha256: c5f3138af014469f64d47a151bbe52e9581efe076fb2fa6997ae8c8e995a5a85 + md5: 6dbaff8fc6c85c46f8e2be6e6185b9e6 depends: - libgcc >=13 - libstdcxx >=13 @@ -2862,12 +2876,11 @@ packages: - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause - license_family: BSD - size: 286018 - timestamp: 1731428571868 -- conda: https://prefix.dev/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda - sha256: e05d4c6b4284684a020c386861342fa22706ff747f1f8909b14dbc0fe489dcb2 - md5: 94715deb514df3f341f62bc2ffea5637 + size: 286570 + timestamp: 1744743495020 +- conda: https://prefix.dev/conda-forge/osx-64/contourpy-1.3.2-py312hc47a885_0.conda + sha256: 0d1cd1d61951a3785eda1393f62a174ab089703a53b76cac58553e8442417a85 + md5: 16b4934fdd19e9d5990140cb9bd9b0d7 depends: - __osx >=10.13 - libcxx >=18 @@ -2875,12 +2888,11 @@ packages: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause - license_family: BSD - size: 254416 - timestamp: 1731428639848 -- conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda - sha256: fa1f8505f45eac22f25c48cd46809da0d26bcb028c37517b3474bacddd029b0a - md5: f4408290387836e05ac267cd7ec80c5c + size: 255677 + timestamp: 1744743605195 +- conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.2-py312hb23fbb9_0.conda + sha256: 39329ded9d5ea49ab230c4ecd5e7610d3c844faca05fb9385bfe76ff02cc2abd + md5: e8108c7798046eb5b5f95cdde1bb534c depends: - __osx >=11.0 - libcxx >=18 @@ -2889,12 +2901,11 @@ packages: - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause - license_family: BSD - size: 245638 - timestamp: 1731428781337 -- conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda - sha256: b5643ea0dd0bf57e1847679f5985feb649289de872b85c3db900f4110ac83cdd - md5: 83f7a2ec652abd37a178e35493dfd029 + size: 245787 + timestamp: 1744743658516 +- conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda + sha256: 9b552bcab6c1e3a364cbc010bdef3d26831c90984b7d0852a1dd70659d9cf84a + md5: bfcbb98aff376f62298f0801ca9bcfc3 depends: - numpy >=1.23 - python >=3.12,<3.13.0a0 @@ -2903,9 +2914,8 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: BSD-3-Clause - license_family: BSD - size: 216484 - timestamp: 1731428831843 + size: 217491 + timestamp: 1744743749434 - conda: https://prefix.dev/conda-forge/linux-64/coreutils-9.5-hd590300_0.conda sha256: 7cd3b0f55aa55bb27b045c30f32b3f6b874ecc006f3abcb274c71a3bcbacb358 md5: 126d457e0e7a535278e808a7d8960015 @@ -2938,16 +2948,16 @@ packages: license_family: GPL size: 1478098 timestamp: 1711655465375 -- conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda +- conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda noarch: generic - sha256: 58a637bc8328b115c9619de3fcd664ec26662083319e3c106917a1b3ee4d7594 - md5: f0f8087079679f3ae375fca13327b17f + sha256: acb47715abf1cd8177a5c20f42a34555b5d9cebb68ff39a58706e84effe218e2 + md5: 7584a4b1e802afa25c89c0dcc72d0826 depends: - - python 3.12.9.* + - python >=3.12,<3.13.0a0 - python_abi * *_cp312 license: Python-2.0 - size: 45728 - timestamp: 1741128060593 + size: 45861 + timestamp: 1744323195619 - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c md5: 44600c4667a319d67dbe0681fc0bc833 @@ -3092,9 +3102,9 @@ packages: license_family: GPL size: 574595 timestamp: 1640112246560 -- conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.13-py312h2ec8cdc_0.conda - sha256: 3370f9c9a94146a4136ca57ae6e13b789572ff41804cd949cccad70945ae7fb0 - md5: cfad89e517e83c4927fffdbaaf0a30ef +- conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py312h2ec8cdc_0.conda + sha256: 8f0b338687f79ea87324f067bedddd2168f07b8eec234f0fe63b522344c6a919 + md5: 089cf3a3becf0e2f403feaf16e921678 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -3103,11 +3113,11 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2650523 - timestamp: 1741148587127 -- conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.13-py312h6f74592_0.conda - sha256: 64a7b284129d70fbd12e6562fbfaceb9aaf17c73495c294e5cb3c087a268d066 - md5: e0acc6199a29804d8d35d384093d8426 + size: 2630748 + timestamp: 1744321406939 +- conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.14-py312h6f74592_0.conda + sha256: 6a4954113af1c6100ddb96a366f4fb0a0b329bfa38d079160efb068d7f79fb1b + md5: bfa99c988888029935cd175e43461e68 depends: - libgcc >=13 - libstdcxx >=13 @@ -3116,11 +3126,11 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2608850 - timestamp: 1741148743696 -- conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.13-py312haafddd8_0.conda - sha256: ceef18f81b4b6f2f3c22df66df328deb673d1134245eea50cff9015851aaa44c - md5: cfa5d55e1840d33ef2fc5fa168a6e702 + size: 2623263 + timestamp: 1744321540389 +- conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.14-py312haafddd8_0.conda + sha256: b1c9f30148045219844f947fe43d4ee19c4cc6ee83e7518b2e83db780d3e97e6 + md5: a3831727ed5b148d096afb80a6009cab depends: - __osx >=10.13 - libcxx >=18 @@ -3128,11 +3138,11 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2534988 - timestamp: 1741148736172 -- conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.13-py312hd8f9ff3_0.conda - sha256: aff8062e58906578b8006455beba45d4293708795fd534f01ca08d79cccaf6e3 - md5: 806d93a7b4e47961d7459dc880087673 + size: 2557869 + timestamp: 1744321625095 +- conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.14-py312hd8f9ff3_0.conda + sha256: c833d92953a4c747f2606cefaebdbeaeec7c8d374bb7652dd0cc241cb120fdbc + md5: f1be818f2cee62e6edc12d5aaae13f57 depends: - __osx >=11.0 - libcxx >=18 @@ -3141,11 +3151,11 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2571308 - timestamp: 1741148638740 -- conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.13-py312h275cf98_0.conda - sha256: 24e793d78bb5f2129be7a485c72d6d485d1abff30d90cdcedfa24bad1cf00208 - md5: a2e7abdc87c10567ad1fdaf05c47a728 + size: 2581221 + timestamp: 1744321582400 +- conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.14-py312h275cf98_0.conda + sha256: 02ceea9c12eaaf29c7c40142e4789b77c5c98aa477bdfca1db3ae97440b9e2fe + md5: 331737db69ae5431acb6ef3e198ec623 depends: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -3154,8 +3164,8 @@ packages: - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 3608339 - timestamp: 1741149007361 + size: 3561750 + timestamp: 1744321803729 - conda: https://prefix.dev/conda-forge/noarch/dmgbuild-1.6.5-pyh534df25_0.conda sha256: cf9a4ce260840ced8163abf5f7bec5340021606181689159283ef03c0ff436d6 md5: 0b2204656b88f3844abb58e9ff4dd11c @@ -3383,7 +3393,7 @@ packages: - libva >=2.22.0,<3.0a0 - libvpx >=1.14.1,<1.15.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - openh264 >=2.5.0,<2.5.1.0a0 - openssl >=3.4.0,<4.0a0 @@ -3434,7 +3444,7 @@ packages: - libstdcxx >=13 - libvpx >=1.14.1,<1.15.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - openh264 >=2.5.0,<2.5.1.0a0 - openssl >=3.4.0,<4.0a0 @@ -3483,7 +3493,7 @@ packages: - libopus >=1.3.1,<2.0a0 - librsvg >=2.58.4,<3.0a0 - libvpx >=1.14.1,<1.15.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - openh264 >=2.5.0,<2.5.1.0a0 - openssl >=3.4.0,<4.0a0 @@ -3528,7 +3538,7 @@ packages: - libopus >=1.3.1,<2.0a0 - librsvg >=2.58.4,<3.0a0 - libvpx >=1.14.1,<1.15.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - openh264 >=2.5.0,<2.5.1.0a0 - openssl >=3.4.0,<4.0a0 @@ -3558,7 +3568,7 @@ packages: - libopus >=1.3.1,<2.0a0 - librsvg >=2.58.4,<3.0a0 - libvorbis >=1.3.7,<1.4.0a0 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - openh264 >=2.6.0,<2.6.1.0a0 - openssl >=3.4.1,<4.0a0 @@ -3734,28 +3744,28 @@ packages: license_family: LGPL size: 1067027 timestamp: 1731908658623 -- conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.9-h27fc217_1.conda - sha256: 7a2436738bb84a906750d90b44d8be7ec5a62ed1f9ed9f575471c2a3e1cac2a7 - md5: cf0f26c4a2922b57677f3aa26bf2adec +- conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.10-h5d05227_0.conda + sha256: cc2879b1b0ed5991de5bcdc312cfcb9c8cd67d4353eecaa9381fb34b950c7a36 + md5: abdaba6a9553a589bdf244b023c978a1 depends: - libjpeg-turbo >=3.0.0,<4.0a0 - - libpng >=1.6.43,<1.7.0a0 - - libxcb >=1.16,<2.0.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libxcb >=1.17.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - vc >=14.1,<15 - vc14_runtime >=14.16.27033 - xorg-libice >=1.1.1,<2.0a0 - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 - xorg-libxau >=1.0.11,<2.0a0 - - xorg-libxdmcp - - xorg-libxext >=1.3.4,<2.0a0 - - xorg-libxfixes + - xorg-libxdmcp >=1.1.5,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 - xorg-libxrender >=0.9.11,<0.10.0a0 license: LGPL-2.0-or-later license_family: LGPL - size: 1622795 - timestamp: 1720536327400 + size: 1623168 + timestamp: 1731909509376 - conda: https://prefix.dev/conda-forge/linux-64/fmt-11.1.4-h07f6e7f_1.conda sha256: 2db2a6a1629bc2ac649b31fd990712446394ce35930025e960e1765a9249af5d md5: 288a90e722fd7377448b00b2cddcb90d @@ -3923,9 +3933,9 @@ packages: license_family: BSD size: 4102 timestamp: 1566932280397 -- conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.56.0-py312h178313f_0.conda - sha256: 76ca95b4111fe27e64d74111b416b3462ad3db99f7109cbdf50e6e4b67dcf5b7 - md5: 2f8a66f2f9eb931cdde040d02c6ab54c +- conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda + sha256: 3d230ff0d9e9fc482de22b807adf017736bd6d19b932eea68d68eeb52b139e04 + md5: 97907388593b27ac01237a1023d58d3d depends: - __glibc >=2.17,<3.0.a0 - brotli @@ -3936,11 +3946,11 @@ packages: - unicodedata2 >=15.1.0 license: MIT license_family: MIT - size: 2834054 - timestamp: 1738940929849 -- conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.56.0-py312hcc812fe_0.conda - sha256: b76344ebd6c48f1e89fc8c34e739db73a7f182398af6bea2b7e0846b4417f688 - md5: d82ee4c4cedaed76ceba8769d4365e32 + size: 2842050 + timestamp: 1743732552050 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.57.0-py312hcc812fe_0.conda + sha256: 82beb74908cc1592110734c47574b329839586d0cf53bbe71c11ffcd1946dc99 + md5: 849a56cee113f00b20aa10d45d8e1e84 depends: - brotli - libgcc >=13 @@ -3951,11 +3961,11 @@ packages: - unicodedata2 >=15.1.0 license: MIT license_family: MIT - size: 2783736 - timestamp: 1738940566488 -- conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.56.0-py312h3520af0_0.conda - sha256: 9b206989c9d5e68120d264b6798b9afdfbca6b9a8705cdd71b68a75ce58f81b7 - md5: 9b603b2fa3072c966ef2ff119e8203f3 + size: 2778730 + timestamp: 1743732515170 +- conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.57.0-py312h3520af0_0.conda + sha256: 45e0a8d7b1911ca1d01a1d9679ba3e5678f79b4c856e85bf1bf329590b4ba2f9 + md5: 72459752c526a5e73dcd0f17662b2d12 depends: - __osx >=10.13 - brotli @@ -3965,11 +3975,11 @@ packages: - unicodedata2 >=15.1.0 license: MIT license_family: MIT - size: 2761261 - timestamp: 1738940558929 -- conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.56.0-py312h998013c_0.conda - sha256: 6b003a5100ec58e1bd456bf55d0727606f7b067628aed1a7c5d8cf4f0174bfc5 - md5: a5cf7d0629863be81d90054882de908c + size: 2788283 + timestamp: 1743732547993 +- conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.57.0-py312h998013c_0.conda + sha256: ff8b4b5b461d7e1e4444aff3cf06f160f6f1b2ab44e4d010de8b128324a125b3 + md5: 657512bc3ceb378aa59a5b5f5d7d1fe4 depends: - __osx >=11.0 - brotli @@ -3980,11 +3990,11 @@ packages: - unicodedata2 >=15.1.0 license: MIT license_family: MIT - size: 2753059 - timestamp: 1738940607300 -- conda: https://prefix.dev/conda-forge/win-64/fonttools-4.56.0-py312h31fea79_0.conda - sha256: 31f245d4ceb7a8e9df8d292ff1efdb4be9a8fa7a9be7a1d0394465aa7f824d50 - md5: 7c08698c54ca6390314c19167c16745e + size: 2733512 + timestamp: 1743732533022 +- conda: https://prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda + sha256: eaa9fa1c6c0f290a24066a170460e292b111cb4c67c8d7cb7eb54ca68c608646 + md5: 5bcdfae9aaf166ad83edebfa2f6359e2 depends: - brotli - munkres @@ -3996,8 +4006,8 @@ packages: - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 2413563 - timestamp: 1738940929060 + size: 2410183 + timestamp: 1743732853 - conda: . name: freecad version: 1.1.0dev @@ -4037,23 +4047,23 @@ packages: - sympy - vtk - xlutils - - qt6-main >=6.8.2,<6.9.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - pcl >=1.15.0,<1.15.1.0a0 - - libzlib >=1.3.1,<2.0a0 - - libboost >=1.86.0,<1.87.0a0 - - occt >=7.8.1,<7.8.2.0a0 - - xerces-c >=3.3.0,<3.4.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - coin3d >=4.0.3,<4.1.0a0 - - fmt >=11.1.4,<11.2.0a0 - - freetype >=2.13.3,<3.0a0 - - numpy >=1.21,<3 - python_abi 3.12.* *_cp312 - - smesh >=9.9.0.0,<9.9.1.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - libboost >=1.86.0,<1.87.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - coin3d >=4.0.3,<4.1.0a0 - vtk-base >=9.3.1,<9.3.2.0a0 + - numpy >=1.21,<3 + - smesh >=9.9.0.0,<9.9.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - freetype >=2.13.3,<3.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - fmt >=11.1.4,<11.2.0a0 input: - hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + hash: cca6eb9e67d484920359cec56bcd11e112edb1876239a578dda02ad717b64208 globs: - pixi.toml - conda: . @@ -4096,23 +4106,23 @@ packages: - vtk - xlutils - libspnav - - numpy >=1.21,<3 - - smesh >=9.9.0.0,<9.9.1.0a0 - - libboost >=1.86.0,<1.87.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - freetype >=2.13.3,<3.0a0 - coin3d >=4.0.3,<4.1.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - libzlib >=1.3.1,<2.0a0 + - smesh >=9.9.0.0,<9.9.1.0a0 + - numpy >=1.21,<3 + - libboost >=1.86.0,<1.87.0a0 - fmt >=11.1.4,<11.2.0a0 - - xerces-c >=3.3.0,<3.4.0a0 - hdf5 >=1.14.4,<1.14.5.0a0 - pcl >=1.15.0,<1.15.1.0a0 - - freetype >=2.13.3,<3.0a0 - - qt6-main >=6.8.2,<6.9.0a0 - - python_abi 3.12.* *_cp312 + - libzlib >=1.3.1,<2.0a0 + - xerces-c >=3.3.0,<3.4.0a0 - vtk-base >=9.3.1,<9.3.2.0a0 - occt >=7.8.1,<7.8.2.0a0 + - python_abi 3.12.* *_cp312 + - yaml-cpp >=0.8.0,<0.9.0a0 input: - hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + hash: cca6eb9e67d484920359cec56bcd11e112edb1876239a578dda02ad717b64208 globs: - pixi.toml - conda: . @@ -4157,22 +4167,22 @@ packages: - libspnav - __glibc >=2.17,<3.0.a0 - qt6-main >=6.8.2,<6.9.0a0 - - xerces-c >=3.3.0,<3.4.0a0 - - python_abi 3.12.* *_cp312 - - smesh >=9.9.0.0,<9.9.1.0a0 - - libboost >=1.86.0,<1.87.0a0 - - vtk-base >=9.3.1,<9.3.2.0a0 - - coin3d >=4.0.3,<4.1.0a0 - - numpy >=1.21,<3 - - libzlib >=1.3.1,<2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - freetype >=2.13.3,<3.0a0 - - fmt >=11.1.4,<11.2.0a0 - - occt >=7.8.1,<7.8.2.0a0 - yaml-cpp >=0.8.0,<0.9.0a0 - pcl >=1.15.0,<1.15.1.0a0 + - libboost >=1.86.0,<1.87.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libzlib >=1.3.1,<2.0a0 + - python_abi 3.12.* *_cp312 + - vtk-base >=9.3.1,<9.3.2.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - freetype >=2.13.3,<3.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - numpy >=1.21,<3 + - fmt >=11.1.4,<11.2.0a0 + - smesh >=9.9.0.0,<9.9.1.0a0 input: - hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + hash: cca6eb9e67d484920359cec56bcd11e112edb1876239a578dda02ad717b64208 globs: - pixi.toml - conda: . @@ -4214,23 +4224,23 @@ packages: - sympy - vtk - xlutils - - libzlib >=1.3.1,<2.0a0 - - fmt >=11.1.4,<11.2.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - vtk-base >=9.3.1,<9.3.2.0a0 - - libboost >=1.86.0,<1.87.0a0 - xerces-c >=3.3.0,<3.4.0a0 + - libboost >=1.86.0,<1.87.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 - python_abi 3.12.* *_cp312 - - hdf5 >=1.14.4,<1.14.5.0a0 - - freetype >=2.13.3,<3.0a0 - - qt6-main >=6.8.2,<6.9.0a0 + - pcl >=1.15.0,<1.15.1.0a0 - numpy >=1.21,<3 - coin3d >=4.0.3,<4.1.0a0 - smesh >=9.9.0.0,<9.9.1.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - freetype >=2.13.3,<3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - libzlib >=1.3.1,<2.0a0 - occt >=7.8.1,<7.8.2.0a0 - - pcl >=1.15.0,<1.15.1.0a0 + - fmt >=11.1.4,<11.2.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 input: - hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + hash: cca6eb9e67d484920359cec56bcd11e112edb1876239a578dda02ad717b64208 globs: - pixi.toml - conda: . @@ -4273,22 +4283,22 @@ packages: - vtk - xlutils - coin3d >=4.0.3,<4.1.0a0 - - python_abi 3.12.* *_cp312 - - qt6-main >=6.8.2,<6.9.0a0 - - libboost >=1.86.0,<1.87.0a0 - - numpy >=1.21,<3 - - fmt >=11.1.4,<11.2.0a0 - - freetype >=2.13.3,<3.0a0 - - smesh >=9.9.0.0,<9.9.1.0a0 - - vtk-base >=9.3.1,<9.3.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - occt >=7.8.1,<7.8.2.0a0 - - pcl >=1.15.0,<1.15.1.0a0 - - libzlib >=1.3.1,<2.0a0 - - xerces-c >=3.3.0,<3.4.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 - yaml-cpp >=0.8.0,<0.9.0a0 + - smesh >=9.9.0.0,<9.9.1.0a0 + - freetype >=2.13.3,<3.0a0 + - numpy >=1.21,<3 + - libboost >=1.86.0,<1.87.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - fmt >=11.1.4,<11.2.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - libzlib >=1.3.1,<2.0a0 + - python_abi 3.12.* *_cp312 + - pcl >=1.15.0,<1.15.1.0a0 input: - hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + hash: cca6eb9e67d484920359cec56bcd11e112edb1876239a578dda02ad717b64208 globs: - pixi.toml - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda @@ -4883,25 +4893,25 @@ packages: license_family: BSD size: 963275 timestamp: 1607113700054 -- conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.0-h4833e2c_0.conda - sha256: bb9124c26e382627f343ffb7da48d30eadb27b40d461b1d50622610e48c45595 - md5: 2d876130380b1593f25c20998df37880 +- conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.1-h4833e2c_0.conda + sha256: 0358e0471a7c41875490abb87faa44c38298899b625744c6618b32cfb6595b4c + md5: ddc06964296eee2b4070e65415b332fd depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libglib 2.84.0 h2ff4ddf_0 + - libglib 2.84.1 h2ff4ddf_0 license: LGPL-2.1-or-later - size: 117012 - timestamp: 1743038948388 -- conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.0-h78ca943_0.conda - sha256: 5df4f6f24bf400b0ad1ac899c6e28ec805e50cdbfedfdbf2ea3269311a8bf317 - md5: 7fc718e1c9b5e282519e7d3e343148f9 + size: 116281 + timestamp: 1743773813311 +- conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.1-h78ca943_0.conda + sha256: 6430e341fe682f72cf9a934f3be7d21e34d7dad9e2d63bede0d92e340b48b051 + md5: 52bd1c925286458a9990043adad93086 depends: - libgcc >=13 - - libglib 2.84.0 hc486b8e_0 + - libglib 2.84.1 hc486b8e_0 license: LGPL-2.1-or-later - size: 126349 - timestamp: 1743038687696 + size: 126953 + timestamp: 1743773781585 - conda: https://prefix.dev/conda-forge/osx-64/glib-tools-2.84.0-hf8faeaf_0.conda sha256: 6ea60fa3aee44ba7223ee4a5955dc341a4dac1f2256a8511a821741545a6da27 md5: 03d506bd28830a841105d3015744612e @@ -5669,7 +5679,7 @@ packages: - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libcxx >=18 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 @@ -5685,7 +5695,7 @@ packages: - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libcxx >=18 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 @@ -6396,17 +6406,17 @@ packages: license_family: Apache size: 194365 timestamp: 1657977692274 -- conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.21.8-h84d6215_0.conda - sha256: 07850347eb8dd6459bae3e74535730f86030b964dac62b54115fd7003ba9a1d4 - md5: 90d6421a418b17d614a964485e083f53 +- conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.21.9-h84d6215_0.conda + sha256: 244ddb21e31267aa428160113fe492f74d6456c4e826c654eccfdc5f643a811b + md5: 7dee56b7d4b10fa0623bb07ad13d8134 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 license: MIT license_family: MIT - size: 551825 - timestamp: 1743604154326 + size: 553846 + timestamp: 1744358954638 - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4 md5: 488f260ccda0afaf08acb286db439c2f @@ -6700,7 +6710,7 @@ packages: md5: 1598b53b435e2741a13b5e0654f93518 depends: - __osx >=10.13 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 constrains: - mkl <2025 @@ -6720,7 +6730,7 @@ packages: md5: cd70391dbb683b12b4518c2a38d545be depends: - __osx >=11.0 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 constrains: - libcblas =3.9.0=31*_accelerate @@ -7165,28 +7175,28 @@ packages: license_family: BSD size: 3946225 timestamp: 1740088645546 -- conda: https://prefix.dev/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_8.conda - sha256: 9e9af164c1ddfd114a786aceacf64df0041c3528a97cc96c06f3bf1040485e29 - md5: 1444a2cd1f78fccea7dacb658f8aeb39 +- conda: https://prefix.dev/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_9.conda + sha256: a3453cf08393f4a369a70795036d60dd8ea0de1efbf683594cbcaba49d8e3e74 + md5: ef1a444913775b76f3391431967090a9 depends: - __osx >=10.13 - libcxx >=18.1.8 - libllvm18 >=18.1.8,<18.2.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 13905920 - timestamp: 1742266347128 -- conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_8.conda - sha256: b736c4c3a32d4aa16b4af7b2094b4f3786ea34723cccb9918579206706000f90 - md5: a5f883cd77dcc0f62a0eca8445d9e147 + size: 13908110 + timestamp: 1744061729284 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_9.conda + sha256: 23eb5b180fadbe0b9a1d1aa123e44ef7ff774174b8a43fa40495c4ecc80f1328 + md5: 88893bbbccb1400d677f747b0c8f226f depends: - __osx >=11.0 - libcxx >=18.1.8 - libllvm18 >=18.1.8,<18.2.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 13330731 - timestamp: 1742265504673 + size: 13330734 + timestamp: 1744062341062 - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_2.conda sha256: 658c8000f3be74ad926b376b48903036611b5beccc07f729417730c49bd73a30 md5: 62d6f9353753a12a281ae99e0a3403c4 @@ -7210,54 +7220,54 @@ packages: license_family: Apache size: 20098820 timestamp: 1742269466891 -- conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.1-default_h9c6a7e4_0.conda - sha256: e73fef6a7eeb800220b435561126597639e78e3bc1d8f2f32ad6f89de07b5308 - md5: f8b1b8c13c0a0fede5e1a204eafb48f8 +- conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.2-default_h9c6a7e4_0.conda + sha256: f7be7e0a914766e82046a9b0f1ddd6e6a4aba77404b897d96390d5c880ce9730 + md5: c5fe177150aecc6ec46609b0a6123f39 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libllvm20 >=20.1.1,<20.2.0a0 + - libllvm20 >=20.1.2,<20.2.0a0 - libstdcxx >=13 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 12114034 - timestamp: 1742506367797 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.1-default_h4390ef5_0.conda - sha256: 33ed5913fca61fbb3e7c89bd1e6ffdc47ef18bf7f39122e26c04e570cdea6e76 - md5: faa5920ac55e48c39732b018ba13d11c + size: 12112427 + timestamp: 1743644530303 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.2-default_h4390ef5_0.conda + sha256: a6a34f64f0d780f536fff982ebee5897d61a36f61d2a824425a2e38196f68937 + md5: 1b6fe4be5192efb10a7e8578d29f4cb4 depends: - libgcc >=13 - - libllvm20 >=20.1.1,<20.2.0a0 + - libllvm20 >=20.1.2,<20.2.0a0 - libstdcxx >=13 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 11878811 - timestamp: 1742506614558 -- conda: https://prefix.dev/conda-forge/osx-64/libclang13-20.1.1-default_hf2b7afa_0.conda - sha256: e49812f2208a7a3f7739ba2a482f1bc9deff4ea3b761cb0e7a0f7521d21f5e5c - md5: 9fc8a7d8c2e4d170602c5c918aab40d0 + size: 11879032 + timestamp: 1743645536459 +- conda: https://prefix.dev/conda-forge/osx-64/libclang13-20.1.2-default_hf2b7afa_0.conda + sha256: 052d3be577c900045d11e7eaed3cd7ffc4921401092b12a557e50ce1c66880cb + md5: c0c4971ab0487bc4d6cf2e16e78c3513 depends: - __osx >=10.13 - - libcxx >=20.1.1 - - libllvm20 >=20.1.1,<20.2.0a0 + - libcxx >=20.1.2 + - libllvm20 >=20.1.2,<20.2.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 8661104 - timestamp: 1742504540424 -- conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.1-default_h81d93ff_0.conda - sha256: 3f8cd8a86046042392432e036f44f2b8b176b103a54e0c7b249d36cfd361e437 - md5: 43a4b87f51de4cbea46600b84d5ce1ad + size: 8663321 + timestamp: 1743642982247 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.2-default_h81d93ff_0.conda + sha256: 47adddaa5fc7f52265f8a7359e88541c7fc3ac84efb186838ee5e8fd9c5d27e8 + md5: d380d9480ae1561d60073edd2ce471b2 depends: - __osx >=11.0 - - libcxx >=20.1.1 - - libllvm20 >=20.1.1,<20.2.0a0 + - libcxx >=20.1.2 + - libllvm20 >=20.1.2,<20.2.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 8433379 - timestamp: 1742505151444 -- conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.1-default_ha5278ca_0.conda - sha256: f8aa908391700fc19e736ab1c598a952bef1bbb72192790988a414216929cab8 - md5: c432d7ab334986169fd534725fc9375d + size: 8435363 + timestamp: 1743643575547 +- conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.2-default_ha5278ca_0.conda + sha256: e6b68355a0d91cc4c42307eef3acaffac4de0b7b0639f255d74fc156e597f63d + md5: 4270e55ba56854c5098a51592e45809a depends: - libzlib >=1.3.1,<2.0a0 - ucrt >=10.0.20348.0 @@ -7266,8 +7276,8 @@ packages: - zstd >=1.5.7,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 28339961 - timestamp: 1742537164 + size: 28341437 + timestamp: 1743649934240 - conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda sha256: bc67b9b21078c99c6bd8595fe7e1ed6da1f721007726e717f0449de7032798c4 md5: d4529f4dff3057982a7617c7ac58fde3 @@ -7725,6 +7735,20 @@ packages: license_family: GPL size: 535507 timestamp: 1740241069780 +- conda: https://prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 + md5: 4a74c1461a0ba47a3346c04bdccbe2ad + depends: + - _openmp_mutex >=4.5 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - msys2-conda-epoch <0.0a0 + - libgcc-ng ==14.2.0=*_2 + - libgomp 14.2.0 h1383e82_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 666343 + timestamp: 1740240717807 - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 md5: a2222a6ada71fb478682efe483ce0f92 @@ -7981,24 +8005,35 @@ packages: license_family: GPL size: 53611 timestamp: 1740241100147 -- conda: https://prefix.dev/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda - sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d - md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5 +- conda: https://prefix.dev/conda-forge/osx-64/libgfortran-14.2.0-hef36b68_105.conda + sha256: 984040aa98dedcfbe1cf59befd73740e30d368b96cbfa17c002297e67fa5af23 + md5: 6b27baf030f5d6603713c7e72d3f6b9a depends: - - libgfortran5 13.2.0 h2873a65_3 + - libgfortran5 14.2.0 h58528f3_105 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 110106 - timestamp: 1707328956438 -- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - sha256: 44e541b4821c96b28b27fef5630883a60ce4fee91fd9c79f25a199f8f73f337b - md5: 4a55d9e169114b2b90d3ec4604cd7bbf + size: 155635 + timestamp: 1743911593527 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-14.2.0-heb5dd2a_105.conda + sha256: 6ca48762c330d1cdbdaa450f197ccc16ffb7181af50d112b4ccf390223d916a1 + md5: ad35937216e65cfeecd828979ee5e9e6 depends: - - libgfortran5 13.2.0 hf226fd6_3 + - libgfortran5 14.2.0 h2c44a93_105 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 110233 - timestamp: 1707330749033 + size: 155474 + timestamp: 1743913530958 +- conda: https://prefix.dev/conda-forge/win-64/libgfortran-14.2.0-h719f0c7_2.conda + sha256: 12f83a7bdf786a252809c826356038f3ec956eb722cde70bdc65b79362357a6a + md5: 9412c5649152274bf99a6a7533c5fc8e + depends: + - libgfortran5 14.2.0 hf020157_2 + constrains: + - libgfortran-ng ==14.2.0=*_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53876 + timestamp: 1740240939881 - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c md5: 556a4fdfac7287d349b8f09aba899693 @@ -8022,28 +8057,40 @@ packages: license_family: GPL size: 1100765 timestamp: 1740241083241 -- conda: https://prefix.dev/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda - sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b - md5: e4fb4d23ec2870ff3c40d10afe305aec +- conda: https://prefix.dev/conda-forge/osx-64/libgfortran5-14.2.0-h58528f3_105.conda + sha256: 02fc48106e1ca65cf7de15f58ec567f866f6e8e9dcced157d0cff89f0768bb59 + md5: 94560312ff3c78225bed62ab59854c31 depends: - llvm-openmp >=8.0.0 constrains: - - libgfortran 5.0.0 13_2_0_*_3 + - libgfortran 14.2.0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 1571379 - timestamp: 1707328880361 -- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda - sha256: bafc679eedb468a86aa4636061c55966186399ee0a04b605920d208d97ac579a - md5: 66ac81d54e95c534ae488726c1f698ea + size: 1224385 + timestamp: 1743911552203 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-14.2.0-h2c44a93_105.conda + sha256: de09987e1080f71e2285deec45ccb949c2620a672b375029534fbb878e471b22 + md5: 06f35a3b1479ec55036e1c9872f97f2c depends: - llvm-openmp >=8.0.0 constrains: - - libgfortran 5.0.0 13_2_0_*_3 + - libgfortran 14.2.0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 997381 - timestamp: 1707330687590 + size: 806283 + timestamp: 1743913488925 +- conda: https://prefix.dev/conda-forge/win-64/libgfortran5-14.2.0-hf020157_2.conda + sha256: c3aa58790b0e8be31bfc1ddc5ee1c1300543ae9d2ec8f52cceb804e523413448 + md5: 62ac6caaf1593e66fa54e843a7d77c70 + depends: + - libgcc >=14.2.0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - libgfortran 14.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1705968 + timestamp: 1740240728919 - conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d md5: 928b8be80851f5d8ffb016f9c81dae7a @@ -8063,35 +8110,35 @@ packages: license: LicenseRef-libglvnd size: 145442 timestamp: 1731331005019 -- conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.0-h2ff4ddf_0.conda - sha256: 8e8737ca776d897d81a97e3de28c4bb33c45b5877bbe202b9b0ad2f61ca39397 - md5: 40cdeafb789a5513415f7bdbef053cf5 +- conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.1-h2ff4ddf_0.conda + sha256: 18e354d30a60441b0bf5fcbb125b6b22fd0df179620ae834e2533d44d1598211 + md5: 0305434da649d4fb48a425e588b79ea6 depends: - __glibc >=2.17,<3.0.a0 - - libffi >=3.4,<4.0a0 + - libffi >=3.4.6,<3.5.0a0 - libgcc >=13 - libiconv >=1.18,<2.0a0 - libzlib >=1.3.1,<2.0a0 - pcre2 >=10.44,<10.45.0a0 constrains: - - glib 2.84.0 *_0 + - glib 2.84.1 *_0 license: LGPL-2.1-or-later - size: 3998765 - timestamp: 1743038881905 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.0-hc486b8e_0.conda - sha256: 4ffe7f527760e701b1b14cc492fd4ed51883c3b7d7c589bdad934b0495c45296 - md5: 0e32e3c613a7cd492c8ff99772b77fc6 + size: 3947789 + timestamp: 1743773764878 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.1-hc486b8e_0.conda + sha256: 2836930396f310b88a24ceff04430e181890bf973a9b30be756a2a0a76d5f571 + md5: 07cb059040220481ab9eda17cb86f644 depends: - - libffi >=3.4,<4.0a0 + - libffi >=3.4.6,<3.5.0a0 - libgcc >=13 - libiconv >=1.18,<2.0a0 - libzlib >=1.3.1,<2.0a0 - pcre2 >=10.44,<10.45.0a0 constrains: - - glib 2.84.0 *_0 + - glib 2.84.1 *_0 license: LGPL-2.1-or-later - size: 4056691 - timestamp: 1743038654141 + size: 4028903 + timestamp: 1743773747792 - conda: https://prefix.dev/conda-forge/osx-64/libglib-2.84.0-h5c976ab_0.conda sha256: 6345cb63429ca1d216e47502a04dcce8b9f8a4fe08547cef42bbc040dc453b9e md5: 9d9e772b8e01ce350ddff9b277503514 @@ -8122,11 +8169,11 @@ packages: license: LGPL-2.1-or-later size: 3698518 timestamp: 1743039055882 -- conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.0-h7025463_0.conda - sha256: 0b4f9581e2dba58bc38cb00453e145140cf6230a56887ff1195e63e2b1e3f1c2 - md5: ea8df8a5c5c7adf4c03bf9e3db1637c3 +- conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.1-h7025463_0.conda + sha256: 75a35a0134c7b2f3f41dbf24faa417be6a98a70db23dc1225b0c74ea45c0ce61 + md5: 6cbaea9075a4f007eb7d0a90bb9a2a09 depends: - - libffi >=3.4,<4.0a0 + - libffi >=3.4.6,<3.5.0a0 - libiconv >=1.18,<2.0a0 - libintl >=0.22.5,<1.0a0 - libzlib >=1.3.1,<2.0a0 @@ -8135,10 +8182,10 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 constrains: - - glib 2.84.0 *_0 + - glib 2.84.1 *_0 license: LGPL-2.1-or-later - size: 3842095 - timestamp: 1743039211561 + size: 3806534 + timestamp: 1743774256525 - conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda sha256: cabd78b5ede1f3f161037d3a6cfb6b8a262ec474f9408859c364ef55ba778097 md5: b1df5affe904efe82ef890826b68881d @@ -8225,27 +8272,38 @@ packages: license_family: GPL size: 462783 timestamp: 1740241005079 -- conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda - sha256: 9e0c09c1faf2151ade3ccb64e52d3c1f2dde85c00e37c6a3e6a8bced2aba68be - md5: 168cc19c031482f83b23c4eebbb94e26 +- conda: https://prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 + md5: dd6b1ab49e28bcb6154cd131acec985b + depends: + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - msys2-conda-epoch <0.0a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 524548 + timestamp: 1740240660967 +- conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.53-hbd13f7d_0.conda + sha256: 64602a029d89356f62e4999c8f1b64a0a193fbaed6dfc79d8cd9a763545b2061 + md5: 95c5d6d9342880f326dec08ab4cd6253 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 license: LGPL-2.1-only license_family: GPL - size: 268740 - timestamp: 1731920927644 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.51-h05609ea_1.conda - sha256: e819b3ba47dc7e195e8e8a9c874d0b45690cccb2fa741f1abd55b28323f9fc43 - md5: 9cabbbc1c3c8e9fa30e90748f14534dd + size: 277672 + timestamp: 1744440226400 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.53-h05609ea_0.conda + sha256: 3f4a562f00588c13d787ac8587a321e4c946e0d4cf7b5e9be41ff4f1bb10a4fb + md5: 0b72088cdb01a6f2f00b3134e0cd38e5 depends: - libgcc >=13 - libstdcxx >=13 license: LGPL-2.1-only license_family: GPL - size: 277785 - timestamp: 1731920977846 + size: 289774 + timestamp: 1744440295787 - conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 md5: 804ca9e91bcaea0824a341d55b1684f2 @@ -8253,7 +8311,7 @@ packages: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.4,<3.0a0 + - libxml2 >=2.13.4,<2.14.0a0 license: BSD-3-Clause license_family: BSD size: 2423200 @@ -8264,7 +8322,7 @@ packages: depends: - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.4,<3.0a0 + - libxml2 >=2.13.4,<2.14.0a0 license: BSD-3-Clause license_family: BSD size: 2436762 @@ -8275,7 +8333,7 @@ packages: depends: - __osx >=10.13 - libcxx >=18 - - libxml2 >=2.13.4,<3.0a0 + - libxml2 >=2.13.4,<2.14.0a0 license: BSD-3-Clause license_family: BSD size: 2359326 @@ -8286,24 +8344,24 @@ packages: depends: - __osx >=11.0 - libcxx >=18 - - libxml2 >=2.13.4,<3.0a0 + - libxml2 >=2.13.4,<2.14.0a0 license: BSD-3-Clause license_family: BSD size: 2332319 timestamp: 1731375088576 -- conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_hc8275d1_1000.conda - sha256: 29db3126762be449bf137d0ce6662e0c95ce79e83a0685359012bb86c9ceef0a - md5: 2805c2eb3a74df931b3e2b724fcb965e +- conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 + md5: b87a0ac5ab6495d8225db5dc72dd21cd depends: - - libxml2 >=2.12.7,<3.0a0 - - pthreads-win32 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libxml2 >=2.13.4,<2.14.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: BSD-3-Clause license_family: BSD - size: 2389010 - timestamp: 1727380221363 + size: 2390021 + timestamp: 1731375651179 - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 md5: e796ff8ddc598affdf7c173d6145f087 @@ -8601,7 +8659,7 @@ packages: depends: - __osx >=10.13 - libcxx >=18 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8614,7 +8672,7 @@ packages: depends: - __osx >=11.0 - libcxx >=18 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8628,7 +8686,7 @@ packages: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8641,7 +8699,7 @@ packages: depends: - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8655,7 +8713,7 @@ packages: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.7,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8668,7 +8726,7 @@ packages: depends: - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.7,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8681,7 +8739,7 @@ packages: depends: - __osx >=10.13 - libcxx >=18 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.7,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception @@ -8694,75 +8752,75 @@ packages: depends: - __osx >=11.0 - libcxx >=18 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.7,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache size: 28898594 timestamp: 1743598256216 -- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda - sha256: cad52e10319ca4585bc37f0bc7cce99ec7c15dc9168e42ccb96b741b0a27db3f - md5: 42d5b6a0f30d3c10cd88cb8584fda1cb +- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef + md5: 0e87378639676987af32fee53ba32258 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: 0BSD - size: 111357 - timestamp: 1738525339684 -- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda - sha256: 96413664f0fade54a4931940d18749cfc8e6308349dbb0cb83adb2394ca1f730 - md5: b88244e0a115cc34f7fbca9b11248e76 + size: 112709 + timestamp: 1743771086123 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_0.conda + sha256: fee534c3fe3911a5164c438b40c7d3458d93086decd359ef72f0d04a7a5d82f4 + md5: 775d36ea4e469b0c049a6f2cd6253d82 depends: - libgcc >=13 license: 0BSD - size: 124197 - timestamp: 1738528201520 -- conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda - sha256: a895b5b16468a6ed436f022d72ee52a657f9b58214b91fabfab6230e3592a6dd - md5: db9d7b0152613f097cdb61ccf9f70ef5 + size: 124919 + timestamp: 1743773576913 +- conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.8.1-hd471939_0.conda + sha256: 3369b8ef0b544d17aebc530a687c0480051e825e8ffcd001b1a5f594fe276159 + md5: 8e1197f652c67e87a9ece738d82cef4f depends: - __osx >=10.13 license: 0BSD - size: 103749 - timestamp: 1738525448522 -- conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda - sha256: 560c59d3834cc652a84fb45531bd335ad06e271b34ebc216e380a89798fe8e2c - md5: e3fd1f8320a100f2b210e690a57cd615 + size: 104689 + timestamp: 1743771137842 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_0.conda + sha256: 4291dde55ebe9868491dc29716b84ac3de21b8084cbd4d05c9eea79d206b8ab7 + md5: ba24e6f25225fea3d5b6912e2ac562f8 depends: - __osx >=11.0 license: 0BSD - size: 98945 - timestamp: 1738525462560 -- conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda - sha256: 3f552b0bdefdd1459ffc827ea3bf70a6a6920c7879d22b6bfd0d73015b55227b - md5: c48f6ad0ef0a555b27b233dfcab46a90 + size: 92295 + timestamp: 1743771392206 +- conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c + md5: 8d5cb0016b645d6688e2ff57c5d51302 depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: 0BSD - size: 104465 - timestamp: 1738525557254 -- conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.6.4-hb9d3cd8_0.conda - sha256: 34928b36a3946902196a6786db80c8a4a97f6c9418838d67be90a1388479a682 - md5: 5ab1a0df19c8f3ec00d5e63458e0a420 + size: 104682 + timestamp: 1743771561515 +- conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_0.conda + sha256: 09738df1c1475cc7d35c4bf1062b8cdd4a110809aa49c240a4131e63609c974e + md5: 8f456db836b4d3d00d3b6a6cc47009d8 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - liblzma 5.6.4 hb9d3cd8_0 + - liblzma 5.8.1 hb9d3cd8_0 license: 0BSD - size: 378821 - timestamp: 1738525353119 -- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.6.4-h86ecc28_0.conda - sha256: d13882eff44e3984afbdfd39ae6f32bb0f624c284ec040c997f3fb62cc77c0e9 - md5: e9e33059c0262c70538581e3a2205fb4 + size: 440913 + timestamp: 1743771104004 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.8.1-h86ecc28_0.conda + sha256: f59e5ef9792726349efb03402885040e5f8bbc30c0f427b553bc4dd1632729d4 + md5: fe88ad1de9777f46eede74e2a6ddd207 depends: - libgcc >=13 - - liblzma 5.6.4 h86ecc28_0 + - liblzma 5.8.1 h86ecc28_0 license: 0BSD - size: 380207 - timestamp: 1738528405563 + size: 441540 + timestamp: 1743773784803 - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h5ddbaa4_116.conda sha256: 6c61842c8d8f885019f52a2f989d197b6bf33c030b030226e665f01ca0fa3f71 md5: f51573abc223afed7e5374f34135ce05 @@ -8776,7 +8834,7 @@ packages: - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzip >=1.11.2,<2.0a0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 @@ -8798,7 +8856,7 @@ packages: - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzip >=1.11.2,<2.0a0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 @@ -8820,7 +8878,7 @@ packages: - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libcxx >=18 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzip >=1.11.2,<2.0a0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 @@ -8842,7 +8900,7 @@ packages: - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libcxx >=18 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzip >=1.11.2,<2.0a0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 @@ -8862,7 +8920,7 @@ packages: - hdf5 >=1.14.4,<1.14.5.0a0 - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzip >=1.11.2,<2.0a0 - libzlib >=1.3.1,<2.0a0 - ucrt >=10.0.20348.0 @@ -9956,48 +10014,57 @@ packages: - vc14_runtime >=14.29.30139 size: 339694 timestamp: 1735817028472 -- conda: https://prefix.dev/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - md5: 15345e56d527b330e1cacbdf58676e8f +- conda: https://prefix.dev/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda + sha256: 786d43678d6d1dc5f88a6bad2d02830cfd5a0184e84a8caa45694049f0e3ea5f + md5: b64523fb87ac6f87f0790f324ad43046 depends: - - libgcc-ng >=9.3.0 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 license: BSD-3-Clause license_family: BSD - size: 260658 - timestamp: 1606823578035 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2 - sha256: 92a87ade11af2cff41c35cf941f1a79390fde1f113f8e51e1cce30d31b7c8305 - md5: ac7534c50934ed25e4749d74b04c667a + size: 312472 + timestamp: 1744330953241 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.5.2-h86ecc28_0.conda + sha256: c887543068308fb0fd50175183a3513f60cd8eb1defc23adc3c89769fde80d48 + md5: 44b2cfec6e1b94723a960f8a5e6206ae depends: - - libgcc-ng >=9.3.0 + - libgcc >=13 license: BSD-3-Clause license_family: BSD - size: 328825 - timestamp: 1606823775764 -- conda: https://prefix.dev/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 - sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 - md5: 380b9ea5f6a7a277e6c1ac27d034369b - license: BSD-3-Clause - license_family: BSD - size: 279983 - timestamp: 1606823633642 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 - sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a - md5: 3d0dbee0ccd2f6d6781d270313627b62 - license: BSD-3-Clause - license_family: BSD - size: 252854 - timestamp: 1606823635137 -- conda: https://prefix.dev/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 - sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525 - md5: e35a6bcfeb20ea83aab21dfc50ae62a4 + size: 357115 + timestamp: 1744331282621 +- conda: https://prefix.dev/conda-forge/osx-64/libopus-1.5.2-he3325bb_0.conda + sha256: 1ca09dddde2f1b7bab1a8b1e546910be02e32238ebaa2f19e50e443b17d0660f + md5: dd0f9f16dfae1d1518312110051586f6 depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 + - __osx >=10.13 license: BSD-3-Clause license_family: BSD - size: 260615 - timestamp: 1606824019288 + size: 331776 + timestamp: 1744331054952 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.5.2-h48c0fde_0.conda + sha256: 3a01094a59dd59d7a5a1c8e838c2ef3fccf9e098af575c38c26fceb56c6bb917 + md5: 882feb9903f31dca2942796a360d1007 + depends: + - __osx >=11.0 + license: BSD-3-Clause + license_family: BSD + size: 299498 + timestamp: 1744330988108 +- conda: https://prefix.dev/conda-forge/win-64/libopus-1.5.2-h2466b09_0.conda + sha256: 4c5e04de758450f9427a75095a54957de521b57234711374fac1cdc89fc7a9ca + md5: 67c18f2110921f6307a608050cd153f8 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: BSD-3-Clause + license_family: BSD + size: 289268 + timestamp: 1744330990400 - conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda sha256: c0a30ac74eba66ea76a4f0a39acc7833f5ed783a632ca3bb6665b2d81aabd2fb md5: 48f4330bfcd959c3cfb704d424903c82 @@ -10180,75 +10247,79 @@ packages: license_family: BSD size: 6172959 timestamp: 1735577517299 -- conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.3-hca62329_0.conda - sha256: 4b483d963686bcc1fbe225c41f48a2ec206bc97e1d9d1c16fac2d6b5709240b8 - md5: e99091d245425cf089b814107b40c349 +- conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda + sha256: 96bbd009b3d7f82e9af37e980af9285431ecd5c6f098a0f1afe0021d8d02b88a + md5: e4fdd13a67d5b30459463e925b9e7e1f depends: + - libgcc >=13 - __glibc >=2.17,<3.0.a0 - - _openmp_mutex >=4.5 - - lcms2 >=2.16,<3.0a0 - - libgcc >=13 - - libjpeg-turbo >=3.0.0,<4.0a0 - libstdcxx >=13 + - libgcc >=13 + - _openmp_mutex >=4.5 + - libjpeg-turbo >=3.0.0,<4.0a0 - libzlib >=1.3.1,<2.0a0 + - jasper >=4.2.5,<5.0a0 + - lcms2 >=2.17,<3.0a0 license: LGPL-2.1-only - license_family: LGPL - size: 640729 - timestamp: 1726766159397 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.3-hf20323b_0.conda - sha256: 94c4fe562d9f962f89e28140e04fe53868e2886e12434b834f62de9a4f7970df - md5: 885621c9ba4186c2b88c5033d301bb72 + size: 704665 + timestamp: 1744641234631 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.4-h74ffddf_0.conda + sha256: 98360c0fce61f693afad344b55835ca9a8c8344434511676623c5c642ad67d96 + md5: 1723d3fd7b6ed1fdefd4f20e0d3c3079 depends: - - _openmp_mutex >=4.5 - - lcms2 >=2.16,<3.0a0 - - libgcc >=13 - - libjpeg-turbo >=3.0.0,<4.0a0 - libstdcxx >=13 + - libgcc >=13 + - _openmp_mutex >=4.5 + - libjpeg-turbo >=3.0.0,<4.0a0 + - jasper >=4.2.5,<5.0a0 - libzlib >=1.3.1,<2.0a0 + - lcms2 >=2.17,<3.0a0 license: LGPL-2.1-only - license_family: LGPL - size: 650078 - timestamp: 1726766243482 -- conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.3-h8f7feda_0.conda - sha256: 6b1cebffeedbc8d3ccf203b71e488361893060ac0172c1e8812ef1fda031484d - md5: ea73d5e8ffd5f89389303c681d48ea2b + size: 742040 + timestamp: 1744641244231 +- conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.4-h0ade9e5_0.conda + sha256: 8a8927014c5e0d3ea4feae4d17cab90f6d256268c4323dc0d99762c1f00b5fe2 + md5: bb165a63c4ccb98777a0c2f35ba646af depends: - __osx >=10.13 - - lcms2 >=2.16,<3.0a0 - - libcxx >=17 + - libcxx >=18 + - lcms2 >=2.17,<3.0a0 + - jasper >=4.2.5,<5.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - libzlib >=1.3.1,<2.0a0 license: LGPL-2.1-only - license_family: LGPL - size: 581665 - timestamp: 1726766248079 -- conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.3-hee66ff5_0.conda - sha256: 0a3d149cdd05eda13ff7bf99ed55cd52e26ae641d8bdb52386e440e118a8eb87 - md5: d2072e65b6784cf0b6000ac59f03640d + size: 663777 + timestamp: 1744641301951 +- conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.4-h62a31ad_0.conda + sha256: 1d10b30d4624fef1803d7b1be46741370f04aaa1a39bef7b8c79c59f25a2de15 + md5: 5c79a1ecaf9cfdfd396aed641006857f depends: + - libcxx >=18 - __osx >=11.0 - - lcms2 >=2.16,<3.0a0 - - libcxx >=17 - - libjpeg-turbo >=3.0.0,<4.0a0 + - lcms2 >=2.17,<3.0a0 + - jasper >=4.2.5,<5.0a0 - libzlib >=1.3.1,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 license: LGPL-2.1-only - license_family: LGPL - size: 582358 - timestamp: 1726766236233 -- conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.3-h0f5434b_0.conda - sha256: 0d2610b684cd8712bdcf0873b17b1fa3d7ce1105550264b7fd91b184a00d1a28 - md5: 075f3d5fe250279afc5d9b221d71f84b + size: 655308 + timestamp: 1744641332489 +- conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.4-h866491b_0.conda + sha256: db2cd8a48e5d329eb6a324063daa63eced3761ea42badaed5c685f468695fbd3 + md5: e5d4bf6388c45045a73d5e58e1364769 depends: - - lcms2 >=2.16,<3.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - libzlib >=1.3.1,<2.0a0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - lcms2 >=2.17,<3.0a0 + - jasper >=4.2.5,<5.0a0 license: LGPL-2.1-only - license_family: LGPL - size: 489267 - timestamp: 1726766863050 + size: 536650 + timestamp: 1744641254166 - conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda sha256: 475013475a3209c24a82f9e80c545d56ccca2fa04df85952852f3d73caa38ff9 md5: b9846db0abffb09847e2cb0fec4b4db6 @@ -10261,7 +10332,7 @@ packages: - libgcc >=13 - libglib >=2.82.2,<3.0a0 - libpng >=1.6.44,<1.7.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - pango >=1.54.0,<2.0a0 constrains: - __glibc >=2.17 @@ -10279,7 +10350,7 @@ packages: - libgcc >=13 - libglib >=2.82.2,<3.0a0 - libpng >=1.6.44,<1.7.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - pango >=1.54.0,<2.0a0 constrains: - __glibc >=2.17 @@ -10294,7 +10365,7 @@ packages: - cairo >=1.18.4,<2.0a0 - gdk-pixbuf >=2.42.12,<3.0a0 - libglib >=2.84.0,<3.0a0 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - pango >=1.56.3,<2.0a0 constrains: - __osx >=10.13 @@ -10309,7 +10380,7 @@ packages: - cairo >=1.18.4,<2.0a0 - gdk-pixbuf >=2.42.12,<3.0a0 - libglib >=2.84.0,<3.0a0 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - pango >=1.56.3,<2.0a0 constrains: - __osx >=11.0 @@ -10323,7 +10394,7 @@ packages: - cairo >=1.18.4,<2.0a0 - gdk-pixbuf >=2.42.12,<3.0a0 - libglib >=2.84.0,<3.0a0 - - libxml2 >=2.13.7,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - pango >=1.56.3,<2.0a0 - ucrt >=10.0.20348.0 - vc >=14.3,<15 @@ -10506,6 +10577,16 @@ packages: license_family: GPL size: 3810779 timestamp: 1740241094774 +- conda: https://prefix.dev/conda-forge/win-64/libstdcxx-14.2.0-h904f734_2.conda + sha256: 77364c254c07abf0ddd3216325f52cd98e770cd56a13468148cef613b2318ac3 + md5: d4ed3b935046595e0876a53623803232 + depends: + - libgcc 14.2.0 h1383e82_2 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 4467105 + timestamp: 1740240742690 - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 md5: c75da67f045c2627f59e6fcb5f4e3a9b @@ -10991,6 +11072,17 @@ packages: license_family: BSD size: 273661 timestamp: 1734777665516 +- conda: https://prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 + md5: 08bfa5da6e242025304b206d152479ef + depends: + - ucrt + constrains: + - pthreads-win32 <0.0a0 + - msys2-conda-epoch <0.0a0 + license: MIT AND BSD-3-Clause-Clear + size: 35794 + timestamp: 1737099561703 - conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa md5: 92ed62436b625154323d40d5f2f11dd7 @@ -11040,19 +11132,20 @@ packages: license_family: MIT size: 323658 timestamp: 1727278733917 -- conda: https://prefix.dev/conda-forge/win-64/libxcb-1.16-h013a479_1.conda - sha256: abae56e12a4c62730b899fdfb82628a9ac171c4ce144fc9f34ae024957a82a0e - md5: f0b599acdc82d5bc7e3b105833e7c5c8 +- conda: https://prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 + md5: a69bbf778a462da324489976c84cfc8c depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - pthread-stubs + - ucrt >=10.0.20348.0 - xorg-libxau >=1.0.11,<2.0a0 - xorg-libxdmcp license: MIT license_family: MIT - size: 989459 - timestamp: 1724419883091 + size: 1208687 + timestamp: 1727279378819 - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c md5: 5aa797f8787fe7a17d1b0821485b5adc @@ -11077,7 +11170,7 @@ packages: - libgcc >=13 - libstdcxx >=13 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - xkeyboard-config - xorg-libxau >=1.0.12,<2.0a0 license: MIT/X11 Derivative @@ -11091,69 +11184,69 @@ packages: - libgcc >=13 - libstdcxx >=13 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - xkeyboard-config - xorg-libxau >=1.0.12,<2.0a0 license: MIT/X11 Derivative license_family: MIT size: 660274 timestamp: 1741762322077 -- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h8d12d68_0.conda - sha256: 98f0a11d6b52801daaeefd00bfb38078f439554d64d2e277d92f658faefac366 - md5: 109427e5576d0ce9c42257c2421b1680 +- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h4bc477f_1.conda + sha256: 01c471d9912c482297fd8e83afc193101ff4504c72361b6aec6d07f2fa379263 + md5: ad1f1f8238834cd3c88ceeaee8da444a depends: - __glibc >=2.17,<3.0.a0 - icu >=75.1,<76.0a0 - libgcc >=13 - libiconv >=1.18,<2.0a0 - - liblzma >=5.6.4,<6.0a0 + - liblzma >=5.8.1,<6.0a0 - libzlib >=1.3.1,<2.0a0 license: MIT license_family: MIT - size: 691755 - timestamp: 1743091084063 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.7-h2e0c361_0.conda - sha256: b0ec06948e94ef42e498b4a9ace3da673636a41d6a53c713194ac843cd989ad9 - md5: 745fbda3e667084d1fb00e64cdfeaff6 + size: 692101 + timestamp: 1743794568181 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.7-he060846_1.conda + sha256: 51cda57850353be717f821681cae12f796d56eae806a4c588e26d47f304f9164 + md5: b461618b5dafbc95c6f9492043cd991a depends: - icu >=75.1,<76.0a0 - libgcc >=13 - libiconv >=1.18,<2.0a0 - - liblzma >=5.6.4,<6.0a0 + - liblzma >=5.8.1,<6.0a0 - libzlib >=1.3.1,<2.0a0 license: MIT license_family: MIT - size: 734486 - timestamp: 1743091228481 -- conda: https://prefix.dev/conda-forge/osx-64/libxml2-2.13.7-hebb159f_0.conda - sha256: 21119df0a2267a9fc52d67bdf55e5449a2cdcc799865e2f90ab734fd61234ed8 - md5: 45786cf4067df4fbe9faf3d1c25d3acf + size: 735238 + timestamp: 1743794771554 +- conda: https://prefix.dev/conda-forge/osx-64/libxml2-2.13.7-h93c44a6_1.conda + sha256: f65c22d825ae7674dd5d1906052a6046cf50eebd1d5f03d6145a6b41c0d305b5 + md5: ac5c809731d4412fd1ccff49fae27c72 depends: - __osx >=10.13 - icu >=75.1,<76.0a0 - libiconv >=1.18,<2.0a0 - - liblzma >=5.6.4,<6.0a0 + - liblzma >=5.8.1,<6.0a0 - libzlib >=1.3.1,<2.0a0 license: MIT license_family: MIT - size: 609769 - timestamp: 1743091248758 -- conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.7-h178c5d8_0.conda - sha256: d3ddc9ae8a5474f16f213ca41b3eda394e1eb1253f3ac85d3c6c99adcfb226d8 - md5: aa838a099ba09429cb80cc876b032ac4 + size: 609618 + timestamp: 1743794752414 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.7-h52572c6_1.conda + sha256: 7afd5879a72e37f44a68b4af3e03f37fc1a310f041bf31fad2461d9a157e823b + md5: 522fcdaebf3bac06a7b5a78e0a89195b depends: - __osx >=11.0 - icu >=75.1,<76.0a0 - libiconv >=1.18,<2.0a0 - - liblzma >=5.6.4,<6.0a0 + - liblzma >=5.8.1,<6.0a0 - libzlib >=1.3.1,<2.0a0 license: MIT license_family: MIT - size: 582736 - timestamp: 1743091513375 -- conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.7-he286e8c_0.conda - sha256: 99182f93f1e7b678534df5f07ff94d7bf13a51386050f8fa9411fec764d0f39f - md5: aec4cf455e4c6cc2644abb348de7ff20 + size: 583561 + timestamp: 1743794674233 +- conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac + md5: c14ff7f05e57489df9244917d2b55763 depends: - libiconv >=1.18,<2.0a0 - libzlib >=1.3.1,<2.0a0 @@ -11162,14 +11255,14 @@ packages: - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 1513490 - timestamp: 1743091551681 + size: 1513740 + timestamp: 1743795035107 - conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda sha256: 684e9b67ef7b9ca0ca993762eeb39705ec58e2e7f958555c758da7ef416db9f3 md5: e71f31f8cfb0a91439f2086fc8aa0461 depends: - libgcc-ng >=12 - - libxml2 >=2.12.1,<3.0.0a0 + - libxml2 >=2.12.1,<2.14.0a0 license: MIT license_family: MIT size: 254297 @@ -11179,7 +11272,7 @@ packages: md5: 13e1d3f9188e85c6d59a98651aced002 depends: - libgcc-ng >=12 - - libxml2 >=2.12.1,<3.0.0a0 + - libxml2 >=2.12.1,<2.14.0a0 license: MIT license_family: MIT size: 260979 @@ -11188,7 +11281,7 @@ packages: sha256: decfc5614a10231a17543b7366616fb2d88c14be6dd9dd5ecde63aa9a5acfb9e md5: a6e0cec6b3517ffc6b5d36a920fc9312 depends: - - libxml2 >=2.12.1,<3.0.0a0 + - libxml2 >=2.12.1,<2.14.0a0 license: MIT license_family: MIT size: 231368 @@ -11197,7 +11290,7 @@ packages: sha256: 2f1d99ef3fb960f23a63f06cf65ee621a5594a8b4616f35d9805be44617a92af md5: 560c9cacc33e927f55b998eaa0cb1732 depends: - - libxml2 >=2.12.1,<3.0.0a0 + - libxml2 >=2.12.1,<2.14.0a0 license: MIT license_family: MIT size: 225705 @@ -11206,7 +11299,7 @@ packages: sha256: 6e3d99466d2076c35e7ac8dcdfe604da3d593f55b74a5b8e96c2b2ff63c247aa md5: 279ee338c9b34871d578cb3c7aa68f70 depends: - - libxml2 >=2.12.1,<3.0.0a0 + - libxml2 >=2.12.1,<2.14.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 @@ -11335,28 +11428,28 @@ packages: license_family: Other size: 55476 timestamp: 1727963768015 -- conda: https://prefix.dev/conda-forge/osx-64/llvm-openmp-20.1.1-ha54dae1_1.conda - sha256: 2aeb63d771120fc7a8129ca81417c07cea09e3a0f47e097f1967a9c24888f5cf - md5: a1c6289fb8ae152b8cb53a535639c2c7 +- conda: https://prefix.dev/conda-forge/osx-64/llvm-openmp-20.1.2-ha54dae1_1.conda + sha256: 01dfbc83bfba8d674f574908d86bc3ffad12e42fa4f16bd71579c6bc2b7f6153 + md5: 0919db81cb42375dd9f2ab1ec032af94 depends: - __osx >=10.13 constrains: - - openmp 20.1.1|20.1.1.* + - openmp 20.1.2|20.1.2.* license: Apache-2.0 WITH LLVM-exception license_family: APACHE - size: 306748 - timestamp: 1742533059358 -- conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.1-hdb05f8b_1.conda - sha256: ae57041a588cd190cb55b602c1ed0ef3604ce28d3891515386a85693edd3c175 - md5: 97236e94c3a82367c5fe3a90557e6207 + size: 306742 + timestamp: 1744575941356 +- conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.2-hdb05f8b_1.conda + sha256: 5c00ea9e47e94d59513d65c76185891ae0da7fa6a233b3430c93cc5b7ba5ef6e + md5: a4f336d84b7ad192c0c8a6b345ff7da9 depends: - __osx >=11.0 constrains: - - openmp 20.1.1|20.1.1.* + - openmp 20.1.2|20.1.2.* license: Apache-2.0 WITH LLVM-exception license_family: APACHE - size: 282105 - timestamp: 1742533199558 + size: 282598 + timestamp: 1744575970264 - conda: https://prefix.dev/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_2.conda sha256: e5477e3fa7b4ef070e9ecae619cfc5845e14e3cdac8fbb2d158a03d51f967bef md5: fddd3092f921be8e01b18f2a0266d98f @@ -11410,66 +11503,66 @@ packages: license_family: MIT size: 123536 timestamp: 1725349948294 -- conda: https://prefix.dev/conda-forge/linux-64/lxml-5.3.1-py312he28fd5a_0.conda - sha256: 4f3a78b59890f2175a381d9ae5e74b4523aea23daaa01cafbb150456bc8b857c - md5: 52d16dd592060d4b2fa9ad325e0c1f90 +- conda: https://prefix.dev/conda-forge/linux-64/lxml-5.3.2-py312h68d7fa5_0.conda + sha256: c979cd486d6a126d96f5a1a51c930c7326598f57f64b20e3c36e9f0a3e325991 + md5: d18111b2b7611a01df38155dce88ac7a depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - libzlib >=1.3.1,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause and MIT-CMU - size: 1403423 - timestamp: 1739211901003 -- conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-5.3.1-py312h1ce91a6_0.conda - sha256: 3baea907da0c3e5e790c37b33076f8b6710f7d1aa3f229ce7961e058fe1b5e3c - md5: 0fe03396056920d90be316208305e9fe + size: 1403622 + timestamp: 1743977239322 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-5.3.2-py312haa63388_0.conda + sha256: 8673b954063e6268aee44756b519fc652a3983868927a0648036b7c0d58f2e2b + md5: bdc1b59539a13c02886e50e00c2ef46e depends: - libgcc >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - libzlib >=1.3.1,<2.0a0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause and MIT-CMU - size: 1329503 - timestamp: 1739211881865 -- conda: https://prefix.dev/conda-forge/osx-64/lxml-5.3.1-py312h91b2f42_0.conda - sha256: 9d8caf0b13e42a214f47f21e4a4696a7de37e81b182fb88c0e922b5940fb716e - md5: a1b3a0206fc6c434fadc25d818002b82 + size: 1329786 + timestamp: 1743977247774 +- conda: https://prefix.dev/conda-forge/osx-64/lxml-5.3.2-py312h3ce7cfc_0.conda + sha256: 47da0c7a4d89252b657535adb55ae21733601a0e9af6670104fd91586f20cd30 + md5: 87150581a1fe9ccbd5f8656e6cabe9d0 depends: - __osx >=10.13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - libzlib >=1.3.1,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause and MIT-CMU - size: 1236870 - timestamp: 1739212062656 -- conda: https://prefix.dev/conda-forge/osx-arm64/lxml-5.3.1-py312h9535dd2_0.conda - sha256: b899871ecf3f331e3047295897809758a02a144e4118f1378ca443c62772cd2c - md5: f9d4307bbe7d394ac3634fe85a4c0e94 + size: 1240748 + timestamp: 1743977301513 +- conda: https://prefix.dev/conda-forge/osx-arm64/lxml-5.3.2-py312hc2c121e_0.conda + sha256: 142c21f6a436643dc919d786d821c7b6a772d2aaa707d2195bd6189d12387324 + md5: 2a6c2741a8335697bb908470d82d7a4e depends: - __osx >=11.0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - libzlib >=1.3.1,<2.0a0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause and MIT-CMU - size: 1200955 - timestamp: 1739212041952 -- conda: https://prefix.dev/conda-forge/win-64/lxml-5.3.1-py312h53bce91_0.conda - sha256: 78519f3a92e8e284792b9b13d4240643b47b3c1902b2288e2a4dfeb83f78e787 - md5: c86f153c26b4d6235de9e19eafc01ce8 + size: 1202342 + timestamp: 1743977257234 +- conda: https://prefix.dev/conda-forge/win-64/lxml-5.3.2-py312hef2e38f_0.conda + sha256: 07db65cb1317c12a125e243f995ee98e58bfc4fa7aefc10ddd0e3ca867ad1da6 + md5: 2ba6ad0963b2df9d76d42924f07ace6d depends: - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - libzlib >=1.3.1,<2.0a0 - python >=3.12,<3.13.0a0 @@ -11478,8 +11571,8 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: BSD-3-Clause and MIT-CMU - size: 1045295 - timestamp: 1739212451593 + size: 1047611 + timestamp: 1743977612532 - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f md5: 318b08df404f9c9be5712aaa5a6f0bb0 @@ -11529,53 +11622,6 @@ packages: license_family: BSD size: 134235 timestamp: 1674728465431 -- conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 - sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 - md5: 066552ac6b907ec6d72c0ddab29050dc - depends: - - m2w64-gcc-libs-core - - msys2-conda-epoch ==20160418 - license: GPL, LGPL, FDL, custom - size: 350687 - timestamp: 1608163451316 -- conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 - sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa - md5: fe759119b8b3bfa720b8762c6fdc35de - depends: - - m2w64-gcc-libgfortran - - m2w64-gcc-libs-core - - m2w64-gmp - - m2w64-libwinpthread-git - - msys2-conda-epoch ==20160418 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 532390 - timestamp: 1608163512830 -- conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 - sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 - md5: 4289d80fb4d272f1f3b56cfe87ac90bd - depends: - - m2w64-gmp - - m2w64-libwinpthread-git - - msys2-conda-epoch ==20160418 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 219240 - timestamp: 1608163481341 -- conda: https://prefix.dev/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 - sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 - md5: 53a1c73e1e3d185516d7e3af177596d9 - depends: - - msys2-conda-epoch ==20160418 - license: LGPL3 - size: 743501 - timestamp: 1608163782057 -- conda: https://prefix.dev/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 - sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 - md5: 774130a326dee16f1ceb05cc687ee4f0 - depends: - - msys2-conda-epoch ==20160418 - license: MIT, BSD - size: 31928 - timestamp: 1608166099896 - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda sha256: 647d36be0ce8a64ff918ff529260bb810804fa00f47131a61f6d3ff3a927a8ab md5: 4e509c8060b79794ca29cc098a4db38d @@ -11960,14 +12006,9 @@ packages: license_family: Apache size: 88169 timestamp: 1725975418157 -- conda: https://prefix.dev/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 - sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 - md5: b0309b72560df66f71a9d5e34a5efdfa - size: 3227 - timestamp: 1608166968312 -- conda: https://prefix.dev/conda-forge/linux-64/multidict-6.2.0-py312h178313f_0.conda - sha256: 1694f11c4a14608de65bcca79d5cb0ef8836fda2c4ee0d4260f0ee09951f8aa0 - md5: 68196d82fc265392f199e48a7c05943a +- conda: https://prefix.dev/conda-forge/linux-64/multidict-6.3.2-py312h178313f_0.conda + sha256: acf622231b20b1d1508730bdf9905b57922b63ef8ee9297a3845488ad4b945a9 + md5: e5e15e559d786720ba1301005b36445a depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -11975,11 +12016,11 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 66078 - timestamp: 1742308274926 -- conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.2.0-py312hcc812fe_0.conda - sha256: 80b29b3d968daa158c385c3a203e76e851e395aa0284842ea580af08f943fe91 - md5: d03846a863f51a0fcffb9ea8d312195d + size: 88495 + timestamp: 1743843584119 +- conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.3.2-py312hcc812fe_0.conda + sha256: 9e7f078925560b40f75b31d3ca89d58ba129b58671119d819286bfed60302920 + md5: b8c175028337ed3f1c887657ef467cf4 depends: - libgcc >=13 - python >=3.12,<3.13.0a0 @@ -11987,22 +12028,22 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 67487 - timestamp: 1742308299215 -- conda: https://prefix.dev/conda-forge/osx-64/multidict-6.2.0-py312h6f3313d_0.conda - sha256: c89a7c9d241021cb4f9c77461cb9a849fab9fd4e759262a572f784fd3ca73534 - md5: c2ce12404fce37a6934fdcb2259c65a6 + size: 89050 + timestamp: 1743843612357 +- conda: https://prefix.dev/conda-forge/osx-64/multidict-6.3.2-py312h6f3313d_0.conda + sha256: b3b091882b0d7f06753a5e8540ec9fcbacb511834c83e6b378a59937c27fa486 + md5: 2fa3a08e600156ab6f794b0f115ec114 depends: - __osx >=10.13 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 60441 - timestamp: 1742308331162 -- conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.2.0-py312hdb8e49c_0.conda - sha256: edeb77b6113a3679b838df3804e6f975665d0999d7eee290778e6c1e93d215a4 - md5: 1d1bbdbb61c436e00e5f7f8de1de6b34 + size: 73967 + timestamp: 1743843781701 +- conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.3.2-py312hdb8e49c_0.conda + sha256: abe38f4a62c82e3b7c951816368b23090596424beb924d1385bf430cefce40a1 + md5: 43b2babdf0584fe4ae3c27ac85c92196 depends: - __osx >=11.0 - python >=3.12,<3.13.0a0 @@ -12010,11 +12051,11 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 60798 - timestamp: 1742308452071 -- conda: https://prefix.dev/conda-forge/win-64/multidict-6.2.0-py312h31fea79_0.conda - sha256: 19439c90b05209b4cb0541d0cd489555dde09678a993c47133e24fb2b0758c73 - md5: c9e19e911ea31b637e5fbde4bc74ac65 + size: 73030 + timestamp: 1743843664388 +- conda: https://prefix.dev/conda-forge/win-64/multidict-6.3.2-py312h31fea79_0.conda + sha256: 28bebf0e103cb68d86e05547fe9d6526f643d4f4e58d26265c4704b54a9ab6d5 + md5: 24d0aef9b48233f61250db93b1e77093 depends: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -12023,8 +12064,8 @@ packages: - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: APACHE - size: 61006 - timestamp: 1742308648056 + size: 75338 + timestamp: 1743844057781 - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 md5: 2ba8498c1018c1e9c61eb99b973dfe19 @@ -12034,9 +12075,9 @@ packages: license_family: Apache size: 12452 timestamp: 1600387789153 -- conda: https://prefix.dev/conda-forge/linux-64/mysql-common-9.0.1-h266115a_5.conda - sha256: df9e895e8933ade7d362ab42bfe97e52a6b93d4d30df517324d60f6f35da1540 - md5: 6cf2f0c19b0b7ff3d5349c9826c26a9e +- conda: https://prefix.dev/conda-forge/linux-64/mysql-common-9.0.1-h266115a_6.conda + sha256: 9c2e3f9e9883e4b8d7e9e6abf7b235dc00bdcd5ef66640a360464a9f5756294d + md5: 94116b69829e90b72d566e64421e1bff depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -12044,98 +12085,98 @@ packages: - openssl >=3.4.1,<4.0a0 license: GPL-2.0-or-later license_family: GPL - size: 633439 - timestamp: 1741896463089 -- conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_5.conda - sha256: 0dfc95df883b6dfd7f8d97135c682b8197b07d209c3b7be9a9178c64a9ce1617 - md5: bdc934577bc277924815fbfcba632822 + size: 616215 + timestamp: 1744124836761 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_6.conda + sha256: 303c94c5ba1e5cb972d2e8d3004355fac9acbbe5c3cc56d7c8f7433a316476d1 + md5: 8da887abc26a923d66d362b9a7bea2f3 depends: - libgcc >=13 - libstdcxx >=13 - openssl >=3.4.1,<4.0a0 license: GPL-2.0-or-later license_family: GPL - size: 609080 - timestamp: 1741896209529 -- conda: https://prefix.dev/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_5.conda - sha256: 25a87d76d2c4ddeb74cd1cc2a2b06ec6ab8c6025fdd918a7af9619c337889aaf - md5: fe53314dfd07e65342c55a9495080d2b + size: 619078 + timestamp: 1744126595829 +- conda: https://prefix.dev/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_6.conda + sha256: b7cd8f8a1300f8fea749a79bbdb4eecfe2b54ba52ecb5f1b98033a3789413d8c + md5: 51afb7902586599e714ae38909057d05 depends: - __osx >=10.14 - libcxx >=18 - openssl >=3.4.1,<4.0a0 license: GPL-2.0-or-later license_family: GPL - size: 656123 - timestamp: 1741893586149 -- conda: https://prefix.dev/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_5.conda - sha256: 762824979cb4ebe57e8154bbc910391c8ee2f111e9f2d38fb974ff600c27dc2b - md5: 0b7348c3e06689bdff9dfdf9e9caaab5 + size: 660853 + timestamp: 1744124290960 +- conda: https://prefix.dev/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_6.conda + sha256: cfc934b3dcc5e9ded7c84b036042a8f28a8e498aaaeba22e5b946daf3a1618c6 + md5: d345895d6dcdfad42f267fe647d066a9 depends: - __osx >=11.0 - libcxx >=18 - openssl >=3.4.1,<4.0a0 license: GPL-2.0-or-later license_family: GPL - size: 619475 - timestamp: 1741894856085 -- conda: https://prefix.dev/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_5.conda - sha256: f37303d2fb453bbc47d1e09d56ef06b20570d0eaf375115707ffc1e609c9b508 - md5: d13932a2a61de7c0fb7864b592034a6e + size: 619690 + timestamp: 1744124942215 +- conda: https://prefix.dev/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_6.conda + sha256: 274467a602944d12722f757f660ad034de6f5f5d7d2ea1b913ef6fd836c1b8ce + md5: 9802ae6d20982f42c0f5d69008988763 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - mysql-common 9.0.1 h266115a_5 + - mysql-common 9.0.1 h266115a_6 - openssl >=3.4.1,<4.0a0 - zstd >=1.5.7,<1.6.0a0 license: GPL-2.0-or-later license_family: GPL - size: 1371634 - timestamp: 1741896565103 -- conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_5.conda - sha256: 52f62bbb2f6aeb5b578edbee6e64bdb7e734fdf6a65c913adecc4c84298dfc9d - md5: bbee9b7b1fb37bd1d9c5df0fc50fda84 + size: 1369369 + timestamp: 1744124916632 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_6.conda + sha256: 0974c7a476c87b6be12f7cef288f500f9613220f3d35c13794e363611f7d259a + md5: eadcd0a723240162ec6303917e4fa2a2 depends: - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - mysql-common 9.0.1 h3f5c77f_5 + - mysql-common 9.0.1 h3f5c77f_6 - openssl >=3.4.1,<4.0a0 - zstd >=1.5.7,<1.6.0a0 license: GPL-2.0-or-later license_family: GPL - size: 1409306 - timestamp: 1741896294221 -- conda: https://prefix.dev/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_5.conda - sha256: 7006fcb12fb8149b08006cfa3908e07f434783efcb01ba4136c7878fccebbaf9 - md5: 39a82f0f33b6ce7e60ff0f19a767005a + size: 1409448 + timestamp: 1744126667493 +- conda: https://prefix.dev/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_6.conda + sha256: 472a3dd2d153b536f252798fbc5930ba594614946b1d96588c8e7fd844e87371 + md5: d3dfd184067909e2e59a1b1f62d5e99e depends: - __osx >=10.14 - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - mysql-common 9.0.1 hd00b0ec_5 + - mysql-common 9.0.1 hd00b0ec_6 - openssl >=3.4.1,<4.0a0 - zstd >=1.5.7,<1.6.0a0 license: GPL-2.0-or-later license_family: GPL - size: 1328193 - timestamp: 1741893794058 -- conda: https://prefix.dev/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_5.conda - sha256: 2c0587da1bacaa14cbc01850817a51be571b8b878bcc7f4cec6db8cd9dca0f52 - md5: f0eec7f32614b20d59a0a663219b15c2 + size: 1331204 + timestamp: 1744124415736 +- conda: https://prefix.dev/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_6.conda + sha256: d9cff9e8e3b58b0a798ee690fa651a0342e6cf1175028a74b6450273cdf3e7ac + md5: 684d684e9c184b2c4dda21eefe9d8694 depends: - __osx >=11.0 - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - mysql-common 9.0.1 hd7719f6_5 + - mysql-common 9.0.1 hd7719f6_6 - openssl >=3.4.1,<4.0a0 - zstd >=1.5.7,<1.6.0a0 license: GPL-2.0-or-later license_family: GPL - size: 1352032 - timestamp: 1741895112685 + size: 1352817 + timestamp: 1744125034041 - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 md5: 47e340acb35de30501a76c7c799c41d7 @@ -12178,58 +12219,41 @@ packages: license_family: PUBLIC-DOMAIN size: 11134 timestamp: 1579641731749 -- conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.11.3-he02047a_1.conda - sha256: ce4bcced4f8eea71b7cac8bc3daac097abf7a5792f278cd811dedada199500c1 - md5: e46f7ac4917215b49df2ea09a694a3fa - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 +- conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda + sha256: e2fc624d6f9b2f1b695b6be6b905844613e813aa180520e73365062683fe7b49 + md5: d76872d096d063e226482c99337209dc license: MIT license_family: MIT - size: 122743 - timestamp: 1723652407663 -- conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.11.3-h0a1ffab_1.conda - sha256: c90b1f11fc337d90a9e4c5aeeacac1418c5ba6a195097086566d38bb2ecf0f24 - md5: f2bd10ff23ab5c87327439c4499b3f3e - depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + size: 135906 + timestamp: 1744445169928 +- conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h5ad3122_0.conda + sha256: ba0e4e4f0b0b7fa1f7b7e3abe95823daf915d73ddd976e73a5f9ade2060760dd + md5: 92016ee90e17c57a1d2f47333d4bc92f license: MIT license_family: MIT - size: 122755 - timestamp: 1723652622631 -- conda: https://prefix.dev/conda-forge/osx-64/nlohmann_json-3.11.3-hf036a51_1.conda - sha256: 41b1aa2a67654917c9c32a5f0111970b11cfce49ed57cf44bba4aefdcd59e54b - md5: 00c3efa95b3a010ee85bc36aac6ab2f6 - depends: - - __osx >=10.13 - - libcxx >=16 + size: 136733 + timestamp: 1744445179648 +- conda: https://prefix.dev/conda-forge/osx-64/nlohmann_json-3.12.0-h92383a6_0.conda + sha256: b3bcb65c023d2e9f5e5e809687cfede587cc71ea9f037c45b1f87727003583db + md5: 9334c0f8d63ac55ff03e3b9cef9e371c license: MIT license_family: MIT - size: 122773 - timestamp: 1723652497933 -- conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.11.3-h00cdb27_1.conda - sha256: 3f4e6a4fa074bb297855f8111ab974dab6d9f98b7d4317d4dd46f8687ee2363b - md5: d2dee849c806430eee64d3acc98ce090 - depends: - - __osx >=11.0 - - libcxx >=16 + size: 136237 + timestamp: 1744445192082 +- conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.12.0-ha1acc90_0.conda + sha256: 6e689213c8d5e5f65ef426c0fcfb41b056e4c4d90fc020631cfddb6c87d5d6c9 + md5: c74975897efab6cdc7f5ac5a69cca2f3 license: MIT license_family: MIT - size: 123250 - timestamp: 1723652704997 -- conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.11.3-he0c23c2_1.conda - sha256: 106af14431772a6bc659e8d5a3bb1930cf1010b85e0e7eca99ecd3e556e91470 - md5: 340cbb4ab78c90cd9d08f826ad22aed2 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + size: 136487 + timestamp: 1744445244122 +- conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.12.0-he0c23c2_0.conda + sha256: 046a033594e87705de4edab215ceb567ea24e205fbd058d3fbfd7055b8a80fa4 + md5: 401617c1ad869b46966165aba18466fd license: MIT license_family: MIT - size: 124255 - timestamp: 1723652081336 + size: 134432 + timestamp: 1744445192270 - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda sha256: b785c3daf3c6038680c2bb93ebc1aeadca076dcc127ee0797359df67e635fd26 md5: 59b5eb8b88b1c63db676a498767c1267 @@ -12418,17 +12442,17 @@ packages: license_family: LGPL size: 24824977 timestamp: 1729330486797 -- conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda - sha256: 96ddd13054032fabd54636f634d50bc74d10d8578bc946405c429b2d895db6f2 - md5: 2e8d2b469559d6b2cb6fd4b34f9c8d7f +- conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda + sha256: 2254dae821b286fb57c61895f2b40e3571a070910fdab79a948ff703e1ea807b + md5: 56f8947aa9d5cf37b0b3d43b83f34192 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - opencl-headers >=2024.10.24 license: BSD-2-Clause license_family: BSD - size: 94934 - timestamp: 1732915114536 + size: 106742 + timestamp: 1743700382939 - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda sha256: 8b88dc1fc495cf9b4d72cd10e7e50f981e3d5cbb654b6f4ea306274c197b95a9 md5: 8f60e66ea748ad9ffd0a8e9d353d3a7d @@ -12869,50 +12893,50 @@ packages: license_family: BSD size: 842504 timestamp: 1732674565486 -- conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda - sha256: cbf62df3c79a5c2d113247ddea5658e9ff3697b6e741c210656e239ecaf1768f - md5: 41adf927e746dc75ecf0ef841c454e48 +- conda: https://prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c + md5: bb539841f2a3fde210f387d00ed4bb9d depends: - __glibc >=2.17,<3.0.a0 - ca-certificates - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 2939306 - timestamp: 1739301879343 -- conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda - sha256: d80b52b56b2206053968270069616868cbeb289ef855cf1584b1bb0fef61b37c - md5: 09036190605c57eaecf01218e0e9542d + size: 3121673 + timestamp: 1744132167438 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.5.0-hd08dc88_0.conda + sha256: 07854dcfcddc13b5614202c47c825f57e93e826ffee194ee435b3cf75cfe5853 + md5: 26af4dcecaf373c31ae91f403ae98259 depends: - ca-certificates - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 3476570 - timestamp: 1739303256089 -- conda: https://prefix.dev/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda - sha256: 505a46671dab5d66df8e684f99a9ae735a607816b12810b572d63caa512224df - md5: a7d63f8e7ab23f71327ea6d27e2d5eae + size: 3641486 + timestamp: 1744134183977 +- conda: https://prefix.dev/conda-forge/osx-64/openssl-3.5.0-hc426f3f_0.conda + sha256: 7ee137b67f2de89d203e5ac2ebffd6d42252700005bf6af2bbf3dc11a9dfedbd + md5: e06e13c34056b6334a7a1188b0f4c83c depends: - __osx >=10.13 - ca-certificates license: Apache-2.0 license_family: Apache - size: 2591479 - timestamp: 1739302628009 -- conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda - sha256: 4f8e2389e1b711b44182a075516d02c80fa7a3a7e25a71ff1b5ace9eae57a17a - md5: 75f9f0c7b1740017e2db83a53ab9a28e + size: 2737547 + timestamp: 1744140967264 +- conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.0-h81ee809_0.conda + sha256: 53f825acb8d3e13bdad5c869f6dc7df931941450eea7f6473b955b0aaea1a399 + md5: 3d2936da7e240d24c656138e07fa2502 depends: - __osx >=11.0 - ca-certificates license: Apache-2.0 license_family: Apache - size: 2934522 - timestamp: 1739301896733 -- conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda - sha256: 56dcc2b4430bfc1724e32661c34b71ae33a23a14149866fc5645361cfd3b3a6a - md5: 0730f8094f7088592594f9bf3ae62b3f + size: 3067649 + timestamp: 1744132084304 +- conda: https://prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 + md5: 4ea7db75035eb8c13fa680bb90171e08 depends: - ca-certificates - ucrt >=10.0.20348.0 @@ -12920,8 +12944,8 @@ packages: - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: Apache - size: 8515197 - timestamp: 1739304103653 + size: 8999138 + timestamp: 1744135594688 - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa @@ -12931,9 +12955,9 @@ packages: license_family: APACHE size: 60164 timestamp: 1733203368787 -- conda: https://prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda - sha256: ad275a83bfebfa8a8fee9b0569aaf6f513ada6a246b2f5d5b85903d8ca61887e - md5: 8bce4f6caaf8c5448c7ac86d87e26b4b +- conda: https://prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_3.conda + sha256: b0bed36b95757bbd269d30b2367536b802158bdf7947800ee7ae55089cfa8b9c + md5: 2979458c23c7755683a0598fb33e7666 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -12941,17 +12965,49 @@ packages: - numpy >=1.19,<3 - numpy >=1.22.4 - python >=3.12,<3.13.0a0 - - python-dateutil >=2.8.1 - - python-tzdata >=2022a + - python-dateutil >=2.8.2 + - python-tzdata >=2022.7 - python_abi 3.12.* *_cp312 - - pytz >=2020.1,<2024.2 + - pytz >=2020.1 + constrains: + - tabulate >=0.9.0 + - pytables >=3.8.0 + - html5lib >=1.1 + - lxml >=4.9.2 + - gcsfs >=2022.11.0 + - odfpy >=1.4.1 + - numexpr >=2.8.4 + - psycopg2 >=2.9.6 + - fsspec >=2022.11.0 + - qtpy >=2.3.0 + - tzdata >=2022.7 + - pyarrow >=10.0.1 + - pyqt5 >=5.15.9 + - xlrd >=2.0.1 + - sqlalchemy >=2.0.0 + - xarray >=2022.12.0 + - scipy >=1.10.0 + - fastparquet >=2022.12.0 + - pyreadstat >=1.2.0 + - matplotlib >=3.6.3 + - bottleneck >=1.3.6 + - s3fs >=2022.11.0 + - zstandard >=0.19.0 + - openpyxl >=3.1.0 + - blosc >=1.21.3 + - beautifulsoup4 >=4.11.2 + - pandas-gbq >=0.19.0 + - xlsxwriter >=3.0.5 + - numba >=0.56.4 + - pyxlsb >=1.0.10 + - python-calamine >=0.1.7 license: BSD-3-Clause license_family: BSD - size: 15436913 - timestamp: 1726879054912 -- conda: https://prefix.dev/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_2.conda - sha256: a34b10077de97eea72c81cb96e3ddc7d48320c0fc7d9b28ba8d9d2bead1d8297 - md5: 39a91ac336d350513de6aad56da5a920 + size: 15392153 + timestamp: 1744430987175 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_3.conda + sha256: d504f0b5a0fff79e6874144d57f790dab951b81cc4fd433a52055bd957139e34 + md5: e5edc6c944fc7a725208c7e49c91b466 depends: - libgcc >=13 - libstdcxx >=13 @@ -12959,93 +13015,195 @@ packages: - numpy >=1.22.4 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - - python-dateutil >=2.8.1 - - python-tzdata >=2022a + - python-dateutil >=2.8.2 + - python-tzdata >=2022.7 - python_abi 3.12.* *_cp312 - - pytz >=2020.1,<2024.2 + - pytz >=2020.1 constrains: - - fsspec >=2022.11.0 - - s3fs >=2022.11.0 - - fastparquet >=2022.12.0 - - pyreadstat >=1.2.0 - - qtpy >=2.3.0 - - scipy >=1.10.0 - - beautifulsoup4 >=4.11.2 - - gcsfs >=2022.11.0 - - numexpr >=2.8.4 - - sqlalchemy >=2.0.0 - - pyxlsb >=1.0.10 - - numba >=0.56.4 - - lxml >=4.9.2 - - matplotlib >=3.6.3 - - psycopg2 >=2.9.6 - tzdata >=2022.7 - - bottleneck >=1.3.6 - - xarray >=2022.12.0 - - xlsxwriter >=3.0.5 - zstandard >=0.19.0 - - blosc >=1.21.3 - - pytables >=3.8.0 - - openpyxl >=3.1.0 - - pyqt5 >=5.15.8 + - pyqt5 >=5.15.9 + - xlsxwriter >=3.0.5 + - gcsfs >=2022.11.0 + - xarray >=2022.12.0 - tabulate >=0.9.0 + - pyreadstat >=1.2.0 + - pyarrow >=10.0.1 + - python-calamine >=0.1.7 + - qtpy >=2.3.0 + - odfpy >=1.4.1 + - s3fs >=2022.11.0 + - numba >=0.56.4 + - fastparquet >=2022.12.0 + - pyxlsb >=1.0.10 + - openpyxl >=3.1.0 + - beautifulsoup4 >=4.11.2 + - xlrd >=2.0.1 + - psycopg2 >=2.9.6 + - fsspec >=2022.11.0 + - bottleneck >=1.3.6 + - pytables >=3.8.0 + - lxml >=4.9.2 + - scipy >=1.10.0 + - pandas-gbq >=0.19.0 + - numexpr >=2.8.4 + - matplotlib >=3.6.3 + - html5lib >=1.1 + - sqlalchemy >=2.0.0 + - blosc >=1.21.3 license: BSD-3-Clause license_family: BSD - size: 15162992 - timestamp: 1736811533875 -- conda: https://prefix.dev/conda-forge/osx-64/pandas-2.2.3-py312h98e817e_1.conda - sha256: 86c252ce5718b55129303f7d5c9a8664d8f0b23e303579142d09fcfd701e4fbe - md5: a7f7c58bbbfcdf820edb6e544555fe8f + size: 15100658 + timestamp: 1744431184270 +- conda: https://prefix.dev/conda-forge/osx-64/pandas-2.2.3-py312hec45ffd_3.conda + sha256: b9c98565d165384a53ecdb14c8ccd9144d672b58c81e057598d197c6be0aba98 + md5: 50fcc3531441b73cb493ef9b2604abde depends: - __osx >=10.13 - - libcxx >=17 + - libcxx >=18 - numpy >=1.19,<3 - numpy >=1.22.4 - python >=3.12,<3.13.0a0 - - python-dateutil >=2.8.1 - - python-tzdata >=2022a + - python-dateutil >=2.8.2 + - python-tzdata >=2022.7 - python_abi 3.12.* *_cp312 - - pytz >=2020.1,<2024.2 + - pytz >=2020.1 + constrains: + - sqlalchemy >=2.0.0 + - numba >=0.56.4 + - pyarrow >=10.0.1 + - python-calamine >=0.1.7 + - bottleneck >=1.3.6 + - tzdata >=2022.7 + - lxml >=4.9.2 + - gcsfs >=2022.11.0 + - html5lib >=1.1 + - pandas-gbq >=0.19.0 + - psycopg2 >=2.9.6 + - numexpr >=2.8.4 + - fastparquet >=2022.12.0 + - zstandard >=0.19.0 + - tabulate >=0.9.0 + - xarray >=2022.12.0 + - xlsxwriter >=3.0.5 + - odfpy >=1.4.1 + - pyreadstat >=1.2.0 + - openpyxl >=3.1.0 + - xlrd >=2.0.1 + - beautifulsoup4 >=4.11.2 + - s3fs >=2022.11.0 + - matplotlib >=3.6.3 + - scipy >=1.10.0 + - fsspec >=2022.11.0 + - pytables >=3.8.0 + - qtpy >=2.3.0 + - blosc >=1.21.3 + - pyqt5 >=5.15.9 + - pyxlsb >=1.0.10 license: BSD-3-Clause license_family: BSD - size: 14575645 - timestamp: 1726879062042 -- conda: https://prefix.dev/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda - sha256: ff0cb54b5d058c7987b4a0984066e893642d1865a7bb695294b6172e2fcdc457 - md5: c68bfa69e6086c381c74e16fd72613a8 + size: 14590879 + timestamp: 1744431018654 +- conda: https://prefix.dev/conda-forge/osx-arm64/pandas-2.2.3-py312hcb1e3ce_3.conda + sha256: 57beb95a8c5c3c35a87d0c5a6c3235fb3673618445e60be952a2502781534613 + md5: 63af5cccfa8b67825d8358b149e96466 depends: - __osx >=11.0 - - libcxx >=17 + - libcxx >=18 - numpy >=1.19,<3 - numpy >=1.22.4 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - - python-dateutil >=2.8.1 - - python-tzdata >=2022a + - python-dateutil >=2.8.2 + - python-tzdata >=2022.7 - python_abi 3.12.* *_cp312 - - pytz >=2020.1,<2024.2 + - pytz >=2020.1 + constrains: + - zstandard >=0.19.0 + - pyreadstat >=1.2.0 + - blosc >=1.21.3 + - fastparquet >=2022.12.0 + - qtpy >=2.3.0 + - openpyxl >=3.1.0 + - psycopg2 >=2.9.6 + - xlsxwriter >=3.0.5 + - lxml >=4.9.2 + - xarray >=2022.12.0 + - pyxlsb >=1.0.10 + - matplotlib >=3.6.3 + - python-calamine >=0.1.7 + - gcsfs >=2022.11.0 + - numba >=0.56.4 + - pandas-gbq >=0.19.0 + - odfpy >=1.4.1 + - fsspec >=2022.11.0 + - numexpr >=2.8.4 + - xlrd >=2.0.1 + - scipy >=1.10.0 + - bottleneck >=1.3.6 + - pyqt5 >=5.15.9 + - s3fs >=2022.11.0 + - html5lib >=1.1 + - pytables >=3.8.0 + - tabulate >=0.9.0 + - beautifulsoup4 >=4.11.2 + - pyarrow >=10.0.1 + - sqlalchemy >=2.0.0 + - tzdata >=2022.7 license: BSD-3-Clause license_family: BSD - size: 14470437 - timestamp: 1726878887799 -- conda: https://prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_1.conda - sha256: dfd30e665b1ced1b783ca303799e250d8acc40943bcefb3a9b2bb13c3b17911c - md5: bf6f01c03e0688523d4b5cff8fe8c977 + size: 14442730 + timestamp: 1744431003090 +- conda: https://prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_3.conda + sha256: 86fe04c5f0dcae3644e3d2d892ddf6760d89eeb8fe1a31ef30290ac5a6a9f125 + md5: 08b4650b022c9f3233d45f231fb9471f depends: - numpy >=1.19,<3 - numpy >=1.22.4 - python >=3.12,<3.13.0a0 - - python-dateutil >=2.8.1 - - python-tzdata >=2022a + - python-dateutil >=2.8.2 + - python-tzdata >=2022.7 - python_abi 3.12.* *_cp312 - - pytz >=2020.1,<2024.2 + - pytz >=2020.1 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 + constrains: + - pyxlsb >=1.0.10 + - psycopg2 >=2.9.6 + - bottleneck >=1.3.6 + - html5lib >=1.1 + - openpyxl >=3.1.0 + - python-calamine >=0.1.7 + - tabulate >=0.9.0 + - numexpr >=2.8.4 + - beautifulsoup4 >=4.11.2 + - odfpy >=1.4.1 + - gcsfs >=2022.11.0 + - pytables >=3.8.0 + - pyqt5 >=5.15.9 + - zstandard >=0.19.0 + - scipy >=1.10.0 + - xarray >=2022.12.0 + - blosc >=1.21.3 + - qtpy >=2.3.0 + - sqlalchemy >=2.0.0 + - pyreadstat >=1.2.0 + - fsspec >=2022.11.0 + - lxml >=4.9.2 + - xlrd >=2.0.1 + - tzdata >=2022.7 + - fastparquet >=2022.12.0 + - s3fs >=2022.11.0 + - xlsxwriter >=3.0.5 + - pandas-gbq >=0.19.0 + - numba >=0.56.4 + - pyarrow >=10.0.1 + - matplotlib >=3.6.3 license: BSD-3-Clause license_family: BSD - size: 14218658 - timestamp: 1726879426348 + size: 14150000 + timestamp: 1744431235710 - conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.3-h861ebed_0.conda sha256: 6bc073dc2759cb00bc9e94c7142acab58432245c6e04d1cef179e8afd3b58d6f md5: 6d853ca33bc46bce99ce16ccd83d0466 @@ -13372,18 +13530,18 @@ packages: license: HPND size: 42852329 timestamp: 1735930118976 -- conda: https://prefix.dev/conda-forge/win-64/pillow-10.4.0-py312h381445a_1.conda - sha256: 0b52e708ac4b72e6e1608de517cd4c8e6517dd525e23163a69bf73c7261399fc - md5: c57e54ae4acca720fb3a44bee93cb5b9 +- conda: https://prefix.dev/conda-forge/win-64/pillow-11.1.0-py312h078707f_0.conda + sha256: 1047f68dce73ae88369ee323b64b9a67c28f4fb3d15215344eb478a1454438bb + md5: e609a6cb41a83f7b67c326e51f008a79 depends: - freetype >=2.12.1,<3.0a0 - lcms2 >=2.16,<3.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - - libtiff >=4.6.0,<4.8.0a0 - - libwebp-base >=1.4.0,<2.0a0 - - libxcb >=1.16,<2.0.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openjpeg >=2.5.2,<3.0a0 + - openjpeg >=2.5.3,<3.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - tk >=8.6.13,<8.7.0a0 @@ -13391,8 +13549,8 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: HPND - size: 42468305 - timestamp: 1726075694989 + size: 41878282 + timestamp: 1735930321933 - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 md5: 79b5c1440aedc5010f687048d9103628 @@ -13622,9 +13780,9 @@ packages: license_family: MIT size: 2740461 timestamp: 1733138695290 -- conda: https://prefix.dev/conda-forge/linux-64/propcache-0.2.1-py312h178313f_1.conda - sha256: 6d5ff6490c53e14591b70924711fe7bd70eb7fbeeeb1cbd9ed2f6d794ec8c4eb - md5: 349635694b4df27336bc15a49e9220e9 +- conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda + sha256: d0ff67d89cf379a9f0367f563320621f0bc3969fe7f5c85e020f437de0927bb4 + md5: 0cf580c1b73146bb9ff1bbdb4d4c8cf9 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -13632,11 +13790,11 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 52947 - timestamp: 1737635699390 -- conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.2.1-py312hcc812fe_1.conda - sha256: d759d8ab9c060b42cabf6312b9a04aa590daecabf1dd4e35731f4bc1b5c388bb - md5: 533b07e9fd835938f465225613825eee + size: 54233 + timestamp: 1744525107433 +- conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.3.1-py312hcc812fe_0.conda + sha256: 2a72ab3144688fae346b767e7a4f1444a856cd396e829ac931bbb7b82cbf975b + md5: 1e7436d88a4b2b696626f4dd7339ef60 depends: - libgcc >=13 - python >=3.12,<3.13.0a0 @@ -13644,22 +13802,22 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 52776 - timestamp: 1737635802135 -- conda: https://prefix.dev/conda-forge/osx-64/propcache-0.2.1-py312h3520af0_1.conda - sha256: 04cd2c807af8ae2921e54c372620bb6d3391a7ad59c0aa566e4d21be0e558ae1 - md5: e712bcabf1db361f1350b638be66caca + size: 54004 + timestamp: 1744525120927 +- conda: https://prefix.dev/conda-forge/osx-64/propcache-0.3.1-py312h3520af0_0.conda + sha256: b589b640427dbfdc09a54783f89716440f4c9a4d9e479a2e4f33696f1073c401 + md5: 9e58210edacc700e43c515206904f0ca depends: - __osx >=10.13 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 50297 - timestamp: 1737635702025 -- conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.2.1-py312h998013c_1.conda - sha256: 96145760baad111d7ae4213ea8f8cc035cf33b001f5ff37d92268e4d28b0941d - md5: 83678928c58c9ae76778a435b6c7a94a + size: 51501 + timestamp: 1744525135519 +- conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.3.1-py312h998013c_0.conda + sha256: dd97df075f5198d42cc4be6773f1c41a9c07d631d95f91bfee8e9953eccc965b + md5: d8280c97e09e85c72916a3d98a4076d7 depends: - __osx >=11.0 - python >=3.12,<3.13.0a0 @@ -13667,11 +13825,11 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 50942 - timestamp: 1737635896600 -- conda: https://prefix.dev/conda-forge/win-64/propcache-0.2.1-py312h31fea79_1.conda - sha256: 7c1ba527bd32d6a17884a288e059f8e57a7f007dbb0e8369e085fa46c644fa7b - md5: 97ad6f805e3cb55a575c3b5dee3e4b4c + size: 51972 + timestamp: 1744525285336 +- conda: https://prefix.dev/conda-forge/win-64/propcache-0.3.1-py312h31fea79_0.conda + sha256: 2824ee1e6597d81e6b2840ab9502031ee873cab57eadf8429788f1d3225e09ad + md5: 8a1fef8f5796cf8076c7d1897e28ed5a depends: - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -13680,8 +13838,8 @@ packages: - vc14_runtime >=14.29.30139 license: Apache-2.0 license_family: APACHE - size: 49500 - timestamp: 1737636482838 + size: 50573 + timestamp: 1744525241304 - conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 md5: b3c17d95b5a10c6e64a21fa17573e70e @@ -13719,25 +13877,17 @@ packages: license_family: MIT size: 8381 timestamp: 1726802424786 -- conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 - sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a - md5: a1f820480193ea83582b13249a7e7bd9 +- conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b + md5: 3c8f2573569bb816483e5cf57efbbe29 depends: - - m2w64-gcc-libs + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 6417 - timestamp: 1606147814351 -- conda: https://prefix.dev/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda - sha256: b989bdcf0a22ba05a238adac1ad3452c11871681f565e509f629e225a26b7d45 - md5: cf98a67a1ec8040b42455002a24f0b0b - depends: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - license: LGPL-2.1-or-later - size: 265827 - timestamp: 1728400965968 + size: 9389 + timestamp: 1726802555076 - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda sha256: ea5f2d593177318f6b19af05018c953f41124cbb3bf21f9fdedfdb6ac42913ae md5: 2c97dd90633508b422c11bd3018206ab @@ -13928,7 +14078,7 @@ packages: - libgl >=1.7.0,<2.0a0 - libopengl >=1.7.0,<2.0a0 - libstdcxx >=13 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -13948,7 +14098,7 @@ packages: - libgl >=1.7.0,<2.0a0 - libopengl >=1.7.0,<2.0a0 - libstdcxx >=13 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -13965,7 +14115,7 @@ packages: - __osx >=11.0 - libclang13 >=18.1.8 - libcxx >=18 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -13982,7 +14132,7 @@ packages: - __osx >=11.0 - libclang13 >=18.1.8 - libcxx >=18 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -13997,7 +14147,7 @@ packages: md5: 3181e883064c2c457d4bc04068c73341 depends: - libclang13 >=19.1.7 - - libxml2 >=2.13.6,<3.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libxslt >=1.1.39,<2.0a0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 @@ -14313,15 +14463,15 @@ packages: license_family: LGPL size: 40015503 timestamp: 1734430188277 -- conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 - md5: 3eeeeb9e4827ace8c0c1419c85d590ad +- conda: https://prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 + md5: bc8e3267d44011051f2eb14d22fb0960 depends: - - python >=3.7 + - python >=3.9 license: MIT license_family: MIT - size: 188538 - timestamp: 1706886944988 + size: 189015 + timestamp: 1742920947249 - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b md5: cf2485f39740de96e2a7f2bb18ed2fee @@ -14466,7 +14616,7 @@ packages: - libwebp-base >=1.5.0,<2.0a0 - libxcb >=1.17.0,<2.0a0 - libxkbcommon >=1.7.0,<2.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - mysql-libs >=9.0.1,<9.1.0a0 - openssl >=3.4.0,<4.0a0 @@ -14526,7 +14676,7 @@ packages: - libwebp-base >=1.5.0,<2.0a0 - libxcb >=1.17.0,<2.0a0 - libxkbcommon >=1.7.0,<2.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - mysql-libs >=9.0.1,<9.1.0a0 - openssl >=3.4.0,<4.0a0 @@ -14805,7 +14955,7 @@ packages: - libblas >=3.9.0,<4.0a0 - libcblas >=3.9.0,<4.0a0 - libcxx >=18 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - liblapack >=3.9.0,<4.0a0 - numpy <2.5 @@ -14825,7 +14975,7 @@ packages: - libblas >=3.9.0,<4.0a0 - libcblas >=3.9.0,<4.0a0 - libcxx >=18 - - libgfortran 5.* + - libgfortran >=5 - libgfortran5 >=13.2.0 - liblapack >=3.9.0,<4.0a0 - numpy <2.5 @@ -14857,62 +15007,62 @@ packages: license_family: BSD size: 15350553 timestamp: 1739793319263 -- conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.50-h9b8e6db_1.conda - sha256: c253ddeafdc46bb53cdac722d1305a94bbbd9905e6a112e295ce7bb9e7a2f7e7 - md5: 0d27110a2f613abc268e31b3c1d5fb4f +- conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.54-h9b8e6db_0.conda + sha256: 5c9aec59ef12e15835be3b1e37e6aba6e448d2595c6a0cf920b3dcda059d7079 + md5: d44b61a36cec368eb15cdccf419deab3 depends: - __glibc >=2.17,<3.0.a0 - libegl >=1.7.0,<2.0a0 - libgcc >=13 - libgl >=1.7.0,<2.0a0 - libstdcxx >=13 - - sdl3 >=3.2.4,<4.0a0 + - sdl3 >=3.2.10,<4.0a0 license: Zlib - size: 513266 - timestamp: 1740516135153 -- conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.50-h7851d19_1.conda - sha256: d2c1d0baf85f3484fa8630f3067f7411c8abcb8fee0ad67342d82e706c59230e - md5: 83f2b36f187b0269471774983ecfa39f + size: 527791 + timestamp: 1743695019197 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.54-h7851d19_0.conda + sha256: 2b615a94189c84af299cd50427fd6e53fd4037ba774aabec685144845199cf6b + md5: 3a534c338e16fb9bdd1673d6910c7ed1 depends: - libegl >=1.7.0,<2.0a0 - libgcc >=13 - libgl >=1.7.0,<2.0a0 - libstdcxx >=13 - - sdl3 >=3.2.4,<4.0a0 + - sdl3 >=3.2.10,<4.0a0 license: Zlib - size: 523908 - timestamp: 1740516151246 -- conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.50-hc0cb955_1.conda - sha256: 41d7705c67a31b9e4821469a882db92031dc291fb99b77a9b73b3716785abbad - md5: 9b99d270e406fdd34cb397c5c018f424 + size: 534339 + timestamp: 1743695028373 +- conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.54-hc0cb955_0.conda + sha256: 8763f1abde04e70a21e729b1ab3f043a1d7f6f57bdb36c470b5935286042a0e6 + md5: 3284c243063bde7aec4998f94908864e depends: - __osx >=10.13 - libcxx >=18 - - sdl3 >=3.2.4,<4.0a0 + - sdl3 >=3.2.10,<4.0a0 license: Zlib - size: 668845 - timestamp: 1740516491142 -- conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.50-h994913f_1.conda - sha256: 0a6ad048f2f311bebc05fc7a31d26373b693949ad0887edf48909b0acb849b5e - md5: ff589d08171ffeb5867e9c6a68ec913d + size: 674630 + timestamp: 1743695154024 +- conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.54-h994913f_0.conda + sha256: 038e94fafde6a96e4b77d177ecbc22fcc5046c4431561fec8856af08d250b04c + md5: 84c33f0d35b573f37ea1ff13792542b8 depends: - __osx >=11.0 - libcxx >=18 - - sdl3 >=3.2.4,<4.0a0 + - sdl3 >=3.2.10,<4.0a0 license: Zlib - size: 493998 - timestamp: 1740516182244 -- conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.50-hecf2515_1.conda - sha256: 3f1ee15c845f1fc50e75790f06ee6cf08479eb706673d6e91e7f82887871d56a - md5: 3b73ebaea5aa1b7739358efaed25b458 + size: 498605 + timestamp: 1743695235564 +- conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.54-hecf2515_0.conda + sha256: bb95029be4632e050195d62157fbce8661607071830ed1b934af26ef1185afe7 + md5: 4ef86c4be18deb4371c37cd3c7909d02 depends: - - sdl3 >=3.2.4,<4.0a0 + - sdl3 >=3.2.10,<4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: Zlib - size: 517808 - timestamp: 1740516481192 + size: 524350 + timestamp: 1743695553169 - conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.10-h3083f51_0.conda sha256: 2adb25a44d4fa607cc3afa3c7903c8b8f5291d111ce0315337ef6b24206ed19b md5: 5fa3dfc74e66ce327f0633a33da88395 @@ -15016,15 +15166,15 @@ packages: license: GPL-3 size: 279194 timestamp: 1605307517437 -- conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda - sha256: 91d664ace7c22e787775069418daa9f232ee8bafdd0a6a080a5ed2395a6fa6b2 - md5: 9bddfdbf4e061821a1a443f93223be61 +- conda: https://prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: a42da9837e46c53494df0044c3eb1f53 depends: - python >=3.9 license: MIT license_family: MIT - size: 777736 - timestamp: 1740654030775 + size: 786557 + timestamp: 1743775941985 - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db md5: a451d576819089b0d672f18768be0f65 @@ -15034,9 +15184,9 @@ packages: license_family: MIT size: 16385 timestamp: 1733381032766 -- conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-h0d71592_13.conda - sha256: b661ad37d73de52ba2c133d843fad3e20d8c0b677f194ddb0cce721900b71d8a - md5: 3c66ab3d7f24ca9c0a9f79ebe950b495 +- conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-hb7ebc10_14.conda + sha256: fa845e6da5a61031fb01d02a8e928528635f30b21e2790eea5913db7f16c8aed + md5: bd9830f5f607de2c20227f061729e64a depends: - __glibc >=2.17,<3.0.a0 - libboost >=1.86.0,<1.87.0a0 @@ -15047,11 +15197,11 @@ packages: - vtk-base >=9.3.1,<9.3.2.0a0 license: LGPL-2.1-or-later license_family: LGPL - size: 4535754 - timestamp: 1729371963115 -- conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h212b014_13.conda - sha256: 8c55daf93f4d7434d2051227e86a617ce7f8b66b9bf43fa4ecb034ee7bbc0d90 - md5: 08ee56e0a10ca95781f960014b65a278 + size: 4549495 + timestamp: 1743945410335 +- conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h3752d33_14.conda + sha256: cbbabfb35969e688e19a527bc68c0df950f904c899a10d2725e8ed319ff149c2 + md5: 86cb832caa7dd35611e79a5bbfacfc3a depends: - libboost >=1.86.0,<1.87.0a0 - libgcc >=13 @@ -15061,52 +15211,53 @@ packages: - vtk-base >=9.3.1,<9.3.2.0a0 license: LGPL-2.1-or-later license_family: LGPL - size: 4796963 - timestamp: 1729372232913 -- conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-ha774313_13.conda - sha256: ce77d396d9c0d7836c714fa6dd74b7fedd65368414302adcf0453b682168739d - md5: 8a856c4514e00f3d70332016c32eed33 + size: 4769910 + timestamp: 1743945519731 +- conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-h9ba7290_14.conda + sha256: 8d2c2699f8e00df8f83c5aad0500da0e4fdfdedbfa2be997c955cbee0e517c0e + md5: 939fd0ebfabd93d733663e99b7664286 depends: - __osx >=10.13 - libboost >=1.86.0,<1.87.0a0 - - libcxx >=17 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - occt >=7.8.1,<7.8.2.0a0 - vtk-base >=9.3.1,<9.3.2.0a0 license: LGPL-2.1-or-later license_family: LGPL - size: 4202183 - timestamp: 1729372719929 -- conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-hf192bc0_13.conda - sha256: f0a05c7a3898dba7cd4639dd9a467999865030918f2329079442e913d9d7a45c - md5: 1c3e982e81b32ccfce0c2e36c19d5569 + size: 4175398 + timestamp: 1743945152923 +- conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-h10d9485_14.conda + sha256: 8cb24f2e32c5db0c9f921b1bda2669d3b0001537cb01e0a5e54ae69a4c25a9e4 + md5: 2e7f43c6d416381366193cf773237270 depends: - __osx >=11.0 - libboost >=1.86.0,<1.87.0a0 - - libcxx >=17 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - occt >=7.8.1,<7.8.2.0a0 - vtk-base >=9.3.1,<9.3.2.0a0 license: LGPL-2.1-or-later license_family: LGPL - size: 3762789 - timestamp: 1729372519693 -- conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-hdbf5530_13.conda - sha256: 9664e16dbad2a2de052fae26ecae84ba8209cba9981e75ce212b6abd1713cf01 - md5: d342dd9adb2741987ad7570d376b3686 + size: 3768975 + timestamp: 1743945054026 +- conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-h4c8b7ef_14.conda + sha256: 928aac25c98890717041631572c6ec885c836854004a1fa0f46c0ecc62aea9e4 + md5: f6cfbc28bb4f333c917697861d928931 depends: - libboost >=1.86.0,<1.87.0a0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - libzlib >=1.3.1,<2.0a0 - occt >=7.8.1,<7.8.2.0a0 - - pthreads-win32 + - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - vc >=14.3,<15 - - vc14_runtime >=14.40.33810 + - vc14_runtime >=14.42.34438 - vtk-base >=9.3.1,<9.3.2.0a0 license: LGPL-2.1-or-later license_family: LGPL - size: 3646997 - timestamp: 1729372911260 + size: 3665255 + timestamp: 1743945695901 - conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda sha256: ec91e86eeb2c6bbf09d51351b851e945185d70661d2ada67204c9a6419d282d3 md5: 3b3e64af585eadfb52bb90b553db5edf @@ -15385,6 +15536,7 @@ packages: - libhwloc >=2.11.2,<2.11.3.0a0 - libstdcxx >=13 license: Apache-2.0 + license_family: APACHE size: 179639 timestamp: 1743578685131 - conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-2022.1.0-hf6e3e71_0.conda @@ -15395,6 +15547,7 @@ packages: - libhwloc >=2.11.2,<2.11.3.0a0 - libstdcxx >=13 license: Apache-2.0 + license_family: APACHE size: 144738 timestamp: 1743581521035 - conda: https://prefix.dev/conda-forge/osx-64/tbb-2022.1.0-h479f576_0.conda @@ -15405,6 +15558,7 @@ packages: - libcxx >=18 - libhwloc >=2.11.2,<2.11.3.0a0 license: Apache-2.0 + license_family: APACHE size: 162373 timestamp: 1743578829165 - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-2022.1.0-h9541205_0.conda @@ -15415,6 +15569,7 @@ packages: - libcxx >=18 - libhwloc >=2.11.2,<2.11.3.0a0 license: Apache-2.0 + license_family: APACHE size: 119289 timestamp: 1743578923826 - conda: https://prefix.dev/conda-forge/win-64/tbb-2022.1.0-ha82c486_0.conda @@ -15426,6 +15581,7 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: Apache-2.0 + license_family: APACHE size: 154810 timestamp: 1743579326182 - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.1.0-hf29b1df_0.conda @@ -15570,9 +15726,9 @@ packages: license_family: Apache size: 400974 timestamp: 1736693037551 -- conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda - sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e - md5: 32674f8dbfb7b26410ed580dd3c10a29 +- conda: https://prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: c1e349028e0052c4eea844e94f773065 depends: - brotli-python >=1.0.9 - h2 >=4,<5 @@ -15581,8 +15737,8 @@ packages: - zstandard >=0.18.0 license: MIT license_family: MIT - size: 100102 - timestamp: 1734859520452 + size: 100791 + timestamp: 1744323705540 - conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda sha256: ec540ff477cd6d209b98f9b201e9c440908ea3a8b62e9e02dd12fcb60fff6d08 md5: 9464e297fa2bf08030c65a54342b48c3 @@ -15719,7 +15875,7 @@ packages: - libtiff >=4.7.0,<4.8.0a0 - libuuid >=2.38.1,<3.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.9.3,<1.10.0a0 @@ -15775,7 +15931,7 @@ packages: - libtiff >=4.7.0,<4.8.0a0 - libuuid >=2.38.1,<3.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.9.3,<1.10.0a0 @@ -15828,7 +15984,7 @@ packages: - libsqlite >=3.47.2,<4.0a0 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.9.3,<1.10.0a0 @@ -15872,7 +16028,7 @@ packages: - libsqlite >=3.46.1,<4.0a0 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - - libxml2 >=2.12.7,<3.0a0 + - libxml2 >=2.12.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.9.3,<1.10.0a0 @@ -15919,7 +16075,7 @@ packages: - libsqlite >=3.46.1,<4.0a0 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - - libxml2 >=2.12.7,<3.0a0 + - libxml2 >=2.12.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.9.3,<1.10.0a0 @@ -16011,13 +16167,13 @@ packages: license_family: MIT size: 324815 timestamp: 1724530528414 -- conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.42-hd8ed1ab_0.conda - sha256: 92ae338de325bf81f5d98075d1efc9c74e532e37d03bf4aeea50f202ad983a53 - md5: 602b55baa61ed0eda99277662d375c2e +- conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.43-hd8ed1ab_0.conda + sha256: 7a2c4c7d8b3754332fa12dc206f228d079925e4d6df22db68f1f658e4d122ea8 + md5: 15be7b62f44e0b7f18db7af4eded345d license: MIT license_family: MIT - size: 131524 - timestamp: 1742826616149 + size: 132240 + timestamp: 1744133409242 - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce md5: 75cb7132eb58d97896e173ef12ac9986 @@ -16383,25 +16539,6 @@ packages: license_family: BSD size: 85227 timestamp: 1531611142582 -- conda: https://prefix.dev/conda-forge/win-64/xorg-fixesproto-5.0-hcd874cb_1002.tar.bz2 - sha256: 6be2ef984ad26b5f1d03ab67ed5e136316c35c2201c17a66a8730fc8411bcc55 - md5: 148f09dc4251d118d803878eb3b0570a - depends: - - m2w64-gcc-libs - - xorg-xextproto - license: MIT - license_family: MIT - size: 9910 - timestamp: 1617480107415 -- conda: https://prefix.dev/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2 - sha256: 5b16e1ca1ecc0d2907f236bc4d8e6ecfd8417db013c862a01afb7f9d78e48c09 - md5: 8d11c1dac4756ca57e78c1bfe173bba4 - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 28166 - timestamp: 1610028297505 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b md5: fb901ff28063514abb6046c9ec2c4a45 @@ -16439,17 +16576,18 @@ packages: license_family: MIT size: 48418 timestamp: 1734227712919 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda - sha256: 353e07e311eb10e934f03e0123d0f05d9b3770a70b0c3993e6d11cf74d85689f - md5: 5271e3af4791170e2c55d02818366916 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.2-h0e40799_0.conda + sha256: bf1d34142b1bf9b5a4eed96bcc77bc4364c0e191405fd30d2f9b48a04d783fd3 + md5: 105cb93a47df9c548e88048dc9cbdbc9 depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libx11 >=1.8.4,<2.0a0 + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 license: MIT license_family: MIT - size: 158086 - timestamp: 1685308072189 + size: 236306 + timestamp: 1734228116846 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250 md5: 1c74ff8c35dcadf952a16f752ca5aa49 @@ -16493,17 +16631,18 @@ packages: license_family: MIT size: 24419 timestamp: 1741896544082 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda - sha256: 3a8cc151142c379d3ec3ec4420395d3a273873d3a45a94cd3038d143f5a519e8 - md5: 25926681339df15918243d9a7cec25a1 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.6-h0e40799_0.conda + sha256: 065d49b0d1e6873ed1238e962f56cb8204c585cdc5c9bd4ae2bf385cadb5bd65 + md5: 570c9a6d9b4909e45d49e9a5daa528de depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libice >=1.1.1,<2.0a0 + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libice >=1.1.2,<2.0a0 license: MIT license_family: MIT - size: 86397 - timestamp: 1685454296879 + size: 97096 + timestamp: 1741896840170 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67 md5: db038ce880f100acc74dba10302b5630 @@ -16545,20 +16684,18 @@ packages: license_family: MIT size: 761938 timestamp: 1741901455497 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.9-h0076a8d_1.conda - sha256: c378304044321e74c6acd483674f404864a229ab2a8841bf9515bc1a30783e99 - md5: 0296a4de2235cad9ad3112134f8e4519 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.12-hf48077a_0.conda + sha256: 3f0854bc592d31a5742c6c4550914a976c89d73b74d052545b418521d21b3043 + md5: c4f435ac09fd41606bba9f0deb12e412 depends: - - libxcb >=1.16,<2.0.0a0 - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-kbproto - - xorg-xextproto >=7.3.0,<8.0a0 - - xorg-xproto + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libxcb >=1.17.0,<2.0a0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 814589 - timestamp: 1718847832308 + size: 951392 + timestamp: 1741902072732 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 @@ -16596,16 +16733,17 @@ packages: license_family: MIT size: 13593 timestamp: 1734229104321 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda - sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77 - md5: c46ba8712093cb0114404ae8a7582e1a +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 + md5: 2ffbfae4548098297c033228256eb96e depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 51297 - timestamp: 1684638355740 + size: 108013 + timestamp: 1734229474049 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f md5: d3c295b50f092ab525ffe3c2aa4b7413 @@ -16716,15 +16854,17 @@ packages: license_family: MIT size: 18487 timestamp: 1727795205022 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 - sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93 - md5: 46878ebb6b9cbd8afcf8088d7ef00ece +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c + md5: 8393c0f7e7870b4eb45553326f81f0ff depends: - - m2w64-gcc-libs + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 67908 - timestamp: 1610072296570 + size: 69920 + timestamp: 1727795651979 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14 md5: febbab7d15033c913d53c7a2c102309d @@ -16766,17 +16906,18 @@ packages: license_family: MIT size: 41870 timestamp: 1727752280756 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda - sha256: 829320f05866ea1cc51924828427f215f4d0db093e748a662e3bb68b764785a4 - md5: 2aa695ac3c56193fd8d526e3b511e021 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.6-h0e40799_0.conda + sha256: 7fdc3135a340893aa544921115c3994ef4071a385d47cc11232d818f006c63e4 + md5: 4cd74e74f063fb6900d6eed2e9288112 depends: - - m2w64-gcc-libs - - xorg-libx11 >=1.7.2,<2.0a0 - - xorg-xextproto + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 license: MIT license_family: MIT - size: 221821 - timestamp: 1677038179908 + size: 284715 + timestamp: 1727752838922 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda sha256: 2fef37e660985794617716eb915865ce157004a4d567ed35ec16514960ae9271 md5: 4bdb303603e9821baf5fe5fdff1dc8f8 @@ -16818,17 +16959,18 @@ packages: license_family: MIT size: 17116 timestamp: 1727795029882 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxfixes-5.0.3-hcd874cb_1004.tar.bz2 - sha256: 4e6962989a4e422561cc3153aae27de9ed4a0efb314765f88986ffe0d24b4f36 - md5: 5a918f49233ba0206d86062a14fa8724 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxfixes-6.0.1-h0e40799_0.conda + sha256: 2316d429b1b04610bf5cbaa9082c9a846ce5cb7ea328a39a3c10b5c59a77bb00 + md5: a49da33cbf43705fd32738cc4bf1cdc9 depends: - - m2w64-gcc-libs - - xorg-fixesproto - - xorg-libx11 >=1.7.0,<2.0a0 + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 license: MIT license_family: MIT - size: 109879 - timestamp: 1617718538793 + size: 97151 + timestamp: 1727795672158 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a md5: 17dcc85db3c7886650b8908b183d6876 @@ -16904,21 +17046,20 @@ packages: license_family: MIT size: 92167 timestamp: 1727965913339 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda - sha256: d5cc2f026658e8b85679813bff35c16c857f873ba02489e6eb6e30d5865dacc4 - md5: 029be9b667bf3896fa28bc32adb1bfc3 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-h0e40799_1.conda + sha256: a605b43b2622a4cae8df6edc148c02b527da4ea165ec67cabb5c9bc4f3f8ef13 + md5: e8b816fb37bc61aa3f1c08034331ef53 depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-libxext >=1.3.4,<2.0a0 + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 - xorg-libxt >=1.3.0,<2.0a0 - - xorg-xextproto >=7.3.0,<8.0a0 - - xorg-xproto license: MIT license_family: MIT - size: 195881 - timestamp: 1696449889560 + size: 236112 + timestamp: 1727801849623 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d md5: 2de7f99d6581a4a7adbff607b5c278ca @@ -16985,18 +17126,18 @@ packages: license_family: MIT size: 28434 timestamp: 1734229187899 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxrender-0.9.11-hcd874cb_0.conda - sha256: a6b87abbf9898021d3dbb831d4ad1cb470635bb920b3632fd389d99e2a50a652 - md5: c961f8e9aa1039e1b656b2f1792f05d8 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxrender-0.9.12-h0e40799_0.conda + sha256: 911d12063bca53a1246ca56b5a0e2a55667815d9108cdf6bc65ba645b394136f + md5: be996523a7fdf6c9b89ba9d22b5a5136 depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-renderproto + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 license: MIT license_family: MIT - size: 152274 - timestamp: 1688301251907 + size: 158580 + timestamp: 1734229417292 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda sha256: 58e8fc1687534124832d22e102f098b5401173212ac69eb9fd96b16a3e2c8cb2 md5: 303f7a0e9e0cd7d250bb6b952cecda90 @@ -17034,21 +17175,20 @@ packages: license_family: MIT size: 384752 timestamp: 1731860572314 -- conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda - sha256: d513e0c627f098ef6655ce188eca79a672eaf763b0bbf37b228cb46dc82a66ca - md5: 511a29edd2ff3d973f63e54f19dcc06e +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.1-h0e40799_0.conda + sha256: c940a6b71a1e59450b01ebfb3e21f3bbf0a8e611e5fbfc7982145736b0f20133 + md5: 31baf0ce8ef19f5617be73aee0527618 depends: - - m2w64-gcc-libs - - m2w64-gcc-libs-core - - xorg-kbproto + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 - xorg-libice >=1.1.1,<2.0a0 - xorg-libsm >=1.2.4,<2.0a0 - - xorg-libx11 >=1.8.6,<2.0a0 - - xorg-xproto + - xorg-libx11 >=1.8.10,<2.0a0 license: MIT license_family: MIT - size: 671704 - timestamp: 1690289114426 + size: 918674 + timestamp: 1731861024233 - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f @@ -17097,96 +17237,69 @@ packages: license_family: MIT size: 18185 timestamp: 1734214652726 -- conda: https://prefix.dev/conda-forge/win-64/xorg-renderproto-0.11.1-hcd874cb_1002.tar.bz2 - sha256: 96b3fea823f1d55af85cf137b414905724442db0471a2225fbf2d668dce9730d - md5: d5dc44d9c5a98b56111d9492333b71e6 - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 10352 - timestamp: 1614866857633 -- conda: https://prefix.dev/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda - sha256: 04c0a08fd34fa33406c20f729e8f9cc40e8fd898072b952a5c14280fcf26f2e6 - md5: 6e6c2639620e436bddb7c040cd4f3adb - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 31034 - timestamp: 1677037259999 -- conda: https://prefix.dev/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2 - sha256: b84cacba8479fa14199c9255fb62e005cacc619e90198c53b1653973709ec331 - md5: 88f3c65d2ad13826a9e0b162063be023 - depends: - - m2w64-gcc-libs - license: MIT - license_family: MIT - size: 75708 - timestamp: 1607292254607 -- conda: https://prefix.dev/conda-forge/linux-64/xz-5.6.4-hbcc6ac9_0.conda - sha256: 91fc251034fa5199919680aa50299296d89da54b2d066fb6e6a60461c17c0c4a - md5: bb511c87804cf7220246a3a6efc45c22 +- conda: https://prefix.dev/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_0.conda + sha256: 65f32402dc69fb20dc9b6307793405f45b6fd979a55534e1a4f2d39bcabea303 + md5: c9880133bf4750a4c848f8d2c78d498c depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - liblzma 5.6.4 hb9d3cd8_0 - - liblzma-devel 5.6.4 hb9d3cd8_0 - - xz-gpl-tools 5.6.4 hbcc6ac9_0 - - xz-tools 5.6.4 hb9d3cd8_0 + - liblzma 5.8.1 hb9d3cd8_0 + - liblzma-devel 5.8.1 hb9d3cd8_0 + - xz-gpl-tools 5.8.1 hbcc6ac9_0 + - xz-tools 5.8.1 hb9d3cd8_0 license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later - size: 23477 - timestamp: 1738525395307 -- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-5.6.4-h2dbfc1b_0.conda - sha256: e95f911e89ec939f516ab478e67c1a1222bb8d17298d9f04d1f9da7ea3bc2815 - md5: 106b4128bc624409d2685c5a395c6778 + size: 23859 + timestamp: 1743771157444 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-5.8.1-h2dbfc1b_0.conda + sha256: 837ecb2588bdbf4dac097c5cb4a2238260f6a7b002c2c7bc4a6e66408fe0b75b + md5: 5047102e1e3b4a7736bc55f4ffd43a4e depends: - libgcc >=13 - - liblzma 5.6.4 h86ecc28_0 - - liblzma-devel 5.6.4 h86ecc28_0 - - xz-gpl-tools 5.6.4 h2dbfc1b_0 - - xz-tools 5.6.4 h86ecc28_0 + - liblzma 5.8.1 h86ecc28_0 + - liblzma-devel 5.8.1 h86ecc28_0 + - xz-gpl-tools 5.8.1 h2dbfc1b_0 + - xz-tools 5.8.1 h86ecc28_0 license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later - size: 23627 - timestamp: 1738529030085 -- conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.6.4-hbcc6ac9_0.conda - sha256: 300fc4e5993a36c979e61b1a38d00f0c23c0c56d5989be537cbc7bd8658254ed - md5: 246840b451f7a66bd68869e56b066dd5 + size: 23823 + timestamp: 1743774426641 +- conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_0.conda + sha256: f48787ef798a44d7ef5618427af7881ae0229a930810963c43acc5444abe2437 + md5: 9177ea2e6886b8070012e1d68531ab2f depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - liblzma 5.6.4 hb9d3cd8_0 + - liblzma 5.8.1 hb9d3cd8_0 license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later - size: 33285 - timestamp: 1738525381548 -- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-gpl-tools-5.6.4-h2dbfc1b_0.conda - sha256: bba299a0b05e8772226e859cfc301c682935da677e3613cfa874dc4ad1c818f7 - md5: c43dd63b7ffb096cd1de6392b2a6f5cc + size: 33622 + timestamp: 1743771139491 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-gpl-tools-5.8.1-h2dbfc1b_0.conda + sha256: 4c9fd00d68b8f0ed0fac67692dc6953e35e037f0996da539ba69b0e3af227f1a + md5: e7d13c4f76ba970e04e81f2f6d448657 depends: - libgcc >=13 - - liblzma 5.6.4 h86ecc28_0 + - liblzma 5.8.1 h86ecc28_0 license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later - size: 33515 - timestamp: 1738528828839 -- conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.6.4-hb9d3cd8_0.conda - sha256: 57506a312d8cfbee98217fb382822bd49794ea6318dd4e0413a0d588dc6f4f69 - md5: a098f9f949af52610fdceb8e35b57513 + size: 33679 + timestamp: 1743774217896 +- conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_0.conda + sha256: ec01d8c97f77c80a2bf42050b761e199663a4a35d22fc194c950802589e15e59 + md5: 908d29a6cfd9e9a78d07012f5d1a8707 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - liblzma 5.6.4 hb9d3cd8_0 + - liblzma 5.8.1 hb9d3cd8_0 license: 0BSD AND LGPL-2.1-or-later - size: 89735 - timestamp: 1738525367692 -- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-tools-5.6.4-h86ecc28_0.conda - sha256: 30b1f1ffbf1a578f003e39263dc3e1fb3f28c8d602326126df14f3a28cee21d7 - md5: f99b6cd964d91182b36681fba1170965 + size: 96051 + timestamp: 1743771123306 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-tools-5.8.1-h86ecc28_0.conda + sha256: d971fddb92bf7a166c259137940b12d9ad75c433da799450596a536bdac1a835 + md5: b5c34a9de20e885b1b66f1510dde5e0b depends: - libgcc >=13 - - liblzma 5.6.4 h86ecc28_0 + - liblzma 5.8.1 h86ecc28_0 license: 0BSD AND LGPL-2.1-or-later - size: 95247 - timestamp: 1738528627128 + size: 102349 + timestamp: 1743774009362 - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae diff --git a/package/rattler-build/recipe.yaml b/package/rattler-build/recipe.yaml index b45e28b4bc..b13920b154 100644 --- a/package/rattler-build/recipe.yaml +++ b/package/rattler-build/recipe.yaml @@ -26,6 +26,8 @@ requirements: - if: linux and x86_64 then: + - clang + - clangxx - kernel-headers_linux-64 - libdrm-cos7-x86_64 - libselinux-cos7-x86_64 @@ -46,6 +48,7 @@ requirements: - mesa-libegl-devel-cos7-x86_64 - mesa-libgl-cos7-x86_64 - mesa-libgl-devel-cos7-x86_64 + - mold - pixman-cos7-x86_64 - sed - sysroot_linux-64 @@ -55,6 +58,8 @@ requirements: - if: linux and aarch64 then: + - clang + - clangxx - kernel-headers_linux-aarch64 - libdrm-cos7-aarch64 - libselinux-cos7-aarch64 @@ -75,6 +80,7 @@ requirements: - mesa-libegl-devel-cos7-aarch64 - mesa-libgl-cos7-aarch64 - mesa-libgl-devel-cos7-aarch64 + - mold - pixman-cos7-aarch64 - sed - sysroot_linux-aarch64 diff --git a/package/ubuntu/install-apt-packages.sh b/package/ubuntu/install-apt-packages.sh index 2fff06ea6e..1a7cacf532 100755 --- a/package/ubuntu/install-apt-packages.sh +++ b/package/ubuntu/install-apt-packages.sh @@ -12,6 +12,7 @@ fi packages=( ccache + cmake doxygen graphviz imagemagick diff --git a/pixi.lock b/pixi.lock index 92b7c098a0..2ef8177069 100644 --- a/pixi.lock +++ b/pixi.lock @@ -28,6 +28,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ccache-4.10.1-h065aff2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py313hfab6e84_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-19-19.1.7-default_hb5137d0_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/clang-19.1.7-default_h9e3a008_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-19.1.7-default_ha78316a_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.28.3-hcfe8598_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/coin3d-4.0.3-hd74d64a_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.8.0-ha770c72_1.conda @@ -108,7 +111,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-26_linux64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.6-default_hb5137d0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-19.1.6-default_h9c6a7e4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda @@ -140,7 +143,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-26_linux64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.6-ha7bfdaf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.3-hb9d3cd8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.6.3-hb9d3cd8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda @@ -205,6 +208,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/libxxf86vm-cos7-x86_64-1.1.4-ha675448_1106.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.2-h024ca30_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.2-py313h78bf25f_2.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-3.0.2-py313h8060acc_1.conda @@ -218,6 +222,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-cos7-x86_64-18.3.4-ha675448_1106.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-devel-cos7-x86_64-18.3.4-ha675448_1106.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libglapi-cos7-x86_64-18.3.4-ha675448_1106.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/mimalloc-3.0.1-h18b520e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/mold-2.36.0-hff13881_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py313h33d0bda_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py313h8060acc_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 @@ -352,6 +358,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ccache-4.10.1-ha3bccff_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py313h2135053_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-19-19.1.7-default_he324ac1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-19.1.7-default_h7e7f49e_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clangxx-19.1.7-default_h2509fc2_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-3.28.3-hef020d8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/coin3d-4.0.3-h411181d_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/compilers-1.8.0-h8af1aa0_1.conda @@ -432,7 +441,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-26_linuxaarch64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.6-default_he324ac1_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.7-default_he324ac1_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-19.1.6-default_h4390ef5_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda @@ -464,7 +473,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-26_linuxaarch64_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm19-19.1.6-h2edbd07_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm19-19.1.7-h2edbd07_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.6.3-h86ecc28_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-devel-5.6.3-h86ecc28_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmpdec-4.0.0-h68df207_0.conda @@ -526,6 +535,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/libxxf86vm-cos7-aarch64-1.1.4-ha675448_1106.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/llvm-openmp-20.1.2-h013ceaa_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/loguru-0.7.2-py313h1258fbd_2.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/linux-aarch64/markupsafe-3.0.2-py313h7815b11_1.conda @@ -539,6 +549,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libglapi-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mimalloc-3.0.1-h99a533a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mold-2.36.0-h276ea0b_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.1.0-py313h44a8f36_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py313h857f82b_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 @@ -2397,6 +2409,30 @@ packages: license_family: MIT size: 12973 timestamp: 1734267180483 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-19.1.7-default_h9e3a008_2.conda + sha256: 950d83d572e60e2149ab21322eb1d17614c857e0c0dc0088922d2fa64c4447f3 + md5: d5b41f65dd90c31db8acd64bf9521a11 + depends: + - binutils_impl_linux-64 + - clang-19 19.1.7 default_hb5137d0_2 + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24053 + timestamp: 1742267549802 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-19.1.7-default_h7e7f49e_2.conda + sha256: 3f27da70db213779a6ad76f9a48637664e363270f7dc9ad5d9e2450f88943cbb + md5: f4a03729e3763c0b605b59bc354d04f5 + depends: + - binutils_impl_linux-aarch64 + - clang-19 19.1.7 default_he324ac1_2 + - libgcc-devel_linux-aarch64 + - sysroot_linux-aarch64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24145 + timestamp: 1742269685062 - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-17.0.6-default_he371ed4_7.conda sha256: 0bcc3fa29482ac32847bd5baac89563e285978fdc3f9d0c5d0844d647ecba821 md5: fd6888f26c44ddb10c9954a2df5765c7 @@ -2463,6 +2499,31 @@ packages: license_family: Apache size: 715930 timestamp: 1725505694198 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-19-19.1.7-default_hb5137d0_2.conda + sha256: df6d046624f9499f4c6cedb849020c2c9165480589601441d674f763e2e9dfd1 + md5: f1ed9ef2cecce0f0be23c4d3d24de83c + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp19.1 19.1.7 default_hb5137d0_2 + - libgcc >=13 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 774918 + timestamp: 1742267484032 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clang-19-19.1.7-default_he324ac1_2.conda + sha256: 1311d718811dab1f61eb8fc29a6fff2644298045cdcf34a2ce29c8e0d29bc3d0 + md5: 2d9e61f206b4273c0ba14a75ff3fbfb5 + depends: + - libclang-cpp19.1 19.1.7 default_he324ac1_2 + - libgcc >=13 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 777584 + timestamp: 1742269579376 - conda: https://conda.anaconda.org/conda-forge/win-64/clang-19-19.1.6-default_hec7ea82_0.conda sha256: 9a1651f4eee0c48d9bc41fd701105e8efd3c44fce5a550ac535623bcaabbe213 md5: a56ed2f6d7c33e6d71ec159c599c8e23 @@ -2520,6 +2581,26 @@ packages: license_family: BSD size: 21177 timestamp: 1731984996665 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-19.1.7-default_ha78316a_2.conda + sha256: d659c00a81272ab093a1a45c0f055b0b5750bb0bf6aaaa08e1d74b1867688331 + md5: 7e00695a8bc172385aa371a925552ad5 + depends: + - clang 19.1.7 default_h9e3a008_2 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24094 + timestamp: 1742267562510 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/clangxx-19.1.7-default_h2509fc2_2.conda + sha256: 269d8bc5e8edb1bd0de6063ef2f959e0c9788f7fa96ee28e737f1db3954c27e7 + md5: 8f4f6cb691b5b39efc60b4312f54184f + depends: + - clang 19.1.7 default_h7e7f49e_2 + - libstdcxx-devel_linux-aarch64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24148 + timestamp: 1742269695907 - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-17.0.6-default_he371ed4_7.conda sha256: 8f7e1d2759b5bd33577054cd72631dc7a4154e7a2b92880040b37c5be0a38255 md5: 4f110486af1272f0d4dee6adc5041fbf @@ -6779,29 +6860,29 @@ packages: license_family: Apache size: 12408943 timestamp: 1725505311206 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.6-default_hb5137d0_0.conda - sha256: 978320cb6107b9bc11d127783918500a330646ed825dc6c9da897941989d7d09 - md5: 9caebd39281536bf6bcb32f665dd4fbf +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_2.conda + sha256: 658c8000f3be74ad926b376b48903036611b5beccc07f729417730c49bd73a30 + md5: 62d6f9353753a12a281ae99e0a3403c4 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libllvm19 >=19.1.6,<19.2.0a0 + - libllvm19 >=19.1.7,<19.2.0a0 - libstdcxx >=13 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 20531147 - timestamp: 1734506894098 -- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.6-default_he324ac1_0.conda - sha256: e132aa4bf71a9a64e05745835d42af84cb04ba6f6c99d7585c928b495ac1c2a1 - md5: 2f399a5612317660f5c98f6cb634829b + size: 20556230 + timestamp: 1742267376167 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.7-default_he324ac1_2.conda + sha256: ee624228956159cb2be407574b8467c67a7bbb538547e2f9299209f08f4a9d7b + md5: 0424f44a2b8b81c0da4ade147eacdae2 depends: - libgcc >=13 - - libllvm19 >=19.1.6,<19.2.0a0 + - libllvm19 >=19.1.7,<19.2.0a0 - libstdcxx >=13 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 20076217 - timestamp: 1734512689675 + size: 20098820 + timestamp: 1742269466891 - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-19.1.6-default_h9c6a7e4_0.conda sha256: 54a7fabfba7dee2caebe5e6a7538e3aba0a8f4c11e7366f65592aee4fdaa7519 md5: e1d2936c320083f1c520c3a17372521c @@ -8164,33 +8245,33 @@ packages: license_family: Apache size: 24612870 timestamp: 1718320971519 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.6-ha7bfdaf_0.conda - sha256: 1d9d4657179d74dcbd429a17555e13c9e1253cc7c9aa1244cf5c5bca2cb46c25 - md5: ec6abc65eefc96cba8443b2716dcc43b +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda + sha256: 22909d64038bdc87de61311c4ae615dc574a548a7340b963bb7c9eb61b191669 + md5: 6d2362046dce932eefbdeb0540de0c38 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 40121731 - timestamp: 1734486321896 -- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm19-19.1.6-h2edbd07_0.conda - sha256: ead0ad0a4a1f57b3b010e7aefccd60f287976258ddc20cd5ca79e1044c14e457 - md5: 9e755607ec3a05f5ca9eba87abc76d65 + size: 40143643 + timestamp: 1737789465087 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm19-19.1.7-h2edbd07_1.conda + sha256: dfc21af8bb57e01ae1263a5b25e493790cb11d09ff051b4a1896fdcac7cf97ef + md5: a6abe993e3fcc1ba6d133d6f061d727c depends: - libgcc >=13 - libstdcxx >=13 - - libxml2 >=2.13.5,<3.0a0 + - libxml2 >=2.13.5,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 39424641 - timestamp: 1734483121382 + size: 39385125 + timestamp: 1737785892355 - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.6-hc29ff6c_0.conda sha256: 0418a2c81bddf36ae433b6186266c9e1be643b185665346a2a7aaf66d12dfc2f md5: 1f158b8d6e5728c9f52010ca512112a4 @@ -10731,6 +10812,24 @@ packages: license_family: APACHE size: 122980842 timestamp: 1734500318286 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.2-h024ca30_1.conda + sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: 39a3992c2624b8d8e6b4994dedf3102a + depends: + - __glibc >=2.17,<3.0.a0 + constrains: + - openmp 20.1.2|20.1.2.* + license: Apache-2.0 WITH LLVM-exception + size: 3184699 + timestamp: 1744575972960 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/llvm-openmp-20.1.2-h013ceaa_1.conda + sha256: a264ce930ac9a87a5393e2780c6c00359b1e7fc0e75692270d234c1f7d571973 + md5: 5b68013accd8a0643e4af77d5a51699e + constrains: + - openmp 20.1.2|20.1.2.* + license: Apache-2.0 WITH LLVM-exception + size: 4087033 + timestamp: 1744575928478 - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.6-ha54dae1_0.conda sha256: f79a1d6f8b2f6044eda1b1251c9bf49f4e11ae644e609e47486561a7eca437fd md5: 4fe4d62071f8a3322ffb6588b49ccbb8 @@ -11381,6 +11480,27 @@ packages: license_family: MIT size: 46982 timestamp: 1726573576112 +- conda: https://conda.anaconda.org/conda-forge/linux-64/mimalloc-3.0.1-h18b520e_0.conda + sha256: c3dea406890a835a25e8fc3ad3cb709c811127d63b83ddd6f897d584615b5ba9 + md5: f496e719ddf1eae71738f4d2e8e991b9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 83849 + timestamp: 1737310619948 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mimalloc-3.0.1-h99a533a_0.conda + sha256: 82295da8efaae3089bf24a18341ec1eb4bfe1e5385131615afa646400a60ca15 + md5: a497b73d2b6abfdcf658a81e4d6c8d56 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 88540 + timestamp: 1737310652256 - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd md5: 302dff2807f2927b3e9e0d19d60121de @@ -11391,6 +11511,37 @@ packages: license_family: Proprietary size: 103106385 timestamp: 1730232843711 +- conda: https://conda.anaconda.org/conda-forge/linux-64/mold-2.36.0-hff13881_1.conda + sha256: 6eacb23d89c13dec2184560728d1351c82c52c1aaba85377f056b8e2d15b6b7d + md5: 0274ce570b92fcc1dd23915c526457b4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - mimalloc >=3.0.1,<3.0.2.0a0 + - openssl >=3.4.0,<4.0a0 + - tbb >=2021.13.0 + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 2720013 + timestamp: 1737480297897 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mold-2.36.0-h276ea0b_1.conda + sha256: afb998d660d4e055ad6e9c9ce99a468954d96ca1233774cedfbc86919851e554 + md5: 5138ad4eafa4d6b463908d3d762a868e + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - mimalloc >=3.0.1,<3.0.2.0a0 + - openssl >=3.4.0,<4.0a0 + - tbb >=2021.13.0 + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 2541733 + timestamp: 1737480055267 - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda sha256: dcf91571da6c2f0db96d43a1b639047def05a0e1b6436d42c9129ab14af47b10 md5: 0520855aaae268ea413d6bc913f1384c diff --git a/pixi.toml b/pixi.toml index 49699858d5..2511c424e8 100644 --- a/pixi.toml +++ b/pixi.toml @@ -69,12 +69,16 @@ mesa-libegl-cos7-x86_64 = "*" mesa-libegl-devel-cos7-x86_64 = "*" mesa-libgl-cos7-x86_64 = "*" mesa-libgl-devel-cos7-x86_64 = "*" +mold = "*" pixman-cos7-x86_64 = "*" sed = "*" sysroot_linux-64 = "*" xorg-x11-server-common-cos7-x86_64 = "*" xorg-x11-server-xvfb-cos7-x86_64 = "*" xorg-xproto = "*" +clang = ">=19.1.7,<20" +clangxx = ">=19.1.7,<20" +llvm-openmp = ">=20.1.2,<21" ## Linux Dependencies (aarch64) [target.linux-aarch64.dependencies] @@ -103,12 +107,16 @@ mesa-libgbm-cos7-aarch64 = "*" mesa-libgl-cos7-aarch64 = "*" mesa-libgl-devel-cos7-aarch64 = "*" mesa-libglapi-cos7-aarch64 = "*" +mold = "*" pixman-cos7-aarch64 = "*" sed = "*" sysroot_linux-aarch64 = "*" xorg-x11-server-common-cos7-aarch64 = "*" xorg-x11-server-xvfb-cos7-aarch64 = "*" xorg-xproto = "*" +clang = ">=19.1.7,<20" +clangxx = ">=19.1.7,<20" +llvm-openmp = ">=20.1.2,<21" ## macOS Dependencies (Intel) [target.osx-64.dependencies] @@ -120,29 +128,29 @@ sed = "*" ## Qt 6 Configuration Presets [target.linux-64.tasks] -configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} +configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} [target.linux-aarch64.tasks] -configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"]} -configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"]} -configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"]} +configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} [target.osx-64.tasks] -configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} +configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} [target.osx-arm64.tasks] -configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} +configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} [target.win-64.tasks] -configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} -configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} +configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF", "-DCMAKE_GENERATOR_PLATFORM=", "-DCMAKE_GENERATOR_TOOLSET=" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF", "-DCMAKE_GENERATOR_PLATFORM=", "-DCMAKE_GENERATOR_TOOLSET=" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} +configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF", "-DCMAKE_GENERATOR_PLATFORM=", "-DCMAKE_GENERATOR_TOOLSET=" ], depends-on = ["initialize"], env={ CFLAGS="", CXXFLAGS="", DEBUG_CFLAGS="", DEBUG_CXXFLAGS="" }} freecad = { cmd = [ ".pixi/envs/default/Library/bin/FreeCAD.exe" ], depends-on = ["install"]} ## Tasks diff --git a/requirements.txt b/requirements.txt index a0d8842924..de6b72fe8f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,16 @@ area==1.1.1 cog==0.6.1 -ConfigParser==5.3.0 +ConfigParser==7.2.0 defusedxml==0.7.1 ifcopenshell==0.7.0.230318 ladybug-core==0.42.2 matplotlib==3.6.3 numpy==1.24.2 opencamlib==2023.1.11 -packaging==23.0 +packaging==24.2 Pivy==0.6.8 ply==3.11 -debugpy==1.6.7 +debugpy==1.8.14 pyNastran==1.3.4 pyshp==2.3.1 PySide2==5.15.2.1 diff --git a/src/3rdParty/CMakeLists.txt b/src/3rdParty/CMakeLists.txt index 86619e8d81..a79d60acb2 100644 --- a/src/3rdParty/CMakeLists.txt +++ b/src/3rdParty/CMakeLists.txt @@ -9,6 +9,10 @@ if(NOT FREECAD_USE_EXTERNAL_E57FORMAT) add_subdirectory(libE57Format) endif() +if(BUILD_MATERIAL_EXTERNAL) + add_subdirectory(lru-cache) +endif() + if (BUILD_ASSEMBLY AND NOT FREECAD_USE_EXTERNAL_ONDSELSOLVER) if( NOT EXISTS "${CMAKE_SOURCE_DIR}/src/3rdParty/OndselSolver/CMakeLists.txt" ) message(FATAL_ERROR "The OndselSolver git submodule is not available. Please run diff --git a/src/3rdParty/lru-cache/CMakeLists.txt b/src/3rdParty/lru-cache/CMakeLists.txt new file mode 100644 index 0000000000..c1565034c5 --- /dev/null +++ b/src/3rdParty/lru-cache/CMakeLists.txt @@ -0,0 +1,73 @@ +########################################################### +## CMAKE SETUP +########################################################### + +cmake_minimum_required(VERSION 3.2) +project(lru-cache) + +add_compile_options(-g) + +######################################## +# C++ VERSIONING +######################################## + +include(CheckCXXCompilerFlag) + +# check_cxx_compiler_flag("-std=c++14" COMPILER_SUPPORTS_CXX_14) +# check_cxx_compiler_flag("-std=c++1z" COMPILER_SUPPORTS_CXX_1z) +# check_cxx_compiler_flag("-std=c++17" COMPILER_SUPPORTS_CXX_17) + +# if (COMPILER_SUPPORTS_CXX_1z) +# message(STATUS "Compiling with C++1z") +# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1z") +# elseif (COMPILER_SUPPORTS_CXX_14) +# message(STATUS "Compiling with C++14") +# set(CMAKE_CXX_STANDARD 14) +# elseif (COMPILER_SUPPORTS_CXX_17) +# message(STATUS "Compiling with C++17") +# set(CMAKE_CXX_STANDARD 17) +# else() +# message(FATAL_ERROR "Please install a modern C++ compiler, they are not expensive.") +# endif() + +########################################################### +## DEPENDENCIES +########################################################### + +set(CMAKE_MODULE_PATH + ${CMAKE_MODULE_PATH} + "${CMAKE_SOURCE_DIR}/cmake/Modules/" +) + +########################################################### +## INCLUDES +########################################################### + +# Need this top-level include for "tests/" +# include_directories(${CMAKE_CURRENT_SOURCE_DIR}) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) + +########################################################### +## EXAMPLES +########################################################### + +# add_subdirectory(examples) + +######################################## +# TESTS +######################################## + +# option(BUILD_LRU_CACHE_TESTS "Enable tests" OFF) + +# if(BUILD_LRU_CACHE_TESTS) +# message(STATUS "Enabling tests ...") +# enable_testing() +# add_subdirectory(tests) +# else() +# message(STATUS "Disabling tests ...") +# endif() + +file (GLOB LRU_HEADERS include/*.hpp) +file (GLOB LRU_INTERNAL_HEADERS include/*.hpp) +install (FILES ${LRU_HEADERS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include) +install (FILES ${LRU_INTERNAL_HEADERS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/internal) diff --git a/src/3rdParty/lru-cache/LICENSE b/src/3rdParty/lru-cache/LICENSE new file mode 100644 index 0000000000..afcb9f00a5 --- /dev/null +++ b/src/3rdParty/lru-cache/LICENSE @@ -0,0 +1,19 @@ +The MIT License (MIT) +Copyright (c) 2016 Peter Goldsborough + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/3rdParty/lru-cache/README.md b/src/3rdParty/lru-cache/README.md new file mode 100644 index 0000000000..4afc1d339a --- /dev/null +++ b/src/3rdParty/lru-cache/README.md @@ -0,0 +1,304 @@ +# lru-cache + +[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](http://goldsborough.mit-license.org) [![Build Status](https://travis-ci.org/goldsborough/lru-cache.svg?branch=master)](https://travis-ci.org/goldsborough/lru-cache) + +A feature complete LRU cache implementation in C++. + +## Description + +A *least recently used* (LRU) cache is a fixed size cache that behaves just like a regular lookup table, but remembers the order in which elements are accessed. Once its (user-defined) capacity is reached, it uses this information to replace the least recently used element with a newly inserted one. This is ideal for caching function return values, where fast lookup of complex computations is favorable, but a memory blowup from caching all `(input, output)` pairs is to be avoided. + +We provide two implementations of an LRU cache: one has only the basic functionality described above, and another can be additionally supplied with a *time to live*. This is useful, for example, when caching resources on a server, where cache entries should be invalidated automatically after a certain amount of time, because they are no longer "fresh". + +Additionally, all our caches can be connected to *statistics* objects, that keep track of cache hits and misses for all keys and, upon request, individual keys (similar to `functools.lru_cache` in Python). You can also register arbitrary callbacks for hits, misses or accesses in general. + +## Basic Usage + +The two main classes we provide are `LRU::Cache` and `LRU::TimedCache`. A basic usage example of these may look like so: + +__`LRU::Cache`__ +```C++ +#include +#include "lru/lru.hpp" + +using Cache = LRU::Cache; + +int fibonacci(int n, Cache& cache) { + if (n < 2) return 1; + + // We internally keep track of the last accessed key, meaning a + // `contains(key)` + `lookup(key)` sequence will involve only a single hash + // table lookup. + if (cache.contains(n)) return cache.lookup(n); + + auto value = fibonacci(n - 1, cache) + fibonacci(n - 2, cache); + + // Caches are 100% move-aware and we have implemented + // `unordered_map` style emplacement and insertion. + cache.emplace(n, value); + + return value; +} + +int fibonacci(int n) { + // Use a capacity of 100 (after 100 insertions, the next insertion will evict + // the least-recently accessed element). The default capacity is 128. + Cache cache(100); + return fibonacci(n, cache); +} +``` + +__`LRU::TimedCache`__ +```C++ +#include +#include + +#include "lru/lru.hpp" + +using namespace std::chrono_literals; + +using Cache = LRU::TimedCache; + +int fibonacci(int n, Cache& cache) { + if (n < 2) return 1; + if (cache.contains(n)) return cache[n]; + + auto value = fibonacci(n - 1, cache) + fibonacci(n - 2, cache); + cache.emplace(n, value); + + return value; +} + +int fibonacci(int n) { + // Use a time to live of 100ms. This means that 100ms after insertion, a key + // will be said to have "expired" and `contains(key)` will return false. + Cache cache(100ms); + return fibonacci(n, cache); +} + +auto main() -> int { + std::cout << fibonacci(32) << std::endl; +} +``` + +## Extended Usage + +Our caches bring along many exciting features including statistics monitoring, function wrapping, arbitrary callbacks as well as ordered and unordered iteration. + +### Ordered and Unordered Iteration + +Both the `LRU::Cache` and `LRU::TimedCache` can be iterated over in two ways: ordered or unordered fashion (where the "order" refers to the order of insertion). The default iterators returned by `begin()`, `cbegin()`, `end()` etc. are *unordered* and mostly similar to `unordered_map` iterators (with some nice non-standard sugar): + +```C++ +LRU::Cache cache = {{1, 2}, {2, 3}, {3, 4}}; + +int sum = 0; +for (const auto& pair : cache) { + sum += pair.first; // Standards compliant (good for templates) + sum += pair.value(); // But sugar on top (also key()) +} + +auto iterator = cache.begin(); // These two lines +auto iterator = cache.unordered_begin(); // are the same +auto iterator = cache.ordered_end(); // This is something different +``` + +Unordered iterators are implemented directly over internal map iterators and thus have access to the key and value of a pointed-to entry. + +Ordered iterators respect the order of insertion. They differ in a few ways from unordered iterators: + +1. They are bidirectional, while unordered iterators are forward iterators. +2. They provide fast access only to the `key()`. Accessing the value requires a hash table lookup the first time an iterator is dereferenced. +3. They can be constructed from unordered iterators! This means writing something like `typename LRU::Cache::OrderedIterator i(unordered_iterator)` will work and is fast. + +Dreferencing an iterator will not change the order of elements in the cache. + +### Statistics + +Our caches can be associated with statistics objects, that monitor hits and misses. There are a few ways to create and use them. First of all, let's say you only wanted to record hits and misses for all keys and didn't care about any particular key. The simplest way to do this is to simply call: + +```cpp +cache.monitor(); +``` + +This allows you to call `cache.stats()`, which returns an `LRU::Statistics` object. It's interface is quite clear, allowing you to write stuff like: + +```cpp +cache.stats().total_hits(); // Hits for any key +cache.stats().total_misses(); // Misses for any key +cache.stats().hit_rate(); // Hit rate in [0, 1] +``` + +Note that a hit or miss only refers to lookup (i.e. methods `contains()`, `find()`, `lookup()` and `operator[]`) but not insertion via `emplace()` or `insert()`. + +#### Sharing Statistics + +Already here, one idea might be that we have two functions, each with their own cache, but we'd like them to share statistics. This is easy to do. Simply create the `Statistics` object as a `std::shared_ptr` and plug it into `cache.monitor()` for as many caches as you like: + +```cpp +auto stats = std::make_shared>(); + +cache1.monitor(stats); +cache2.monitor(stats); + +// Both affect the same statistics object +cache1.lookup("key"); +cache2.lookup("foo"); + +assert(&cache1.stats() == &cache2.stats()); // Ok + +std::shared_ptr> stats2 = cache1.shared_stats(); +``` + +#### Monitoring specific keys + +One of the more interesting features of our statistics API is the ability to monitor hits and misses for a specific set of keys. Say we were writing a web server accepting HTTP requests and wanted to cache resources (I assume that's something people would do). Because our website changes in some way every hour, we'll use a timed cache with a time-to-live of one hour. We're also particularly interested in how many cache hits we get for `index.html`. For this, it's good to know that the empty `monitor()` call we made further up is actually a method accepting variadic arguments to forward to the constructor of an internal statistics object (the empty `monitor()` calls the default constructor). One constructor of `Statistics` takes a number of keys to monitor in particular. So calling `monitor(key1, key2, ...)` will set up monitoring for those keys. We could then something like this: + +```cpp +#include +#include + +#include "lru/lru.hpp" + +using namespace std::chrono_literals; + +struct MyWebServer { + + // We pass 1h to let the cache know that resources are to be invalidated after one hour. + MyWebServer() : cache(1h) { + cache.monitor("index.html"); + } + + std::string get(const std::string& resource_name) { + std::string resource; + if (cache.contains(resource_name)) { + resource = cache.lookup(resource_name); + } else { + resource = fetch_expensively(resource_name); + cache.insert(resource_name, resource); + } + + return resource; + } + + LRU::TimedCache cache; +}; +``` + +Later on, we can use methods like `hits_for("index.html")`, `misses_for("index.html")` or `stats_for("index.html")` on `cache.stats()` to find out how many hits or misses we got for our monitored resource. Note that `stats_for(key)` returns a lightweight `struct` holding hit and miss information about a particular key. + +### Callbacks + +Next to registering statistics, we also allow hook in arbitrary callbacks. The three kinds of callbacks that may be registered are: + +1. Hit callbacks, taking a key and value after a cache hit (registered with `hit_callback()`). +2. Miss callbacks, taking only a key, that was not found in a cache (registered with `miss_callback()`). +3. Access callbacks, taking a key and a boolean indicating a hit or a miss (registered with `access_callback()`). + +Usage could look something like this: + +```cpp +LRU::Cache cache; + +cache.hit_callback([](const auto& key, const auto& value) { + std::clog << "Hit for entry (" + << key << ", " << value << ")" + << std::endl; +}); + +cache.miss_callback([](const auto& key) { + std::clog << "Miss for " << key<< std::endl; +}); + +// Roll your own statistics +std::size_t miss_count = 0; +cache.miss_callback([&miss_count](auto&) { + miss_count += 1; +}); + +cache.access_callback([](const auto& key, bool was_hit) { + std::clog << "Access for " << key + << " was a " << (was_hit ? "hit" : "miss") + << std::endl; +}); +``` + +Note that just like with statistics, these callbacks will only get invoked for lookup and not insertion. + +### Wrapping + +We provide utility functions `LRU::wrap` and `LRU::timed_wrap` that take a function and return a new function, with a (timed) cache attached to it. Feels like Python. Just faster. + +```cpp +#include "lru/lru.hpp" + +int my_expensive_function(int, char, double) { + // ... +} + +auto my_cached_expensive_function = LRU::wrap(my_expensive_function); + +my_cached_expensive_function(1, 'a', 3.14); +``` + +Next to the function to wrap, `LRU::wrap` and `LRU::timed_wrap` take any number of arguments to forward to the constructor of the internal cache: + +```cpp +// Use a capacity of 100 +auto new_function = LRU::wrap(old_function, 1000); + +// Use a time-to-live of 100 milliseconds +auto new_function = LRU::timed_wrap(old_function, 100ms); +``` + +Note that this will *not* cache recursive calls, since we cannot override the actual function symobl. As such we refer to this as "shallow memoization". + +### Lowercase Names + +Not everyone has the same taste. We get that. For this reason, for every public `CamelCase` type name, we've defined a `lower_case` (C++ standard style) alias. You can make these visible by including `lru/lowercase.hpp` instead of `lru/lru.hpp`: + +```cpp +#include +#include + +#include "lru/lowercase.hpp" + +void print(lru::tag::basic_cache) { + std::cout << "basic cache" << '\n'; +} + +void print(lru::tag::timed_cache) { + std::cout << "timed cache" << '\n'; +} + +auto main() -> int { + using namespace std::chrono_literals; + + lru::cache cache; + lru::timed_cache timed_cache(100ms); + + print(cache.tag()); + print(timed_cache.tag()); + + lru::cache::ordered_const_iterator iterator(cache.begin()); + + lru::statistics stats; +} + +``` + +## Documentation + +We have 100% public and private documentation coverage with a decent effort behind it. As such we ask you to RTFM to see the full interface we provide (it is a superset of `std::unordered_map`, minus the new node interface). Documentation can be generated with [Doxygen](http://www.stack.nl/~dimitri/doxygen/) by running the `doxygen` command inside the `docs/` folder. + +Also do check out all the examples in the `examples/` folder! + +## LICENSE + +This project is released under the [MIT License](http://goldsborough.mit-license.org). For more information, see the LICENSE file. + +## Authors + +[Peter Goldsborough](http://goldsborough.me) + [cat](https://goo.gl/IpUmJn) :heart: + +Thanks to [@engelmarkus](https://github.com/engelmarkus) for technical and emotional support. diff --git a/src/3rdParty/lru-cache/cpplint.cfg b/src/3rdParty/lru-cache/cpplint.cfg new file mode 100644 index 0000000000..9be7f77bae --- /dev/null +++ b/src/3rdParty/lru-cache/cpplint.cfg @@ -0,0 +1,3 @@ +# cpplint configuration + +filter=-build/c++11,-whitespace/parens,-runtime/references,-whitespace/operators diff --git a/src/3rdParty/lru-cache/docs/Doxyfile b/src/3rdParty/lru-cache/docs/Doxyfile new file mode 100644 index 0000000000..3a1572d9dc --- /dev/null +++ b/src/3rdParty/lru-cache/docs/Doxyfile @@ -0,0 +1,2310 @@ +# Doxyfile 1.8.6 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "LRU Cache" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 0.1 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = A feature-complete LRU cache implementation. + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = YES + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 2 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = "complexity=\par Complexity\n" + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = YES + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = YES + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. Do not use file names with spaces, bibtex cannot handle them. See +# also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ../include ../README.md + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = README.md + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- +# defined cascading style sheet that is included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet file to the output directory. For an example +# see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /