]> xenbits.xensource.com Git - xtf.git/commitdiff
Switch to python3 shebangs
authorAndrew Cooper <andrew.cooper3@citrix.com>
Wed, 24 Jul 2024 17:33:13 +0000 (18:33 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Wed, 24 Jul 2024 17:33:51 +0000 (18:33 +0100)
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 <andrew.cooper3@citrix.com>
build/mkcfg.py
build/mkinfo.py
xtf-runner

index c1a2e193dd62b34a1f17cf5ebc9a280176715322..65d5d03ae7efc1bbdf6070ffcea105c2e0c65c13 100755 (executable)
@@ -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
index 1c9c1ad17d8362b8b39641d7d606eb082a819fbe..30f99832711f7581c7ea0c857b16a0b858262b8c 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 import json
 import sys
index 4a6e5904de53b795c11aa482348d019c682a287c..0b8d28c1673800435823e8a79f98608f4fc41623 100755 (executable)
@@ -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.