Skip to content

Commit

Permalink
Allow freethreaded libpython during validation on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Sep 10, 2024
1 parent f2524fe commit a361bb8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,16 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| {
max_compatibility_version: "3.13.0".try_into().unwrap(),
required: false,
},
MachOAllowedDylib {
name: "@executable_path/../lib/libpython3.13t.dylib".to_string(),
max_compatibility_version: "3.13.0".try_into().unwrap(),
required: false,
},
MachOAllowedDylib {
name: "@executable_path/../lib/libpython3.13td.dylib".to_string(),
max_compatibility_version: "3.13.0".try_into().unwrap(),
required: false,
},
MachOAllowedDylib {
name: "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit".to_string(),
max_compatibility_version: "45.0.0".try_into().unwrap(),
Expand Down

0 comments on commit a361bb8

Please sign in to comment.