From 4172faef1c0dee027ddd3ffdbc88fe20eb711e9c Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 24 Jul 2024 18:33:13 +0100 Subject: [PATCH] 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 --- build/mkcfg.py | 2 +- build/mkinfo.py | 2 +- xtf-runner | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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. -- 2.39.5