diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cea13e1c..28857beb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,8 @@ jobs: default: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest, macos-13] + # TODO: add windows-11-arm: https://github.com/conda-forge/conda-forge.github.io/issues/1940 + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest, macos-13] cache: [true, false] runs-on: ${{ matrix.os }} name: default ${{ matrix.cache == true && 'with' || 'without' }} cache (${{ matrix.os }}) @@ -192,14 +193,14 @@ jobs: custom-manifest-path: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest, windows-11-arm] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: ./ with: cache: false - manifest-path: test/default/pixi.toml + manifest-path: test/bzip2/pixi.toml different-log-level: strategy: @@ -259,18 +260,18 @@ jobs: - name: Download pixi binary (Ubuntu) run: | set -o pipefail - curl -L --output "$HOME/custom existing pixi/pixi" https://github.com/prefix-dev/pixi/releases/download/v0.14.0/pixi-x86_64-unknown-linux-musl + curl -L --output "$HOME/custom existing pixi/pixi" https://github.com/prefix-dev/pixi/releases/download/v0.43.0/pixi-x86_64-unknown-linux-musl chmod +x "$HOME/custom existing pixi/pixi" if: matrix.os == 'ubuntu-latest' - name: Download pixi binary (macOS) run: | set -o pipefail - curl -L --output "$HOME/custom existing pixi/pixi" https://github.com/prefix-dev/pixi/releases/download/v0.14.0/pixi-x86_64-apple-darwin + curl -L --output "$HOME/custom existing pixi/pixi" https://github.com/prefix-dev/pixi/releases/download/v0.43.0/pixi-x86_64-apple-darwin chmod +x "$HOME/custom existing pixi/pixi" if: matrix.os == 'macos-latest' - name: Download pixi binary (Windows) run: | - curl -L --output "$HOME/custom existing pixi/pixi.exe" https://github.com/prefix-dev/pixi/releases/download/v0.14.0/pixi-x86_64-pc-windows-msvc.exe + curl -L --output "$HOME/custom existing pixi/pixi.exe" https://github.com/prefix-dev/pixi/releases/download/v0.43.0/pixi-x86_64-pc-windows-msvc.exe if: matrix.os == 'windows-latest' - run: | echo "Path: $PATH" @@ -278,7 +279,7 @@ jobs: - name: Verify pixi version (before setup-pixi) run: | pixi --version - pixi --version | grep -q "pixi 0.14.0" + pixi --version | grep -q "pixi 0.43.0" shell: bash - name: Verify pixi path (before setup-pixi) run: | @@ -299,7 +300,7 @@ jobs: uses: ./ with: cache: false - pixi-version: v0.16.0 + pixi-version: v0.44.0 if: matrix.ignore-reason == 'version' - name: Run Action (url should overwrite preinstalled pixi) uses: ./ @@ -308,10 +309,10 @@ jobs: pixi-url: | ${{ matrix.os == 'ubuntu-latest' && - 'https://github.com/prefix-dev/pixi/releases/download/v0.16.0/pixi-x86_64-unknown-linux-musl' + 'https://github.com/prefix-dev/pixi/releases/download/v0.44.0/pixi-x86_64-unknown-linux-musl' || matrix.os == 'macos-latest' && - 'https://github.com/prefix-dev/pixi/releases/download/v0.16.0/pixi-x86_64-apple-darwin' - || 'https://github.com/prefix-dev/pixi/releases/download/v0.16.0/pixi-x86_64-pc-windows-msvc.exe' + 'https://github.com/prefix-dev/pixi/releases/download/v0.44.0/pixi-x86_64-apple-darwin' + || 'https://github.com/prefix-dev/pixi/releases/download/v0.44.0/pixi-x86_64-pc-windows-msvc.exe' }} if: matrix.ignore-reason == 'url' - name: Create custom bin directory @@ -325,23 +326,23 @@ jobs: # this will implicitly set pixi-version to latest pixi-bin-path: custom-bin/pixi${{ matrix.os == 'windows-latest' && '.exe' || '' }} if: matrix.ignore-reason == 'bin-path' - - name: Verify pixi version (after setup-pixi) - still at 0.14.0 + - name: Verify pixi version (after setup-pixi) - still at 0.43.0 run: | pixi --version - pixi --version | grep -q 0.14.0 + pixi --version | grep -q 0.43.0 shell: bash if: matrix.ignore-reason == 'none' - - name: Verify pixi version (after setup-pixi) - should be 0.16.0 + - name: Verify pixi version (after setup-pixi) - should be 0.44.0 run: | pixi --version - pixi --version | grep -q 0.16.0 + pixi --version | grep -q 0.44.0 shell: bash if: matrix.ignore-reason != 'none' && matrix.ignore-reason != 'bin-path' && matrix.ignore-reason != 'version-latest' - name: Verify pixi version (after setup-pixi) - should be latest run: | pixi --version - pixi --version | grep -vq 0.14.0 - pixi --version | grep -vq 0.16.0 + pixi --version | grep -vq 0.43.0 + pixi --version | grep -vq 0.44.0 shell: bash if: matrix.ignore-reason == 'bin-path' || matrix.ignore-reason == 'version-latest' - name: Verify pixi path (after setup-pixi, no ignore reason) @@ -460,7 +461,8 @@ jobs: pixi-shell: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # TODO: add windows-11-arm: https://github.com/conda-forge/conda-forge.github.io/issues/1940 + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -480,11 +482,14 @@ jobs: - run: | python --version | Select-String "3.11" shell: pixi run pwsh -Command {0} + # TODO investigate: for some reason, this errors on ubuntu-arm + if: matrix.os != 'ubuntu-24.04-arm' pixi-shell-exec: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # TODO: add windows-11-arm: https://github.com/conda-forge/conda-forge.github.io/issues/1940 + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -500,6 +505,8 @@ jobs: - run: | python --version | Select-String "3.11" shell: pixi exec --spec python=3.11.* -- pwsh -Command {0} + # TODO investigate: for some reason, this errors on ubuntu-arm + if: matrix.os != 'ubuntu-24.04-arm' post-cleanup-linux: runs-on: ubuntu-latest @@ -593,7 +600,7 @@ jobs: no-lockfile: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 diff --git a/README.md b/README.md index b1aae61d..a17160a9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m ## Usage ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: pixi-version: v0.44.0 @@ -35,7 +35,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m > [!WARNING] > Since pixi is not yet stable, the API of this action may change between minor versions. -> Please pin the versions of this action to a specific version (i.e., `prefix-dev/setup-pixi@v0.8.7`) to avoid breaking changes. +> Please pin the versions of this action to a specific version (i.e., `prefix-dev/setup-pixi@v0.8.8`) to avoid breaking changes. > You can automatically update the version of this action by using [Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot). > > Put the following in your `.github/dependabot.yml` file to enable Dependabot for your GitHub Actions: @@ -74,7 +74,7 @@ In order to not exceed the [10 GB cache size limit](https://docs.github.com/en/a This can be done by setting the `cache-write` argument. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: cache: true cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} @@ -119,7 +119,7 @@ test: environment: [py311, py312] steps: - uses: actions/checkout@v4 - - uses: prefix-dev/setup-pixi@v0.8.7 + - uses: prefix-dev/setup-pixi@v0.8.8 with: environments: ${{ matrix.environment }} ``` @@ -129,7 +129,7 @@ test: The following example will install both the `py311` and the `py312` environment on the runner. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: # separated by spaces environments: >- @@ -165,7 +165,7 @@ Specify the token using the `auth-token` input argument. This form of authentication (bearer token in the request headers) is mainly used at [prefix.dev](https://prefix.dev). ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: auth-host: prefix.dev auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} @@ -177,7 +177,7 @@ Specify the username and password using the `auth-username` and `auth-password` This form of authentication (HTTP Basic Auth) is used in some enterprise environments with [artifactory](https://jfrog.com/artifactory) for example. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: auth-host: custom-artifactory.com auth-username: ${{ secrets.PIXI_USERNAME }} @@ -190,7 +190,7 @@ Specify the conda-token using the `auth-conda-token` input argument. This form of authentication (token is encoded in URL: `https://my-quetz-instance.com/t//get/custom-channel`) is used at [anaconda.org](https://anaconda.org) or with [quetz instances](https://github.com/mamba-org/quetz). ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: auth-host: anaconda.org # or my-quetz-instance.com auth-conda-token: ${{ secrets.CONDA_TOKEN }} @@ -202,7 +202,7 @@ Specify the S3 key pair using the `auth-access-key-id` and `auth-secret-access-k You can also specify the session token using the `auth-session-token` input argument. ```yaml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: auth-host: s3://my-s3-bucket auth-s3-access-key-id: ${{ secrets.ACCESS_KEY_ID }} @@ -274,7 +274,7 @@ To this end, `setup-pixi` adds all environment variables set when executing `pix As a result, all installed binaries can be accessed without having to call `pixi run`. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: activate-environment: true ``` @@ -282,7 +282,7 @@ As a result, all installed binaries can be accessed without having to call `pixi If you are installing multiple environments, you will need to specify the name of the environment that you want to be activated. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: environments: >- py311 @@ -299,7 +299,7 @@ You can specify whether `setup-pixi` should run `pixi install --frozen` or `pixi See the [official documentation](https://prefix.dev/docs/pixi/cli#install) for more information about the `--frozen` and `--locked` flags. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: locked: true # or @@ -318,7 +318,7 @@ The first one is the debug logging of the action itself. This can be enabled by running the action with the `RUNNER_DEBUG` environment variable set to `true`. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 env: RUNNER_DEBUG: true ``` @@ -336,7 +336,7 @@ The second type is the debug logging of the pixi executable. This can be specified by setting the `log-level` input. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: # one of `q`, `default`, `v`, `vv`, or `vvv`. log-level: vvv @@ -362,7 +362,7 @@ If nothing is specified, `post-cleanup` will default to `true`. On self-hosted runners, you also might want to alter the default pixi install location to a temporary location. You can use `pixi-bin-path: ${{ runner.temp }}/bin/pixi` to do this. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: post-cleanup: true # ${{ runner.temp }}\Scripts\pixi.exe on Windows @@ -378,7 +378,7 @@ You can also use a preinstalled local version of pixi on the runner by not setti This can be overwritten by setting the `manifest-path` input argument. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: manifest-path: pyproject.toml ``` @@ -388,7 +388,7 @@ This can be overwritten by setting the `manifest-path` input argument. If you only want to install pixi and not install the current project, you can use the `run-install` option. ```yml -- uses: prefix-dev/setup-pixi@v0.8.7 +- uses: prefix-dev/setup-pixi@v0.8.8 with: run-install: false ``` diff --git a/dist/index.js b/dist/index.js index 55c95808..a868ae33 100644 --- a/dist/index.js +++ b/dist/index.js @@ -69122,7 +69122,8 @@ var getCondaArch = () => { "linux-x64": "linux-64", "linux-arm64": "linux-aarch64", "linux-ppc64": "linux-ppc64le", - "win32-x64": "win-64" + "win32-x64": "win-64", + "win32-arm64": "win-arm64" }; const arch2 = archDict[`${import_os2.default.platform()}-${import_os2.default.arch()}`]; if (!arch2) { @@ -69158,9 +69159,6 @@ var getPixiUrlFromVersion = (version2) => { const arch2 = getArch(); const platform = getPlatform(); const pixiFile = `pixi-${arch2}-${platform}${platform === "pc-windows-msvc" ? ".exe" : ""}`; - if (arch2 === "aarch64" && platform === "pc-windows-msvc") { - throw new Error("Windows on ARM is currently not supported"); - } if (version2 === "latest") { return `https://github.com/prefix-dev/pixi/releases/latest/download/${pixiFile}`; } diff --git a/package.json b/package.json index c81ea3f3..e76e65ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-pixi", - "version": "0.8.7", + "version": "0.8.8", "private": true, "description": "Action to set up the pixi package manager.", "scripts": { diff --git a/src/util.ts b/src/util.ts index c1dc9130..7488adc9 100644 --- a/src/util.ts +++ b/src/util.ts @@ -13,7 +13,8 @@ export const getCondaArch = () => { 'linux-x64': 'linux-64', 'linux-arm64': 'linux-aarch64', 'linux-ppc64': 'linux-ppc64le', - 'win32-x64': 'win-64' + 'win32-x64': 'win-64', + 'win32-arm64': 'win-arm64' } const arch = archDict[`${os.platform()}-${os.arch()}`] if (!arch) { @@ -52,9 +53,6 @@ export const getPixiUrlFromVersion = (version: string) => { const arch = getArch() const platform = getPlatform() const pixiFile = `pixi-${arch}-${platform}${platform === 'pc-windows-msvc' ? '.exe' : ''}` - if (arch === 'aarch64' && platform === 'pc-windows-msvc') { - throw new Error('Windows on ARM is currently not supported') - } if (version === 'latest') { return `https://github.com/prefix-dev/pixi/releases/latest/download/${pixiFile}` } diff --git a/test/bzip2/pixi.lock b/test/bzip2/pixi.lock new file mode 100644 index 00000000..a028997e --- /dev/null +++ b/test/bzip2/pixi.lock @@ -0,0 +1,229 @@ +version: 6 +environments: + default: + channels: + - url: https://conda.anaconda.org/conda-forge/ + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + linux-aarch64: + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + osx-64: + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + win-64: + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + win-arm64: + - conda: https://conda.anaconda.org/conda-forge/win-arm64/bzip2-1.0.8-hfbbf558_7.conda + - conda: https://conda.anaconda.org/conda-forge/win-arm64/vc-14.3-hfe6595e_26.conda + - conda: https://conda.anaconda.org/conda-forge/win-arm64/vc14_runtime-14.42.34438-hfe4e545_26.conda +packages: +- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + size: 2562 + timestamp: 1578324546067 +- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + md5: 6168d71addc746e8f2b8d57dfd2edcea + depends: + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23712 + timestamp: 1650670790230 +- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 252783 + timestamp: 1720974456583 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + sha256: 2258b0b33e1cb3a9852d47557984abb6e7ea58e3d7f92706ec1f8e879290c4cb + md5: 56398c28220513b9ea13d7b450acfb20 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 189884 + timestamp: 1720974504976 +- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 + md5: 7ed4301d437b59045be7e051a0308211 + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + size: 134188 + timestamp: 1720974491916 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 + md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + size: 122909 + timestamp: 1720974522888 +- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b + md5: 276e7ffe9ffe39688abc665ef0f45596 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + size: 54927 + timestamp: 1720974860185 +- conda: https://conda.anaconda.org/conda-forge/win-arm64/bzip2-1.0.8-hfbbf558_7.conda + sha256: f6b3f14c17f7aebe0ac88e74957644da17288b1b78f8776ed4f04a4e6e4a7d9c + md5: 86d73707c1a3db358fb0b42fb6e33add + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.40.33810 + license: bzip2-1.0.6 + license_family: BSD + size: 54629 + timestamp: 1720974690059 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: ef504d1acbd74b7cc6849ef8af47dd03 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + constrains: + - libgomp 14.2.0 h767d61c_2 + - libgcc-ng ==14.2.0=*_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 847885 + timestamp: 1740240653082 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + sha256: a57f7f9ba2a12f56eafdcd25b6d75f7be10b8fc1a802a58b76a77ca8c66f4503 + md5: 6b4268a60b10f29257b51b9b67ff8d76 + depends: + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==14.2.0=*_2 + - libgomp 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 535507 + timestamp: 1740241069780 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: a2222a6ada71fb478682efe483ce0f92 + depends: + - libgcc 14.2.0 h767d61c_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53758 + timestamp: 1740240660904 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + sha256: 9647f75cddc18b07eebe6e1f21500eed50a6af2c43c84e831b4c7a597e10d226 + md5: 692c2bb75f32cfafb6799cf6d1c5d0e0 + depends: + - libgcc 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53622 + timestamp: 1740241074834 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + sha256: 1a3130e0b9267e781b89399580f3163632d59fe5b0142900d63052ab1a53490e + md5: 06d02030237f4d5b3d9a7e7d348fe3c6 + depends: + - __glibc >=2.17,<3.0.a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 459862 + timestamp: 1740240588123 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + sha256: 4e303711fb7413bf98995beac58e731073099d7a669a3b81e49330ca8da05174 + md5: b11c09d9463daf4cae492d29806b1889 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 462783 + timestamp: 1740241005079 +- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 + md5: 6797b005cd0f439c4c5c9ac565783700 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-MicrosoftWindowsSDK10 + size: 559710 + timestamp: 1728377334097 +- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 + md5: d3f0381e38093bde620a8d85f266ae55 + depends: + - vc14_runtime >=14.42.34433 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17893 + timestamp: 1743195261486 +- conda: https://conda.anaconda.org/conda-forge/win-arm64/vc-14.3-hfe6595e_26.conda + sha256: dc8f1cbbfd91e267a05cdf9bb0a04e983f9df6b02885446dfe0d796c99e67e0a + md5: a57c01b43b14be7d028c84bad0bc1599 + depends: + - vc14_runtime >=14.42.34438 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17394 + timestamp: 1743194837327 +- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 + md5: 91651a36d31aa20c7ba36299fb7068f4 + depends: + - ucrt >=10.0.20348.0 + constrains: + - vs2015_runtime 14.42.34438.* *_26 + license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime + license_family: Proprietary + size: 750733 + timestamp: 1743195092905 +- conda: https://conda.anaconda.org/conda-forge/win-arm64/vc14_runtime-14.42.34438-hfe4e545_26.conda + sha256: 37cf20eb09cf77e261d61ba40b322e010a7043b4247f01420f8241bd68a683ba + md5: 1995ed932d07efb2fe632778484f9fbb + license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime + license_family: Proprietary + size: 15480436 + timestamp: 1743194808631 diff --git a/test/bzip2/pixi.toml b/test/bzip2/pixi.toml new file mode 100644 index 00000000..6a5f290b --- /dev/null +++ b/test/bzip2/pixi.toml @@ -0,0 +1,14 @@ +[project] +name = "test-win-arm64" +channels = ["conda-forge"] +platforms = [ + "linux-64", + "linux-aarch64", + "osx-64", + "osx-arm64", + "win-64", + "win-arm64", +] + +[dependencies] +bzip2 = "*" diff --git a/test/default/pixi.lock b/test/default/pixi.lock index adcfa12c..032b76d4 100644 --- a/test/default/pixi.lock +++ b/test/default/pixi.lock @@ -1,767 +1,602 @@ -version: 3 -metadata: - content_hash: - linux-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d - osx-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d - osx-arm64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d - win-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d - channels: - - url: https://conda.anaconda.org/conda-forge/ - used_env_vars: [] - platforms: - - linux-64 - - osx-64 - - osx-arm64 - - win-64 - sources: [] - time_metadata: null - git_metadata: null - inputs_metadata: null - custom_metadata: null -package: -- platform: linux-64 - name: _libgcc_mutex - version: '0.1' - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - build: conda_forge - arch: x86_64 - subdir: linux-64 - build_number: 0 +version: 6 +environments: + default: + channels: + - url: https://conda.anaconda.org/conda-forge/ + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.43.0-h2797004_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.2-hd590300_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.5-hab00c5b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + subdir: linux-64 + - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + linux-aarch64: + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.0-h5ad3122_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.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/ncurses-6.5-ha32ae93_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.5.0-hd08dc88_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.12-h1683364_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + osx-64: + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.43.0-h58db7d2_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.2-h8a1eda9_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.5-h30d4d87_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + subdir: osx-64 + - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.11.17-hf0a4a13_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.44.2-h091b4b1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.7-hdf0ec26_1_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023d-h0c530f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + win-64: + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.43.0-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.2-hcfcfb64_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.5-h2628c8c_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + subdir: win-64 + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 +packages: +- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 license: None size: 2562 timestamp: 1578324546067 -- platform: linux-64 - name: _openmp_mutex - version: '4.5' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: - libgomp >=7.5.0 - _libgcc_mutex ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - build: 2_gnu - arch: x86_64 - subdir: linux-64 - build_number: 16 constrains: - openmp_impl 9999 license: BSD-3-Clause license_family: BSD size: 23621 timestamp: 1650670423406 -- platform: linux-64 - name: bzip2 - version: 1.0.8 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + md5: 6168d71addc746e8f2b8d57dfd2edcea + depends: + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23712 + timestamp: 1650670790230 +- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + md5: a1fd65c7ccbf10880423d82bca54eb54 + depends: - libgcc-ng >=9.3.0 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - build: h7f98852_4 - arch: x86_64 - subdir: linux-64 - build_number: 4 license: bzip2-1.0.6 license_family: BSD size: 495686 timestamp: 1606604745109 -- platform: osx-64 - name: bzip2 - version: 1.0.8 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 - hash: - md5: 37edc4e6304ca87316e160f5ca0bd1b5 - sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 - build: h0d85af4_4 - arch: x86_64 - subdir: osx-64 - build_number: 4 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + sha256: 2258b0b33e1cb3a9852d47557984abb6e7ea58e3d7f92706ec1f8e879290c4cb + md5: 56398c28220513b9ea13d7b450acfb20 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 189884 + timestamp: 1720974504976 +- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + md5: 37edc4e6304ca87316e160f5ca0bd1b5 license: bzip2-1.0.6 license_family: BSD size: 158829 timestamp: 1618862580095 -- platform: osx-arm64 - name: bzip2 - version: 1.0.8 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - hash: - md5: 1bbc659ca658bfd49a481b5ef7a0f40f - sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f - build: h93a5062_5 - arch: aarch64 - subdir: osx-arm64 - build_number: 5 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda + sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f + md5: 1bbc659ca658bfd49a481b5ef7a0f40f license: bzip2-1.0.6 license_family: BSD size: 122325 timestamp: 1699280294368 -- platform: win-64 - name: bzip2 - version: 1.0.8 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 + sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 + md5: 7c03c66026944073040cb19a4f3ec3c9 + depends: - vc >=14.1,<15.0a0 - vs2015_runtime >=14.16.27012 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 - hash: - md5: 7c03c66026944073040cb19a4f3ec3c9 - sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 - build: h8ffe710_4 - arch: x86_64 - subdir: win-64 - build_number: 4 license: bzip2-1.0.6 license_family: BSD size: 152247 timestamp: 1606605223049 -- platform: linux-64 - name: ca-certificates - version: 2023.7.22 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda - hash: - md5: a73ecd2988327ad4c8f2c331482917f2 - sha256: 525b7b6b5135b952ec1808de84e5eca57c7c7ff144e29ef3e96ae4040ff432c1 - build: hbcca054_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda + sha256: 525b7b6b5135b952ec1808de84e5eca57c7c7ff144e29ef3e96ae4040ff432c1 + md5: a73ecd2988327ad4c8f2c331482917f2 license: ISC size: 149515 timestamp: 1690026108541 -- platform: osx-64 - name: ca-certificates - version: 2023.7.22 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda - hash: - md5: bf2c54c18997bf3542af074c10191771 - sha256: 27de15e18a12117e83ac1eb8a8e52eb65731cc7f0b607a7922206a15e2460c7b - build: h8857fd0_0 - arch: x86_64 - subdir: osx-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda + sha256: 66c6408ee461593cfdb2d78d82e6ed74d04a04ccb51df3ef8a5f35148c9c6eec + md5: 462cb166cd2e26a396f856510a3aff67 + license: ISC + size: 158290 + timestamp: 1738299057652 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda + sha256: 27de15e18a12117e83ac1eb8a8e52eb65731cc7f0b607a7922206a15e2460c7b + md5: bf2c54c18997bf3542af074c10191771 license: ISC size: 149911 timestamp: 1690026363769 -- platform: osx-arm64 - name: ca-certificates - version: 2023.11.17 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.11.17-hf0a4a13_0.conda - hash: - md5: c01da7c77cfcba2107174e25c1d47384 - sha256: 75f4762a55f7e9453a603c967d549bfa0a7a9669d502d103cb6fbf8c86d993c6 - build: hf0a4a13_0 - arch: aarch64 - subdir: osx-arm64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.11.17-hf0a4a13_0.conda + sha256: 75f4762a55f7e9453a603c967d549bfa0a7a9669d502d103cb6fbf8c86d993c6 + md5: c01da7c77cfcba2107174e25c1d47384 license: ISC size: 154444 timestamp: 1700280972188 -- platform: win-64 - name: ca-certificates - version: 2023.7.22 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda - hash: - md5: b1c2327b36f1a25d96f2039b0d3e3739 - sha256: b85a6f307f8e1c803cb570bdfb9e4d811a361417873ecd2ecf687587405a72e0 - build: h56e8100_0 - arch: x86_64 - subdir: win-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda + sha256: b85a6f307f8e1c803cb570bdfb9e4d811a361417873ecd2ecf687587405a72e0 + md5: b1c2327b36f1a25d96f2039b0d3e3739 license: ISC size: 150013 timestamp: 1690026269050 -- platform: linux-64 - name: ld_impl_linux-64 - version: '2.40' - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda - hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd - build: h41732ed_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: 7aca3059a1729aa76c597603f10b0dd3 constrains: - binutils_impl_linux-64 2.40 license: GPL-3.0-only license_family: GPL size: 704696 timestamp: 1674833944779 -- platform: linux-64 - name: libexpat - version: 2.5.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_4.conda + sha256: 016832a70b0aa97e1c4e47e23c00b0c34def679de25146736df353199f684f0d + md5: 80c9ad5e05e91bb6c0967af3880c9742 + constrains: + - binutils_impl_linux-aarch64 2.43 + license: GPL-3.0-only + license_family: GPL + size: 699058 + timestamp: 1740155620594 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda + sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 + md5: 6305a3dd2752c76335295da4e581f2fd + depends: - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda - hash: - md5: 6305a3dd2752c76335295da4e581f2fd - sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 - build: hcb278e6_1 - arch: x86_64 - subdir: linux-64 - build_number: 1 constrains: - expat 2.5.0.* license: MIT license_family: MIT size: 77980 timestamp: 1680190528313 -- platform: osx-64 - name: libexpat - version: 2.5.0 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda - hash: - md5: 6c81cb022780ee33435cca0127dd43c9 - sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 - build: hf0c8a7f_1 - arch: x86_64 - subdir: osx-64 - build_number: 1 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.7.0-h5ad3122_0.conda + sha256: e3a0d95fe787cccf286f5dced9fa9586465d3cd5ec8e04f7ad7f0e72c4afd089 + md5: d41a057e7968705dae8dcb7c8ba2c8dd + depends: + - libgcc >=13 + constrains: + - expat 2.7.0.* + license: MIT + license_family: MIT + size: 73155 + timestamp: 1743432002397 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda + sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 + md5: 6c81cb022780ee33435cca0127dd43c9 constrains: - expat 2.5.0.* license: MIT license_family: MIT size: 69602 timestamp: 1680191040160 -- platform: osx-arm64 - name: libexpat - version: 2.5.0 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda - hash: - md5: 5a097ad3d17e42c148c9566280481317 - sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 - build: hb7217d7_1 - arch: aarch64 - subdir: osx-arm64 - build_number: 1 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 + md5: 5a097ad3d17e42c148c9566280481317 constrains: - expat 2.5.0.* license: MIT license_family: MIT size: 63442 timestamp: 1680190916539 -- platform: win-64 - name: libexpat - version: 2.5.0 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda - hash: - md5: 636cc3cbbd2e28bcfd2f73b2044aac2c - sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf - build: h63175ca_1 - arch: x86_64 - subdir: win-64 - build_number: 1 +- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda + sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf + md5: 636cc3cbbd2e28bcfd2f73b2044aac2c constrains: - expat 2.5.0.* license: MIT license_family: MIT size: 138689 timestamp: 1680190844101 -- platform: linux-64 - name: libffi - version: 3.4.2 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + depends: - libgcc-ng >=9.4.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - build: h7f98852_5 - arch: x86_64 - subdir: linux-64 - build_number: 5 license: MIT license_family: MIT size: 58292 timestamp: 1636488182923 -- platform: osx-64 - name: libffi - version: 3.4.2 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - hash: - md5: ccb34fb14960ad8b125962d3d79b31a9 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - build: h0d85af4_5 - arch: x86_64 - subdir: osx-64 - build_number: 5 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + sha256: 608b8c8b0315423e524b48733d91edd43f95cb3354a765322ac306a858c2cd2e + md5: 15a131f30cae36e9a655ca81fee9a285 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 55847 + timestamp: 1743434586764 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + md5: ccb34fb14960ad8b125962d3d79b31a9 license: MIT license_family: MIT size: 51348 timestamp: 1636488394370 -- platform: osx-arm64 - name: libffi - version: 3.4.2 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - hash: - md5: 086914b672be056eb70fd4285b6783b6 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca - build: h3422bc3_5 - arch: aarch64 - subdir: osx-arm64 - build_number: 5 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + md5: 086914b672be056eb70fd4285b6783b6 license: MIT license_family: MIT size: 39020 timestamp: 1636488587153 -- platform: win-64 - name: libffi - version: 3.4.2 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 + md5: 2c96d1b6915b408893f9472569dee135 + depends: - vc >=14.1,<15.0a0 - vs2015_runtime >=14.16.27012 - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - hash: - md5: 2c96d1b6915b408893f9472569dee135 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - build: h8ffe710_5 - arch: x86_64 - subdir: win-64 - build_number: 5 license: MIT license_family: MIT size: 42063 timestamp: 1636489106777 -- platform: linux-64 - name: libgcc-ng - version: 13.1.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + sha256: a57f7f9ba2a12f56eafdcd25b6d75f7be10b8fc1a802a58b76a77ca8c66f4503 + md5: 6b4268a60b10f29257b51b9b67ff8d76 + depends: + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==14.2.0=*_2 + - libgomp 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 535507 + timestamp: 1740241069780 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda + sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 + md5: cd93f779ff018dd85c7544c015c9db3c + depends: - _libgcc_mutex ==0.1 conda_forge - _openmp_mutex >=4.5 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda - hash: - md5: cd93f779ff018dd85c7544c015c9db3c - sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 - build: he5830b7_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 constrains: - libgomp 13.1.0 he5830b7_0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL size: 776294 timestamp: 1685816209343 -- platform: linux-64 - name: libgomp - version: 13.1.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + sha256: 9647f75cddc18b07eebe6e1f21500eed50a6af2c43c84e831b4c7a597e10d226 + md5: 692c2bb75f32cfafb6799cf6d1c5d0e0 + depends: + - libgcc 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53622 + timestamp: 1740241074834 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d + md5: 56ca14d57ac29a75d23a39eb3ee0ddeb + depends: - _libgcc_mutex ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda - hash: - md5: 56ca14d57ac29a75d23a39eb3ee0ddeb - sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d - build: he5830b7_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL size: 419184 timestamp: 1685816132543 -- platform: linux-64 - name: libnsl - version: 2.0.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + sha256: 4e303711fb7413bf98995beac58e731073099d7a669a3b81e49330ca8da05174 + md5: b11c09d9463daf4cae492d29806b1889 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 462783 + timestamp: 1740241005079 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_0.conda + sha256: fee534c3fe3911a5164c438b40c7d3458d93086decd359ef72f0d04a7a5d82f4 + md5: 775d36ea4e469b0c049a6f2cd6253d82 + depends: + - libgcc >=13 + license: 0BSD + size: 124919 + timestamp: 1743773576913 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + md5: 39b1328babf85c7c3a61636d9cd50206 + depends: - libgcc-ng >=9.4.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 - hash: - md5: 39b1328babf85c7c3a61636d9cd50206 - sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad - build: h7f98852_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: GPL-2.0-only license_family: GPL size: 31236 timestamp: 1633040059627 -- platform: linux-64 - name: libsqlite - version: 3.43.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + sha256: fd18c2b75d7411096428d36a70b36b1a17e31f7b8956b6905d145792d49e97f8 + md5: c14f32510f694e3185704d89967ec422 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-only + license_family: GPL + size: 34501 + timestamp: 1697358973269 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.43.0-h2797004_0.conda + sha256: e715fab7ec6b3f3df2a5962ef372ff0f871d215fe819482dcd80357999513652 + md5: 903fa782a9067d5934210df6d79220f6 + depends: - libzlib >=1.2.13,<1.3.0a0 - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.43.0-h2797004_0.conda - hash: - md5: 903fa782a9067d5934210df6d79220f6 - sha256: e715fab7ec6b3f3df2a5962ef372ff0f871d215fe819482dcd80357999513652 - build: h2797004_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: Unlicense size: 840871 timestamp: 1692911324643 -- platform: osx-64 - name: libsqlite - version: 3.43.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_2.conda + sha256: c0eb05c6db32b52cc80e06a2badfa11fbaa66b49f1e7cff77aa691b74a294dcc + md5: 7c45959e187fd3313f9f1734464baecc + depends: + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: Unlicense + size: 916419 + timestamp: 1742083699438 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.43.0-h58db7d2_0.conda + sha256: 3c3e06284c3426126901891675d09e181c651b2db01df9884da2613015e3fbac + md5: e2195038e85e49e26fbeb7efc0ad38c4 + depends: - libzlib >=1.2.13,<1.3.0a0 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.43.0-h58db7d2_0.conda - hash: - md5: e2195038e85e49e26fbeb7efc0ad38c4 - sha256: 3c3e06284c3426126901891675d09e181c651b2db01df9884da2613015e3fbac - build: h58db7d2_0 - arch: x86_64 - subdir: osx-64 - build_number: 0 license: Unlicense size: 891003 timestamp: 1692911591798 -- platform: osx-arm64 - name: libsqlite - version: 3.44.2 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.44.2-h091b4b1_0.conda + sha256: f0dc2fe69eddb4bab72ff6bb0da51d689294f466ee1b01e80ced1e7878a21aa5 + md5: d7e1af696cfadec251a0abdd7b79ed77 + depends: - libzlib >=1.2.13,<1.3.0a0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.44.2-h091b4b1_0.conda - hash: - md5: d7e1af696cfadec251a0abdd7b79ed77 - sha256: f0dc2fe69eddb4bab72ff6bb0da51d689294f466ee1b01e80ced1e7878a21aa5 - build: h091b4b1_0 - arch: aarch64 - subdir: osx-arm64 - build_number: 0 license: Unlicense size: 815254 timestamp: 1700863572318 -- platform: win-64 - name: libsqlite - version: 3.43.0 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.43.0-hcfcfb64_0.conda + sha256: d79128a279c8e8b4afeef5cfe9d4302a2fd65b1af3973732d92a7cc396d5332f + md5: 16c6f482e70cb3da41d0bee5d49c6bf3 + depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.43.0-hcfcfb64_0.conda - hash: - md5: 16c6f482e70cb3da41d0bee5d49c6bf3 - sha256: d79128a279c8e8b4afeef5cfe9d4302a2fd65b1af3973732d92a7cc396d5332f - build: hcfcfb64_0 - arch: x86_64 - subdir: win-64 - build_number: 0 license: Unlicense size: 846526 timestamp: 1692911612959 -- platform: linux-64 - name: libuuid - version: 2.38.1 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b + depends: - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - hash: - md5: 40b61aab5c7ba9ff276c41cfffe6b80b - sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 - build: h0b41bf4_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: BSD-3-Clause license_family: BSD size: 33601 timestamp: 1680112270483 -- platform: linux-64 - name: libzlib - version: 1.2.13 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + sha256: 616277b0c5f7616c2cdf36f6c316ea3f9aa5bb35f2d4476a349ab58b9b91675f + md5: 000e30b09db0b7c775b21695dff30969 + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 35720 + timestamp: 1680113474501 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + sha256: 6b46c397644091b8a26a3048636d10b989b1bf266d4be5e9474bf763f828f41f + md5: b4df5d7d4b63579d081fd3a4cf99740e + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 114269 + timestamp: 1702724369203 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: f36c115f1ee199da648e0597ec2047ad + depends: - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda - hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 - build: hd590300_5 - arch: x86_64 - subdir: linux-64 - build_number: 5 constrains: - zlib 1.2.13 *_5 license: Zlib license_family: Other size: 61588 timestamp: 1686575217516 -- platform: osx-64 - name: libzlib - version: 1.2.13 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda - hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 - build: h8a1eda9_5 - arch: x86_64 - subdir: osx-64 - build_number: 5 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84 + md5: 08aad7cbe9f5a6b460d0976076b6ae64 + depends: + - libgcc >=13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 66657 + timestamp: 1727963199518 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: 4a3ad23f6e16f99c04e166767193d700 constrains: - zlib 1.2.13 *_5 license: Zlib license_family: Other size: 59404 timestamp: 1686575566695 -- platform: osx-arm64 - name: libzlib - version: 1.2.13 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda - hash: - md5: 1a47f5236db2e06a320ffa0392f81bd8 - sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a - build: h53f4e23_5 - arch: aarch64 - subdir: osx-arm64 - build_number: 5 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a + md5: 1a47f5236db2e06a320ffa0392f81bd8 constrains: - zlib 1.2.13 *_5 license: Zlib license_family: Other size: 48102 timestamp: 1686575426584 -- platform: win-64 - name: libzlib - version: 1.2.13 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda - hash: - md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 - sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 - build: hcfcfb64_5 - arch: x86_64 - subdir: win-64 - build_number: 5 constrains: - zlib 1.2.13 *_5 license: Zlib license_family: Other size: 55800 timestamp: 1686575452215 -- platform: linux-64 - name: ncurses - version: '6.4' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda + sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a + md5: 681105bccc2a3f7f1a837d47d39c9179 + depends: - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda - hash: - md5: 681105bccc2a3f7f1a837d47d39c9179 - sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a - build: hcb278e6_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: X11 AND BSD-3-Clause size: 880967 timestamp: 1686076725450 -- platform: osx-64 - name: ncurses - version: '6.4' - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda - hash: - md5: c3dbae2411164d9b02c69090a9a91857 - sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd - build: hf0c8a7f_0 - arch: x86_64 - subdir: osx-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda + sha256: 91cfb655a68b0353b2833521dc919188db3d8a7f4c64bea2c6a7557b24747468 + md5: 182afabe009dc78d8b73100255ee6868 + depends: + - libgcc >=13 + license: X11 AND BSD-3-Clause + size: 926034 + timestamp: 1738196018799 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda + sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd + md5: c3dbae2411164d9b02c69090a9a91857 license: X11 AND BSD-3-Clause size: 828118 timestamp: 1686077056765 -- platform: osx-arm64 - name: ncurses - version: '6.4' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda + sha256: f6890634f815e8408d08f36503353f8dfd7b055e4c3b9ea2ee52180255cf4b0a + md5: 52b6f254a7b9663e854f44b6570ed982 + depends: - __osx >=10.9 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda - hash: - md5: 52b6f254a7b9663e854f44b6570ed982 - sha256: f6890634f815e8408d08f36503353f8dfd7b055e4c3b9ea2ee52180255cf4b0a - build: h463b476_2 - arch: aarch64 - subdir: osx-arm64 - build_number: 2 license: X11 AND BSD-3-Clause size: 794741 timestamp: 1698751574074 -- platform: linux-64 - name: openssl - version: 3.1.2 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.2-hd590300_0.conda + sha256: b113fbac327c90cdc29c2fac0f2a2e5cc0d1918b2a5ffa7abd49b695b9b3c6e9 + md5: e5ac5227582d6c83ccf247288c0eb095 + depends: - ca-certificates * - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.2-hd590300_0.conda - hash: - md5: e5ac5227582d6c83ccf247288c0eb095 - sha256: b113fbac327c90cdc29c2fac0f2a2e5cc0d1918b2a5ffa7abd49b695b9b3c6e9 - build: hd590300_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache size: 2646546 timestamp: 1690948722548 -- platform: osx-64 - name: openssl - version: 3.1.2 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/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: 3641486 + timestamp: 1744134183977 +- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.2-h8a1eda9_0.conda + sha256: 5d28695e086e69150e0b674f11ad87df603870fb3256bd590e305b708fc1faf7 + md5: 85d5377436d19183c8ac5afbb8e713a1 + depends: - ca-certificates * - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.2-h8a1eda9_0.conda - hash: - md5: 85d5377436d19183c8ac5afbb8e713a1 - sha256: 5d28695e086e69150e0b674f11ad87df603870fb3256bd590e305b708fc1faf7 - build: h8a1eda9_0 - arch: x86_64 - subdir: osx-64 - build_number: 0 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache size: 2326918 timestamp: 1690949380796 -- platform: osx-arm64 - name: openssl - version: 3.2.1 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_0.conda + sha256: 13663fcd4abc8681b31ccbad39800fee2127cb6159b51a989ed48a816af36cf5 + md5: 421cc6e8715447b73c2c57dcf78cb9d2 + depends: - ca-certificates - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.1-h0d3ecfb_0.conda - hash: - md5: 421cc6e8715447b73c2c57dcf78cb9d2 - sha256: 13663fcd4abc8681b31ccbad39800fee2127cb6159b51a989ed48a816af36cf5 - build: h0d3ecfb_0 - arch: aarch64 - subdir: osx-arm64 - build_number: 0 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache size: 2862719 timestamp: 1706635779319 -- platform: win-64 - name: openssl - version: 3.1.2 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.2-hcfcfb64_0.conda + sha256: 676b78a786bf845cdca96fa830459f1ffa6603954a88ad86f476456d0a909f4e + md5: 79b3f40f27cd80a265c276cea6714507 + depends: - ucrt >=10.0.20348.0 - ca-certificates * - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.2-hcfcfb64_0.conda - hash: - md5: 79b3f40f27cd80a265c276cea6714507 - sha256: 676b78a786bf845cdca96fa830459f1ffa6603954a88ad86f476456d0a909f4e - build: hcfcfb64_0 - arch: x86_64 - subdir: win-64 - build_number: 0 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache size: 7408520 timestamp: 1690950343576 -- platform: linux-64 - name: python - version: 3.11.5 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.5-hab00c5b_0_cpython.conda + sha256: 920fe89dbc4aaf910e7a37cb4d865eaabe7ff1e5e6c3888d56fe7742ab181448 + md5: f0288cb82594b1cbc71111d1cd3c5422 + depends: - openssl >=3.1.2,<4.0a0 - readline >=8.2,<9.0a0 - libzlib >=1.2.13,<1.3.0a0 @@ -777,25 +612,40 @@ package: - libffi >=3.4,<4.0a0 - tk >=8.6.12,<8.7.0a0 - bzip2 >=1.0.8,<2.0a0 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.5-hab00c5b_0_cpython.conda - hash: - md5: f0288cb82594b1cbc71111d1cd3c5422 - sha256: 920fe89dbc4aaf910e7a37cb4d865eaabe7ff1e5e6c3888d56fe7742ab181448 - build: hab00c5b_0_cpython - arch: x86_64 - subdir: linux-64 - build_number: 0 constrains: - python_abi 3.11.* *_cp311 license: Python-2.0 size: 30813149 timestamp: 1693108705832 -- platform: osx-64 - name: python - version: 3.11.5 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.12-h1683364_0_cpython.conda + sha256: bcca2ab3ca625a643f5b15a31d75d05399b49800cfb2e53fad69521ececef759 + md5: 0ad49c28cc086b3618d96fca13e6711b + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-aarch64 >=2.36.1 + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=13 + - liblzma >=5.8.1,<6.0a0 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.5.0,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 15353712 + timestamp: 1744323091686 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.5-h30d4d87_0_cpython.conda + sha256: b836e2a96526fca7f4686fc5297fecd05f90992902eb9612f50da577932cf48c + md5: ef2b263b5b02d2acf00908bb07c14b12 + depends: - tzdata * - openssl >=3.1.2,<4.0a0 - readline >=8.2,<9.0a0 @@ -807,25 +657,16 @@ package: - bzip2 >=1.0.8,<2.0a0 - xz >=5.2.6,<6.0a0 - ncurses >=6.4,<7.0a0 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.5-h30d4d87_0_cpython.conda - hash: - md5: ef2b263b5b02d2acf00908bb07c14b12 - sha256: b836e2a96526fca7f4686fc5297fecd05f90992902eb9612f50da577932cf48c - build: h30d4d87_0_cpython - arch: x86_64 - subdir: osx-64 - build_number: 0 constrains: - python_abi 3.11.* *_cp311 license: Python-2.0 size: 15475266 timestamp: 1693108451698 -- platform: osx-arm64 - name: python - version: 3.11.7 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.7-hdf0ec26_1_cpython.conda + build_number: 1 + sha256: 92ac26592b53ddb646237c0dd83fd073d2f181dd1553e7ac8428b4475ff5560b + md5: f0f1fcde592e067a5ca2187d6f232bd3 + depends: - bzip2 >=1.0.8,<2.0a0 - libexpat >=2.5.0,<3.0a0 - libffi >=3.4,<4.0a0 @@ -837,25 +678,15 @@ package: - tk >=8.6.13,<8.7.0a0 - tzdata - xz >=5.2.6,<6.0a0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.7-hdf0ec26_1_cpython.conda - hash: - md5: f0f1fcde592e067a5ca2187d6f232bd3 - sha256: 92ac26592b53ddb646237c0dd83fd073d2f181dd1553e7ac8428b4475ff5560b - build: hdf0ec26_1_cpython - arch: aarch64 - subdir: osx-arm64 - build_number: 1 constrains: - python_abi 3.11.* *_cp311 license: Python-2.0 size: 14567667 timestamp: 1703342625860 -- platform: win-64 - name: python - version: 3.11.5 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.5-h2628c8c_0_cpython.conda + sha256: 0a44437eaf81055b91c1ae27a4be58609c31b3e7b94bd4d3e10204795c51bf04 + md5: 28e01783b6a42f295fe07c7790aa75a1 + depends: - tzdata * - openssl >=3.1.2,<4.0a0 - libffi >=3.4,<4.0a0 @@ -868,375 +699,197 @@ package: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - xz >=5.2.6,<6.0a0 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.5-h2628c8c_0_cpython.conda - hash: - md5: 28e01783b6a42f295fe07c7790aa75a1 - sha256: 0a44437eaf81055b91c1ae27a4be58609c31b3e7b94bd4d3e10204795c51bf04 - build: h2628c8c_0_cpython - arch: x86_64 - subdir: win-64 - build_number: 0 constrains: - python_abi 3.11.* *_cp311 license: Python-2.0 size: 18153848 timestamp: 1693106905439 -- platform: linux-64 - name: readline - version: '8.2' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 + md5: 47d31b792659ce70f470b5c82fdfb7a4 + depends: - ncurses >=6.3,<7.0a0 - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - hash: - md5: 47d31b792659ce70f470b5c82fdfb7a4 - sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 - build: h8228510_1 - arch: x86_64 - subdir: linux-64 - build_number: 1 license: GPL-3.0-only license_family: GPL size: 281456 timestamp: 1679532220005 -- platform: osx-64 - name: readline - version: '8.2' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + sha256: 54bed3a3041befaa9f5acde4a37b1a02f44705b7796689574bcf9d7beaad2959 + md5: c0f08fc2737967edde1a272d4bf41ed9 + depends: + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 291806 + timestamp: 1740380591358 +- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 + md5: f17f77f2acf4d344734bda76829ce14e + depends: - ncurses >=6.3,<7.0a0 - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - hash: - md5: f17f77f2acf4d344734bda76829ce14e - sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 - build: h9e318b2_1 - arch: x86_64 - subdir: osx-64 - build_number: 1 license: GPL-3.0-only license_family: GPL size: 255870 timestamp: 1679532707590 -- platform: osx-arm64 - name: readline - version: '8.2' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 + md5: 8cbb776a2f641b943d413b3e19df71f4 + depends: - ncurses >=6.3,<7.0a0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - hash: - md5: 8cbb776a2f641b943d413b3e19df71f4 - sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 - build: h92ec313_1 - arch: aarch64 - subdir: osx-arm64 - build_number: 1 license: GPL-3.0-only license_family: GPL size: 250351 timestamp: 1679532511311 -- platform: linux-64 - name: tk - version: 8.6.12 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + depends: - libzlib >=1.2.11,<1.3.0a0 - libgcc-ng >=9.4.0 - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 - hash: - md5: 5b8c42eb62e9fc961af70bdd6a26e168 - sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 - build: h27826a3_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: TCL license_family: BSD size: 3456292 timestamp: 1645033615058 -- platform: osx-64 - name: tk - version: 8.6.12 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + sha256: 7fa27cc512d3a783f38bd16bbbffc008807372499d5b65d089a8e43bde9db267 + md5: f75105e0585851f818e0009dd1dde4dc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3351802 + timestamp: 1695506242997 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + md5: 8e9480d9c47061db2ed1b4ecce519a7f + depends: - libzlib >=1.2.11,<1.3.0a0 - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 - hash: - md5: 8e9480d9c47061db2ed1b4ecce519a7f - sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 - build: h5dbffcc_0 - arch: x86_64 - subdir: osx-64 - build_number: 0 license: TCL license_family: BSD size: 3531016 timestamp: 1645032719565 -- platform: osx-arm64 - name: tk - version: 8.6.13 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 + md5: b50a57ba89c32b62428b71a875291c9b + depends: - libzlib >=1.2.13,<1.3.0a0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - hash: - md5: b50a57ba89c32b62428b71a875291c9b - sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 - build: h5083fa2_1 - arch: aarch64 - subdir: osx-arm64 - build_number: 1 license: TCL license_family: BSD size: 3145523 timestamp: 1699202432999 -- platform: win-64 - name: tk - version: 8.6.12 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 + sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 + md5: c69a5047cc9291ae40afd4a1ad6f0c0f + depends: - vc >=14.1,<15 - vs2015_runtime >=14.16.27033 - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 - hash: - md5: c69a5047cc9291ae40afd4a1ad6f0c0f - sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 - build: h8ffe710_0 - arch: x86_64 - subdir: win-64 - build_number: 0 license: TCL license_family: BSD size: 3681762 timestamp: 1645033031535 -- platform: linux-64 - name: tzdata - version: 2023c - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda - hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - build: h71feb2d_0 - arch: x86_64 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda subdir: linux-64 - build_number: 0 + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 939e3e74d8be4dac89ce83b20de2492a license: LicenseRef-Public-Domain - noarch: generic size: 117580 timestamp: 1680041306008 -- platform: osx-64 - name: tzdata - version: 2023c - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda - hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - build: h71feb2d_0 - arch: x86_64 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda subdir: osx-64 - build_number: 0 + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 939e3e74d8be4dac89ce83b20de2492a + license: LicenseRef-Public-Domain + size: 117580 + timestamp: 1680041306008 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + subdir: win-64 + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 939e3e74d8be4dac89ce83b20de2492a license: LicenseRef-Public-Domain - noarch: generic size: 117580 timestamp: 1680041306008 -- platform: osx-arm64 - name: tzdata - version: 2023d - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023d-h0c530f3_0.conda - hash: - md5: 8dee24b8be2d9ff81e7bd4d7d97ff1b0 - sha256: 04f2ab3e36f2015841551415bf16bf62933bd94b7085d4be5493b388e95a9c3d - build: h0c530f3_0 - arch: aarch64 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023d-h0c530f3_0.conda subdir: osx-arm64 - build_number: 0 + sha256: 04f2ab3e36f2015841551415bf16bf62933bd94b7085d4be5493b388e95a9c3d + md5: 8dee24b8be2d9ff81e7bd4d7d97ff1b0 license: LicenseRef-Public-Domain - noarch: generic size: 119639 timestamp: 1703250910370 -- platform: win-64 - name: tzdata - version: 2023c - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda - hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - build: h71feb2d_0 - arch: x86_64 - subdir: win-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: 4222072737ccff51314b5ece9c7d6f5a license: LicenseRef-Public-Domain - noarch: generic - size: 117580 - timestamp: 1680041306008 -- platform: win-64 - name: ucrt - version: 10.0.22621.0 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 - hash: - md5: 72608f6cd3e5898229c3ea16deb1ac43 - sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 - build: h57928b3_0 - arch: x86_64 - subdir: win-64 - build_number: 0 + size: 122968 + timestamp: 1742727099393 +- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 + md5: 72608f6cd3e5898229c3ea16deb1ac43 constrains: - vs2015_runtime >=14.29.30037 license: LicenseRef-Proprietary license_family: PROPRIETARY size: 1283972 timestamp: 1666630199266 -- platform: win-64 - name: vc - version: '14.3' - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda + sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 + md5: 67ff6791f235bb606659bf2a5c169191 + depends: - vc14_runtime >=14.36.32532 - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda - hash: - md5: 67ff6791f235bb606659bf2a5c169191 - sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 - build: h64f974e_17 - arch: x86_64 - subdir: win-64 - build_number: 17 - track_features: vc14 + track_features: + - vc14 license: BSD-3-Clause license_family: BSD size: 17176 timestamp: 1688020629925 -- platform: win-64 - name: vc14_runtime - version: 14.36.32532 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda + sha256: e76986c555647347a0185e646ef65625dabed60da255f6b30367df8bd6dc6cd8 + md5: 91c1ecaf3996889532fc0456178b1058 + depends: - ucrt >=10.0.20348.0 - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda - hash: - md5: 91c1ecaf3996889532fc0456178b1058 - sha256: e76986c555647347a0185e646ef65625dabed60da255f6b30367df8bd6dc6cd8 - build: hfdfe4a8_17 - arch: x86_64 - subdir: win-64 - build_number: 17 constrains: - vs2015_runtime 14.36.32532.* *_17 license: LicenseRef-ProprietaryMicrosoft license_family: Proprietary size: 740599 timestamp: 1688020615962 -- platform: win-64 - name: vs2015_runtime - version: 14.36.32532 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda + sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 + md5: 4618046c39f7c81861e53ded842e738a + depends: - vc14_runtime >=14.36.32532 - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda - hash: - md5: 4618046c39f7c81861e53ded842e738a - sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 - build: h05e6639_17 - arch: x86_64 - subdir: win-64 - build_number: 17 license: BSD-3-Clause license_family: BSD size: 17207 timestamp: 1688020635322 -- platform: linux-64 - name: xz - version: 5.2.6 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + md5: 2161070d867d1b1204ea749c8eec4ef0 + depends: - libgcc-ng >=12 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - build: h166bdaf_0 - arch: x86_64 - subdir: linux-64 - build_number: 0 license: LGPL-2.1 and GPL-2.0 size: 418368 timestamp: 1660346797927 -- platform: osx-64 - name: xz - version: 5.2.6 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - hash: - md5: a72f9d4ea13d55d745ff1ed594747f10 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 - build: h775f41a_0 - arch: x86_64 - subdir: osx-64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + md5: a72f9d4ea13d55d745ff1ed594747f10 license: LGPL-2.1 and GPL-2.0 size: 238119 timestamp: 1660346964847 -- platform: osx-arm64 - name: xz - version: 5.2.6 - category: main - manager: conda - dependencies: [] - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - hash: - md5: 39c6b54e94014701dd157f4f576ed211 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - build: h57fd34a_0 - arch: aarch64 - subdir: osx-arm64 - build_number: 0 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + md5: 39c6b54e94014701dd157f4f576ed211 license: LGPL-2.1 and GPL-2.0 size: 235693 timestamp: 1660346961024 -- platform: win-64 - name: xz - version: 5.2.6 - category: main - manager: conda - dependencies: +- conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 + md5: 515d77642eaa3639413c6b1bc3f94219 + depends: - vc >=14.1,<15 - vs2015_runtime >=14.16.27033 - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - hash: - md5: 515d77642eaa3639413c6b1bc3f94219 - sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 - build: h8d14728_0 - arch: x86_64 - subdir: win-64 - build_number: 0 license: LGPL-2.1 and GPL-2.0 size: 217804 timestamp: 1660346976440 diff --git a/test/default/pixi.toml b/test/default/pixi.toml index 3866dfe9..de2113c8 100644 --- a/test/default/pixi.toml +++ b/test/default/pixi.toml @@ -1,10 +1,7 @@ [project] name = "test-default" -version = "0.1.0" -description = "Add a short description here" -authors = ["Pavel Zwerschke "] channels = ["conda-forge"] -platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"] +platforms = ["linux-64", "linux-aarch64", "osx-64", "osx-arm64", "win-64"] [tasks] test = "python -c 'print(\"Hello world!\")'" diff --git a/test/no-lockfile/pixi.toml b/test/no-lockfile/pixi.toml index a39ceaa7..25b299ec 100644 --- a/test/no-lockfile/pixi.toml +++ b/test/no-lockfile/pixi.toml @@ -1,10 +1,7 @@ [project] name = "test-no-lockfile" -version = "0.1.0" -description = "Add a short description here" -authors = ["Pavel Zwerschke "] channels = ["conda-forge"] -platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"] +platforms = ["linux-64", "linux-aarch64", "osx-64", "osx-arm64", "win-64"] [tasks] test = "python -c 'print(\"Hello world!\")'"