Skip to content

deps: Update pixi tool constraint to >=0.80.0 - #994

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/pixi-0.x
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/pixi-0.x

Conversation

@renovate

@renovate renovate Bot commented Sep 21, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change Pending
pixi tool-constraint minor >=0.79.0>=0.80.0 0.81.0

Release Notes

prefix-dev/pixi (pixi)

v0.80.0

Compare Source

✨ Highlights

Pixi now has experimental support for conda-script. Conda scripts let you write scripts in any language, with dependencies and instructions for running them included in the same file.
Pixi solves the environment, caches it, and runs the script without requiring a separate workspace.

For example, an R script can now be self-contained:

# /// conda-script
# channels = ["https://prefix.dev/conda-forge"]

# entrypoint = "Rscript ${SCRIPT}"
#

# [dependencies]
# r-base = "*"

# r-jsonlite = "*"
# /// end-conda-script
library(jsonlite)
writeLines(toJSON(list(hello = "pixi"), auto_unbox = TRUE))

Or compile and run a C++ file with Conda-provided dependencies:

// /// conda-script
// channels = ["https://prefix.dev/conda-forge"]
// entrypoint = "g++ -o ${CACHE}/hello ${SCRIPT} -lfmt && ${CACHE}/hello"
//
// [dependencies]
// gxx = "*"
// fmt = "*"
// /// end-conda-script

#include <fmt/core.h>

int main() {
    fmt::print("Hello from pixi!\n");
}

First enable the experimental configuration with:

pixi config set experimental.conda-script true --global

Then, run them with:

pixi run --script hello.R
pixi run --script hello.cpp

You can also create and manage these scripts with pixi init --script, pixi add --script, pixi remove --script, pixi lock --script, and the other script-aware commands.

Added
Documentation

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Sep 21, 2026
@renovate
renovate Bot enabled auto-merge (squash) September 21, 2026 19:02

This branch has not been deployed

No deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants