Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump system requirements #1553

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
source: src/project/virtual_packages.rs
assertion_line: 226
expression: packages
---
[
Expand Down Expand Up @@ -32,7 +31,7 @@ expression: packages
source: "__glibc",
},
version: Version {
version: [[0], [2], [17]],
version: [[0], [2], [28]],
local: [],
},
build_string: "0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ expression: packages
source: "__glibc",
},
version: Version {
version: [[0], [2], [17]],
version: [[0], [2], [28]],
local: [],
},
build_string: "0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ expression: packages
source: "__glibc",
},
version: Version {
version: [[0], [2], [17]],
version: [[0], [2], [28]],
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: "__osx",
},
version: Version {
version: [[0], [10], [15]],
version: [[0], [13], [0]],
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: "__osx",
},
version: Version {
version: [[0], [11], [0]],
version: [[0], [13], [0]],
local: [],
},
build_string: "0",
Expand Down
6 changes: 3 additions & 3 deletions src/project/virtual_packages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use thiserror::Error;

/// The default GLIBC version to use. This is used when no system requirements are specified.
pub fn default_glibc_version() -> Version {
"2.17".parse().unwrap()
"2.28".parse().unwrap()
}

/// The default linux version to use. This is used when no system requirements are specified.
Expand All @@ -27,8 +27,8 @@ pub fn default_linux_version() -> Version {
/// MacOS platform.
pub fn default_mac_os_version(platform: Platform) -> Version {
match platform {
Platform::OsxArm64 => "11.0".parse().unwrap(),
Platform::Osx64 => "10.15".parse().unwrap(),
Platform::OsxArm64 => "13.0".parse().unwrap(),
Platform::Osx64 => "13.0".parse().unwrap(),
_ => panic!(
"default_mac_os_version() called with non-osx platform: {}",
platform
Expand Down
Loading