Skip to content

Commit ef82c56

Browse files
authored
use a pixi-build-python version compatible with the newest pixi (#11090)
* bump the build backend version (the new pixi release is incompatible with it) * use a lower bound instead of an exact pin * bump pixi
1 parent cbe8cde commit ef82c56

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/ci-additional.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
env:
1616
FORCE_COLOR: 3
17-
PIXI_VERSION: "v0.62.2"
17+
PIXI_VERSION: "v0.63.1"
1818

1919
jobs:
2020
detect-ci-trigger:
@@ -37,7 +37,7 @@ jobs:
3737
cache-pixi-lock:
3838
uses: ./.github/workflows/cache-pixi-lock.yml
3939
with:
40-
pixi-version: "v0.62.2" # keep in sync with env var above
40+
pixi-version: "v0.63.1" # keep in sync with env var above
4141
doctest:
4242
name: Doctests
4343
runs-on: "ubuntu-latest"

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
env:
1616
FORCE_COLOR: 3
17-
PIXI_VERSION: "v0.62.2"
17+
PIXI_VERSION: "v0.63.1"
1818

1919
jobs:
2020
detect-ci-trigger:
@@ -38,7 +38,7 @@ jobs:
3838
cache-pixi-lock:
3939
uses: ./.github/workflows/cache-pixi-lock.yml
4040
with:
41-
pixi-version: "v0.62.2" # keep in sync with env var above
41+
pixi-version: "v0.63.1" # keep in sync with env var above
4242
test:
4343
name: "${{ matrix.os }} | ${{ matrix.pixi-env }}${{ matrix.pytest-addopts && format(' ({0})', matrix.pytest-addopts) || '' }}"
4444
runs-on: ${{ matrix.os }}

.github/workflows/hypothesis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
env:
1515
FORCE_COLOR: 3
16-
PIXI_VERSION: "v0.62.2"
16+
PIXI_VERSION: "v0.63.1"
1717

1818
jobs:
1919
detect-ci-trigger:
@@ -37,7 +37,7 @@ jobs:
3737
cache-pixi-lock:
3838
uses: ./.github/workflows/cache-pixi-lock.yml
3939
with:
40-
pixi-version: "v0.62.2" # keep in sync with env var above
40+
pixi-version: "v0.63.1" # keep in sync with env var above
4141

4242
hypothesis:
4343
name: Slow Hypothesis Tests

.github/workflows/upstream-dev-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717

1818
env:
1919
FORCE_COLOR: 3
20-
PIXI_VERSION: "v0.62.2"
20+
PIXI_VERSION: "v0.63.1"
2121

2222
jobs:
2323
detect-ci-trigger:
@@ -40,7 +40,7 @@ jobs:
4040
cache-pixi-lock:
4141
uses: ./.github/workflows/cache-pixi-lock.yml
4242
with:
43-
pixi-version: "v0.62.2" # keep in sync with env var above
43+
pixi-version: "v0.63.1" # keep in sync with env var above
4444
upstream-dev:
4545
name: upstream-dev
4646
runs-on: ubuntu-latest

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "xarray"
88
version = "dynamic" # dynamic versioning needs better support in pixi https://github.com/prefix-dev/pixi/issues/2923#issuecomment-2598460666 . Putting `version = "dynamic"` here for now until pixi recommends something else.
99

1010
[package.build]
11-
backend = { name = "pixi-build-python", version = "==0.4.0" }
11+
backend = { name = "pixi-build-python", version = ">=0.4.4" }
1212

1313
[package.host-dependencies]
1414
setuptools = "*"

0 commit comments

Comments
 (0)