From 2e4584578bed18a9219843f0a8d9ba4ea2c89ec3 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Fri, 3 Jan 2020 11:23:09 +0800 Subject: [PATCH] Bump python version for new installation --- src/gui/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index 68bf54e35..b34027081 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -2011,9 +2011,9 @@ void MainWindow::installPython() setCursor(QCursor(Qt::WaitCursor)); // Download python #ifdef QBT_APP_64BIT - const QString installerURL = "https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe"; + const QString installerURL = "https://www.python.org/ftp/python/3.8.1/python-3.8.1-amd64.exe"; #else - const QString installerURL = "https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe"; + const QString installerURL = "https://www.python.org/ftp/python/3.8.1/python-3.8.1.exe"; #endif Net::DownloadManager::instance()->download( Net::DownloadRequest(installerURL).saveToFile(true)