mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 02:58:29 +00:00
configure: Bump the minimum required Python version to 3.6
All our supported build platforms have Python 3.6 or newer nowadays, and there are some useful features in Python 3.6 which are not available in 3.5 yet (e.g. the type hint annotations which will allow us to statically type the QAPI parser), so let's bump the minimum Python version to 3.6 now. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200923162908.95372-1-thuth@redhat.com> Message-Id: <20200925154027.12672-16-alex.bennee@linaro.org>
This commit is contained in:
4
configure
vendored
4
configure
vendored
@@ -1964,8 +1964,8 @@ fi
|
||||
|
||||
# Note that if the Python conditional here evaluates True we will exit
|
||||
# with status 1 which is a shell 'false' value.
|
||||
if ! $python -c 'import sys; sys.exit(sys.version_info < (3,5))'; then
|
||||
error_exit "Cannot use '$python', Python >= 3.5 is required." \
|
||||
if ! $python -c 'import sys; sys.exit(sys.version_info < (3,6))'; then
|
||||
error_exit "Cannot use '$python', Python >= 3.6 is required." \
|
||||
"Use --python=/path/to/python to specify a supported Python."
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user