-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into channel-config
- Loading branch information
Showing
26 changed files
with
1,844 additions
and
845 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This CITATION.cff file was generated with cffinit. | ||
# Visit https://bit.ly/cffinit to generate yours today! | ||
|
||
cff-version: 1.2.0 | ||
title: pixi | ||
message: >- | ||
If pixi contributes to a project that leads to a | ||
scientific publication, please acknowledge this fact by | ||
citing according to this file. | ||
type: software | ||
# Based on recommendation we use the authors that are responsible for the tool from `prefix.dev` as authors. | ||
# Using personal email to possibly outlive the employment at `prefix.dev`. | ||
authors: | ||
- given-names: Ruben | ||
family-names: Arts | ||
email: [email protected] | ||
- given-names: Bas | ||
family-names: Zalmstra | ||
email: [email protected] | ||
- given-names: Wolf | ||
family-names: Vollprecht | ||
email: [email protected] | ||
- given-names: Tim | ||
name-particle: de | ||
family-names: Jager | ||
email: [email protected] | ||
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.16.1' | ||
url: 'https://pixi.sh/v0.16.1' | ||
abstract: >- | ||
A cross-platform, language agnostic, package/project | ||
management tool for development in virtual environments. | ||
keywords: | ||
- package-management | ||
- project-management | ||
- virtual-environments | ||
- conda | ||
- pypi | ||
- development-tools | ||
- pixi | ||
license: BSD-3-Clause |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pixi" | ||
version = "0.16.0" | ||
version = "0.16.1" | ||
description = "A package management and workflow tool" | ||
edition = "2021" | ||
authors = ["pixi contributors <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -249,14 +249,15 @@ pixi global install cowpy | |
## Use in GitHub Actions | ||
|
||
You can use pixi in GitHub Actions to install dependencies and run commands. | ||
It supports automatic caching of your environments. | ||
|
||
```yml | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
cache: true | ||
- uses: prefix-dev/[email protected] | ||
- run: pixi run cowpy "Thanks for using pixi" | ||
``` | ||
See the [documentation](https://pixi.sh/latest/advanced/github_actions) for more details. | ||
<a name="contributing"></a> | ||
## Contributing 😍 | ||
|
Oops, something went wrong.