Include MariaDB in Windows kit
This commit is contained in:
parent
5cbe23166a
commit
9b53a6d79d
1 changed files with 10 additions and 0 deletions
|
|
@ -98,6 +98,15 @@ if ($MyInvocation.InvocationName -ne ".") {
|
|||
# Python: docopt
|
||||
Copy-Item -Path "$WD\docopt\docopt-0.6.2-py2.py3-none-any.whl" -Destination "$Temp\docopt.whl"
|
||||
|
||||
# Python: mariadb
|
||||
$DownloadPage = "https://pypi.org/project/mariadb"
|
||||
$RegEx = "href=.*-cp310-cp310-win32.whl"
|
||||
$Url = FindDynamicUrl $DownloadPage $RegEx
|
||||
DownloadFile -Path $Temp -Name "mariadb32.whl" -Url $Url
|
||||
$RegEx = "href=.*-cp310-cp310-win_amd64.whl"
|
||||
$Url = FindDynamicUrl $DownloadPage $RegEx
|
||||
DownloadFile -Path $Temp -Name "mariadb64.whl" -Url $Url
|
||||
|
||||
# Python: psutil
|
||||
$DownloadPage = "https://pypi.org/project/psutil/"
|
||||
$RegEx = "href=.*-cp310-cp310-win32.whl"
|
||||
|
|
@ -161,6 +170,7 @@ if ($MyInvocation.InvocationName -ne ".") {
|
|||
"chardet.whl",
|
||||
"docopt.whl",
|
||||
"idna.whl",
|
||||
"mariadb$Arch.whl",
|
||||
"pytz.whl",
|
||||
"psutil$Arch.whl",
|
||||
"requests.whl",
|
||||
|
|
|
|||
Loading…
Reference in a new issue