Bump python version for new installation

This commit is contained in:
Chocobo1 2020-01-03 11:23:09 +08:00 committed by sledgehammer999
parent d7ab472363
commit 080c542953
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -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)