Skip to content

Commit

Permalink
download_dlls: update to 1.54.0-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
naveen521kk committed Sep 13, 2024
1 parent 371692c commit d461a46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packing/download_dlls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from pathlib import Path
from urllib.request import urlretrieve as download

PANGO_VERSION = "1.54.0-v1"
PANGO_VERSION = "1.54.0-v2"


def get_platform():
Expand All @@ -28,7 +28,7 @@ def get_platform():

download_url = (
"https://github.com/naveen521kk/pango-build/releases"
f"/download/v{PANGO_VERSION}/pango-v{PANGO_VERSION}-{plat}.zip"
f"/download/v{PANGO_VERSION}/pango-v{PANGO_VERSION}-windows-{plat}.zip"
)
final_location = Path(r"C:\cibw\vendor")
download_location = Path(tempfile.mkdtemp())
Expand Down Expand Up @@ -77,7 +77,7 @@ def new_place(_) -> str:
logging.info("Getting pkg-config")
download(
url="https://github.com/naveen521kk/pango-build"
f"/releases/download/v{PANGO_VERSION}/pkgconf.zip",
f"/releases/download/v{PANGO_VERSION}/windows-pkgconf.zip",
filename=download_file,
)
with zipfile.ZipFile(
Expand Down

0 comments on commit d461a46

Please sign in to comment.