We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_wmi
1 parent 5b3edf8 commit fc51144Copy full SHA for fc51144
src/validation.rs
@@ -798,6 +798,8 @@ const GLOBAL_EXTENSIONS_WINDOWS: &[&str] = &[
798
"winsound",
799
];
800
801
+const GLOBAL_EXTENSIONS_WINDOWS_3_14: &[&str] = &["_wmi"];
802
+
803
const GLOBAL_EXTENSIONS_WINDOWS_PRE_3_13: &[&str] = &["_msi"];
804
805
/// Extension modules not present in Windows static builds.
@@ -1542,6 +1544,10 @@ fn validate_extension_modules(
1542
1544
wanted.extend(GLOBAL_EXTENSIONS_WINDOWS_PRE_3_13);
1543
1545
}
1546
1547
+ if matches!(python_major_minor, "3.14") {
1548
+ wanted.extend(GLOBAL_EXTENSIONS_WINDOWS_3_14);
1549
+ }
1550
1551
if static_crt {
1552
for x in GLOBAL_EXTENSIONS_WINDOWS_NO_STATIC {
1553
wanted.remove(*x);
0 commit comments