From 81f028ea89f9793e3c2921ecb9dfd8653302ed18 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Wed, 28 Apr 2021 11:51:21 +0300 Subject: Provisioning: Upgrade python 3.6 version to 3.6.2 in Windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit typing.NoReturn is not included in python 3.6.1 version. We need at least 3.6.2 version Pick-to: 5.12.10 Pick-to: 5.15 Task-number: QTQAINFRA-4433 Change-Id: Ifa9d45b4a3e06f4455221bb76087b600c1f1e06a Reviewed-by: Dan Ackers Reviewed-by: Tony Sarajärvi --- coin/provisioning/common/windows/python3.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'coin/provisioning/common') diff --git a/coin/provisioning/common/windows/python3.ps1 b/coin/provisioning/common/windows/python3.ps1 index c05c022c..23829595 100644 --- a/coin/provisioning/common/windows/python3.ps1 +++ b/coin/provisioning/common/windows/python3.ps1 @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2017 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Copyright (C) 2017 Pelagicore AG ## Contact: http://www.qt.io/licensing/ ## @@ -40,7 +40,7 @@ param( ) . "$PSScriptRoot\helpers.ps1" -$version = "3.6.1" +$version = "3.6.2" $package = "C:\Windows\temp\python-$version.exe" # check bit version @@ -48,11 +48,11 @@ if ( $archVer -eq 64 ) { Write-Host "Installing 64 bit Python" $externalUrl = "https://www.python.org/ftp/python/$version/python-$version-amd64.exe" $internalUrl = "http://ci-files01-hki.intra.qt.io/input/windows/python-$version-amd64.exe" - $sha1 = "bf54252c4065b20f4a111cc39cf5215fb1edccff" + $sha1 = "bcf9bda733a9153811209c62d628c41ab6cedbe2" } else { $externalUrl = "https://www.python.org/ftp/python/$version/python-$version.exe" $internalUrl = "http://ci-files01-hki.intra.qt.io/input/windows/python-$version.exe" - $sha1 = "76c50b747237a0974126dd8b32ea036dd77b2ad1" + $sha1 = "cd9744b142eca832f9534390676e6cfb84bf655d" } Write-Host "Fetching from URL..." -- cgit v1.2.3