From 5a61ea9abff58ae44399381dcdb8cf0937bb63b0 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 28 Sep 2022 09:27:40 -0700 Subject: [PATCH] Bump psutil version --- 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 e245356b..36177787 100644 --- a/setup/windows/build.ps1 +++ b/setup/windows/build.ps1 @@ -100,10 +100,10 @@ if ($MyInvocation.InvocationName -ne ".") { # Python: psutil $DownloadPage = "https://pypi.org/project/psutil/" - $RegEx = "href=.*-cp38-cp38-win32.whl" + $RegEx = "href=.*-cp310-cp310-win32.whl" $Url = FindDynamicUrl $DownloadPage $RegEx DownloadFile -Path $Temp -Name "psutil32.whl" -Url $Url - $RegEx = "href=.*-cp38-cp38-win_amd64.whl" + $RegEx = "href=.*-cp310-cp310-win_amd64.whl" $Url = FindDynamicUrl $DownloadPage $RegEx DownloadFile -Path $Temp -Name "psutil64.whl" -Url $Url