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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
frozen: true
environments: lint
- run: pixi run -e lint lint
Expand All @@ -128,7 +128,7 @@ jobs:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-linkcheck-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- uses: prefix-dev/setup-pixi@v0.9.4
if: steps.api-key.outputs.configured == 'true'
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
run-install: false

- name: Configure Git author
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-nightly-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- uses: prefix-dev/setup-pixi@v0.9.4
if: steps.api-key.outputs.configured == 'true'
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
run-install: false

- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
fetch-depth: 0 # history required to determine version
- uses: prefix-dev/setup-pixi@v0.9.4
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
frozen: true
environments: docs-${{ inputs.package }}
- name: Build docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fetch-depth: 0 # history required to determine version
- uses: prefix-dev/setup-pixi@v0.9.4
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
frozen: true
environments: docs-${{ matrix.package }}
- name: Check links
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fetch-tags: true
- uses: prefix-dev/setup-pixi@v0.9.4
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
pixi-version: v0.68.0
pixi-version: v0.78.0
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
Expand Down
68 changes: 34 additions & 34 deletions pixi.lock

Large diffs are not rendered by default.

13 changes: 8 additions & 5 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
[workspace]
name = "ess"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
# Scipp requires macOS 14 or newer.
platforms = [
"linux-64",
{ platform = "osx-64", macos = "14.0" },
{ platform = "osx-arm64", macos = "14.0" },
"win-64",
]
version = "2026.2.0"
requires-pixi = ">=0.71.3"
exclude-newer = "14d"

[dependencies]
python = "3.12.*"

[system-requirements]
# Scipp does not support older OSX versions.
macos = "14.0"

[pypi-exclude-newer]
scipp = "0m"
scippneutron = "0m"
Expand Down
Loading