Skip to content

Commit

Permalink
fix: downgrade __linux default to 4.18 (prefix-dev#1887)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-arts authored Aug 22, 2024
1 parent bd1e63b commit 9ab76da
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/pixi_default_versions/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub fn default_glibc_version() -> Version {

/// The default linux version to use. This is used when no system requirements are specified.
pub fn default_linux_version() -> Version {
"5.10".parse().unwrap()
"4.18".parse().unwrap()
}

/// Returns the default Mac OS version for the specified platform. The platform must refer to a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ expression: packages
source: "__linux",
},
version: Version {
version: [[0], [5], [10]],
version: [[0], [4], [18]],
local: [],
},
build_string: "0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ expression: packages
source: "__linux",
},
version: Version {
version: [[0], [5], [10]],
version: [[0], [4], [18]],
local: [],
},
build_string: "0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ expression: packages
source: "__linux",
},
version: Version {
version: [[0], [5], [10]],
version: [[0], [4], [18]],
local: [],
},
build_string: "0",
Expand Down

0 comments on commit 9ab76da

Please sign in to comment.