Skip to content

Instantly share code, notes, and snippets.

View ruben-arts's full-sized avatar
🔩
Building pixi

Ruben Arts ruben-arts

🔩
Building pixi
View GitHub Profile
# `pixi build` proposal
This proposal describes a first version of the `pixi build` command
## The goal of this proposal
Get a plan ready for the development stage of the `pixi build` currently for conda only but the proposal shouldn't disallow a version of `pixi build --pypi` for building pypi packages.
## The motivating example
There are multiple scenarios where `pixi build` and it's mechanics are useful
@ruben-arts
ruben-arts / new_pixi.toml
Created April 2, 2024 06:13
Repro conda to pypi dependency solve issue.
[project]
name = "pixi"
description = "Package management made easy!"
authors = ["Wolf Vollprecht <wolf@prefix.dev>", "Bas Zalmstra <bas@prefix.dev>", "Tim de Jager <tim@prefix.dev>", "Ruben Arts <ruben@prefix.dev>"]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"]
[tasks]
build = "cargo build --release"
install = "cargo install --path . --locked"