Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-additional.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

env:
FORCE_COLOR: 3
PIXI_VERSION: "v0.58.0"
PIXI_VERSION: "v0.62.2"

jobs:
detect-ci-trigger:
Expand All @@ -37,7 +37,7 @@ jobs:
cache-pixi-lock:
uses: ./.github/workflows/cache-pixi-lock.yml
with:
pixi-version: "v0.58.0" # keep in sync with env var above
pixi-version: "v0.62.2" # keep in sync with env var above
doctest:
name: Doctests
runs-on: "ubuntu-latest"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

env:
FORCE_COLOR: 3
PIXI_VERSION: "v0.58.0"
PIXI_VERSION: "v0.62.2"

jobs:
detect-ci-trigger:
Expand All @@ -38,7 +38,7 @@ jobs:
cache-pixi-lock:
uses: ./.github/workflows/cache-pixi-lock.yml
with:
pixi-version: "v0.58.0" # keep in sync with env var above
pixi-version: "v0.62.2" # keep in sync with env var above
test:
name: "${{ matrix.os }} | ${{ matrix.pixi-env }}${{ matrix.pytest-addopts && format(' ({0})', matrix.pytest-addopts) || '' }}"
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hypothesis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

env:
FORCE_COLOR: 3
PIXI_VERSION: "v0.58.0"
PIXI_VERSION: "v0.62.2"

jobs:
detect-ci-trigger:
Expand All @@ -37,7 +37,7 @@ jobs:
cache-pixi-lock:
uses: ./.github/workflows/cache-pixi-lock.yml
with:
pixi-version: "v0.58.0" # keep in sync with env var above
pixi-version: "v0.62.2" # keep in sync with env var above

hypothesis:
name: Slow Hypothesis Tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upstream-dev-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

env:
FORCE_COLOR: 3
PIXI_VERSION: "v0.58.0"
PIXI_VERSION: "v0.62.2"

jobs:
detect-ci-trigger:
Expand All @@ -40,7 +40,7 @@ jobs:
cache-pixi-lock:
uses: ./.github/workflows/cache-pixi-lock.yml
with:
pixi-version: "v0.58.0" # keep in sync with env var above
pixi-version: "v0.62.2" # keep in sync with env var above
upstream-dev:
name: upstream-dev
runs-on: ubuntu-latest
Expand Down
9 changes: 3 additions & 6 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,10 @@ sparse = "0.15.*"
toolz = "0.12.*"
zarr = "2.18.*"

# TODO: Remove `platforms` restriction once pandas nightly has win-64 wheels again.
# TODO: Remove `target.unix` restriction once pandas nightly has win-64 wheels again.
# Without this, `pixi lock` fails because it can't solve the nightly feature for win-64,
# which breaks RTD builds (RTD has no lock file cache, unlike GitHub Actions CI).
[feature.nightly]
platforms = ["linux-64", "osx-arm64"]

[feature.nightly.dependencies]
[feature.nightly.target.unix.dependencies]
python = "*"

[feature.nightly.pypi-options.dependency-overrides]
Expand All @@ -172,7 +169,7 @@ h5netcdf = { git = "https://github.com/h5netcdf/h5netcdf" }
opt_einsum = { git = "https://github.com/dgasmith/opt_einsum" }
# sparse = { git = "https://github.com/pydata/sparse"}

[feature.nightly.pypi-dependencies]
[feature.nightly.target.unix.pypi-dependencies]
xarray = { path = ".", editable = true }

numpy = "*"
Expand Down
Loading