summaryrefslogtreecommitdiffstats
path: root/tests/qemu-iotests
diff options
context:
space:
mode:
authorThomas Huth2020-09-25 17:40:27 +0200
committerAlex Bennée2020-10-02 13:29:23 +0200
commit1b11f28d05121fec43a12389b673cc2d7e1d2e26 (patch)
treeb2f9e6e9ae36b1aeb5ca4be3e991ffca13c3eaa0 /tests/qemu-iotests
parentgitlab-ci: Increase the timeout for the cross-compiler builds (diff)
downloadqemu-1b11f28d05121fec43a12389b673cc2d7e1d2e26.tar.gz
qemu-1b11f28d05121fec43a12389b673cc2d7e1d2e26.tar.xz
qemu-1b11f28d05121fec43a12389b673cc2d7e1d2e26.zip
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>
Diffstat (limited to 'tests/qemu-iotests')
-rw-r--r--tests/qemu-iotests/iotests.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 91e4a57126..f48460480a 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -40,8 +40,6 @@ sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
from qemu import qtest
from qemu.qmp import QMPMessage
-assert sys.version_info >= (3, 6)
-
# Use this logger for logging messages directly from the iotests module
logger = logging.getLogger('qemu.iotests')
logger.addHandler(logging.NullHandler())