From: Andrew Cooper Date: Wed, 24 Jul 2024 17:33:13 +0000 (+0100) Subject: Switch to python3 shebangs X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4172faef1c0dee027ddd3ffdbc88fe20eb711e9c;p=people%2Fandrewcoop%2Fxen-test-framework.git Switch to python3 shebangs This is a better default for an average dev environment these days. Anyone stuck with python 2 and just run `python ./xtf-runner` manually and take the hint that they should upgrade. Signed-off-by: Andrew Cooper --- diff --git a/build/mkcfg.py b/build/mkcfg.py index c1a2e19..65d5d03 100755 --- a/build/mkcfg.py +++ b/build/mkcfg.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Construct an xl configuration file for a test (from various fragments), and diff --git a/build/mkinfo.py b/build/mkinfo.py index 1c9c1ad..30f9983 100755 --- a/build/mkinfo.py +++ b/build/mkinfo.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- import json import sys diff --git a/xtf-runner b/xtf-runner index 4a6e590..0b8d28c 100755 --- a/xtf-runner +++ b/xtf-runner @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ xtf-runner - A utility for enumerating and running XTF tests.