Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Jun 5, 2024
1 parent 08b0356 commit d5dd075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/pack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ pub async fn pack(options: PackOptions) -> Result<()> {

for package in packages {
match package {
Package::Conda(p) => {
conda_packages_from_lockfile.push(p)
}
Package::Conda(p) => conda_packages_from_lockfile.push(p),
Package::Pypi(_) => {
if options.ignore_pypi_errors {
tracing::warn!(
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ async fn test_includes_repodata_patches(options: Options) {

// in this example, the `libzlib` entry in the `python-3.12.3-h2628c8c_0_cpython.conda`
// package is `libzlib >=1.2.13,<1.3.0a0`, but the upstream repodata was patched to
// `libzlib >=1.2.13,<2.0.0a0` which is represeted in the `pixi.lock` file
// `libzlib >=1.2.13,<2.0.0a0` which is represented in the `pixi.lock` file
assert!(
repodata
.conda_packages
Expand Down

0 comments on commit d5dd075

Please sign in to comment.