From 4762c85668d40476b8458a2bd01ce6a0990e8cc9 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 6 Dec 2022 21:40:01 +0000 Subject: Use python3 not python As per https://peps.python.org/pep-0394/, the python binary can be one of the following options: - Python 2 - Python 3 - Not exist All of the scripts in libxml2 use 'python', which may not exist. As Python 2 reached EOL on the 1st January 2020, it's safe to move the scripts to use python3 explicitly. --- genChRanges.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'genChRanges.py') diff --git a/genChRanges.py b/genChRanges.py index bd14f6ba..f4f2cfaa 100755 --- a/genChRanges.py +++ b/genChRanges.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Portions of this script have been (shamelessly) stolen from the # prior work of Daniel Veillard (genUnicode.py) -- cgit v1.2.1