Bump Python version minimum requirement

The new minimum version is Python 3.9.

Debian Buster (oldoldstable) support ends at [2024.06.30](https://www.debian.org/releases/buster/).
Ubuntu Focal (20.04LTS) support ends at [2025.04](https://ubuntu.com/about/release-cycle).
By the time qbt v5.1 is released, Buster and Focal would have become EOL.

https://packages.debian.org/search?keywords=python3
https://packages.ubuntu.com/search?keywords=python3

PR #21064.
This commit is contained in:
Chocobo1
2024-07-17 12:13:58 +08:00
committed by GitHub
parent 83d730ffda
commit 8b7fdf0f22
4 changed files with 6 additions and 6 deletions

View File

@@ -252,7 +252,7 @@ bool Utils::ForeignApps::PythonInfo::isValid() const
bool Utils::ForeignApps::PythonInfo::isSupportedVersion() const
{
return (version >= Version {3, 7, 0});
return (version >= Version {3, 9, 0});
}
PythonInfo Utils::ForeignApps::pythonInfo()