From f0b2b5f0eeab10d7446c6b45cd1380e2dfde3c8c Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sun, 22 Oct 2023 02:04:27 -0700 Subject: [PATCH] Update Python-MariaDB 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 74909f99..08c561d4 100644 --- a/setup/windows/build.ps1 +++ b/setup/windows/build.ps1 @@ -100,10 +100,10 @@ if ($MyInvocation.InvocationName -ne ".") { # Python: mariadb $DownloadPage = "https://pypi.org/project/mariadb" - $RegEx = "href=.*-cp310-cp310-win32.whl" + $RegEx = "href=.*-cp312-cp312-win32.whl" $Url = FindDynamicUrl $DownloadPage $RegEx DownloadFile -Path $Temp -Name "mariadb32.whl" -Url $Url - $RegEx = "href=.*-cp310-cp310-win_amd64.whl" + $RegEx = "href=.*-cp312-cp312-win_amd64.whl" $Url = FindDynamicUrl $DownloadPage $RegEx DownloadFile -Path $Temp -Name "mariadb64.whl" -Url $Url