diff options
author | John Snow <jsnow@redhat.com> | 2020-05-13 23:52:30 -0400 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-05-31 18:25:07 +0200 |
commit | 2d110c11497ac52d5ce9f4b116463cdb8c3f4ad5 (patch) | |
tree | faf409f8ecaefb379907700e69938a5dfbe459fe /scripts/analyze-migration.py | |
parent | c7b942d7f84ef54f266921bf7668d43f1f2c7c79 (diff) | |
download | qemu-2d110c11497ac52d5ce9f4b116463cdb8c3f4ad5.zip |
python: remove more instances of sys.version_info
We guarantee 3.5+ everywhere; remove more dead checks. In general, try
to avoid using version checks and instead prefer to attempt behavior
when possible.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200514035230.25756-1-jsnow@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'scripts/analyze-migration.py')
-rwxr-xr-x | scripts/analyze-migration.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/analyze-migration.py b/scripts/analyze-migration.py index 96a31d3974..95838cbff3 100755 --- a/scripts/analyze-migration.py +++ b/scripts/analyze-migration.py @@ -25,11 +25,6 @@ import struct import sys -MIN_PYTHON = (3, 2) -if sys.version_info < MIN_PYTHON: - sys.exit("Python %s.%s or later is required.\n" % MIN_PYTHON) - - def mkdir_p(path): try: os.makedirs(path) |