From 191549f88f1f1e555eb411cc709a4e900372902d Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Mon, 6 Feb 2023 18:51:00 -0800 Subject: [PATCH] Add python packaging to the windows build script --- setup/windows/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/windows/build.ps1 b/setup/windows/build.ps1 index 66202cb3..c3164222 100644 --- a/setup/windows/build.ps1 +++ b/setup/windows/build.ps1 @@ -116,9 +116,9 @@ if ($MyInvocation.InvocationName -ne ".") { $Url = FindDynamicUrl $DownloadPage $RegEx DownloadFile -Path $Temp -Name "psutil64.whl" -Url $Url - # Python: pytz, requests, & dependancies + # Python: pytz, requests, & dependencies $RegEx = "href=.*.py3-none-any.whl" - foreach ($Module in @("chardet", "certifi", "idna", "pytz", "urllib3", "requests")) { + foreach ($Module in @("certifi", "chardet", "idna", "packaging", "pytz", "requests", "urllib3")) { $DownloadPage = "https://pypi.org/project/$Module/" $Name = "$Module.whl" $Url = FindDynamicUrl -SourcePage $DownloadPage -RegEx $RegEx