Skip to content

Commit

Permalink
Merge branch 'main' into channel-config
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw authored Mar 11, 2024
2 parents da60acc + aeb759d commit af440ca
Show file tree
Hide file tree
Showing 26 changed files with 1,844 additions and 845 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ on:
- edited
- synchronize

permissions:
pull-requests: read

jobs:
check-title:
runs-on: ubuntu-latest
Expand All @@ -19,24 +16,3 @@ jobs:
id: check_pr_title
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Add comment indicating we require pull request titles to follow conventional commits specification
- uses: marocchino/sticky-pull-request-comment@v2
if: always() && (steps.check_pr_title.outputs.error_message != null)
with:
header: pr-title-lint-error
message: |
Thank you for opening this pull request!
We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted.
Details:
> ${{ steps.check_pr_title.outputs.error_message }}
# Delete the previous comment when the issue has been resolved.
- if: ${{ steps.check_pr_title.outputs.error_message == null }}
uses: marocchino/sticky-pull-request-comment@v2
with:
header: pr-title-lint-error
delete: true
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.16.1] - 2024-03-11
### 📃 Details
#### Fixed
- Parse lockfile matchspecs lenient, fixing bug introduced in `0.16.0` by @ruben-arts in [#951](https://github.com/prefix-dev/pixi/pull/951)

[Full commit history](https://github.com/prefix-dev/pixi/compare/v0.16.0..v0.16.1)

## [0.16.0] - 2024-03-09
### ✨ Highlights
- This release removes [`rip`]() and add [`uv`]() as the PyPI resolver and installer.
- This release removes [`rip`](https://github.com/prefix-dev/rip) and add [`uv`](https://github.com/astral-sh/uv) as the PyPI resolver and installer.

### 📃 Details
#### Added
Expand Down
40 changes: 40 additions & 0 deletions CITATION.cff
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
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]>"]
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 😍
Expand Down
Loading

0 comments on commit af440ca

Please sign in to comment.