diff --git a/packing/download_dlls.py b/packing/download_dlls.py index 1d04b8d6..57a5a08b 100644 --- a/packing/download_dlls.py +++ b/packing/download_dlls.py @@ -12,14 +12,14 @@ from pathlib import Path from urllib.request import urlretrieve as download -PANGO_VERSION = "1.50.5" +PANGO_VERSION = "1.54.0" def get_platform(): if (struct.calcsize("P") * 8) == 32: - return "32" + return "x86" else: - return "64" + return "x64" logging.basicConfig(format="%(levelname)s - %(message)s", level=logging.DEBUG) @@ -30,7 +30,7 @@ def get_platform(): download_url = ( "https://github.com/naveen521kk/pango-build/releases" - f"/download/v{PANGO_VERSION}/pango-build-win{plat}.zip" + f"/download/v{PANGO_VERSION}/pango-v{PANGO_VERSION}-{plat}.zip" ) final_location = Path(r"C:\cibw\vendor") download_location = Path(tempfile.mkdtemp())