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.
1 parent 289b1e8 commit 23daf98Copy full SHA for 23daf98
1 file changed
cpython-windows/build.py
@@ -411,6 +411,10 @@ def hack_props(
411
elif b"<zlibDir" in line:
412
line = b"<zlibDir>%s\\</zlibDir>" % zlib_path
413
414
+ # On 3.14+, it's zlib-ng and the name changed
415
+ elif b"<zlibNgDir" in line:
416
+ line = b"<zlibNgDir>%s\\</zlibNgDir>" % zlib_path
417
+
418
elif b"<mpdecimalDir" in line:
419
line = b"<mpdecimalDir>%s\\</mpdecimalDir>" % mpdecimal_path
420
0 commit comments