From e5fbd2805a748c1e46ad2a8d22f059552541d7c9 Mon Sep 17 00:00:00 2001 From: Karl-Hermann Wieners <karl-hermann.wieners@mpimet.mpg.de> Date: Fri, 28 Feb 2025 10:45:35 +0100 Subject: [PATCH] Global: change to use python3 interpreter explicitly --- Makefile | 6 +++--- compconfig | 2 +- diffconfig | 2 +- doc/mkexp.fodt | 4 ++-- editexp | 2 +- getconfig | 2 +- getexp | 2 +- mkexp | 2 +- selconfig | 2 +- set_doc_release | 2 +- setconfig | 2 +- unmergeconfig | 2 +- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Makefile b/Makefile index b368305..6dfc732 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -program := $(shell python -Ssc 'from package_info import name; print(name)') -version := $(shell python -Ssc 'from package_info import version; print(version)') +program := $(shell python3 -Ssc 'from package_info import name; print(name)') +version := $(shell python3 -Ssc 'from package_info import version; print(version)') package = $(program)-$(version) prefix = /usr/local -PYTHON = python +PYTHON = python3 PIP = pip all: diff --git a/compconfig b/compconfig index e5ef1bd..f980688 100755 --- a/compconfig +++ b/compconfig @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 '''\ Compare the given config files, return information shared by all files diff --git a/diffconfig b/diffconfig index a0be1cb..0ef1ad7 100755 --- a/diffconfig +++ b/diffconfig @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 '''\ Show differences between two configuration files (config1 - config2) diff --git a/doc/mkexp.fodt b/doc/mkexp.fodt index ab0cf39..a3c3382 100644 --- a/doc/mkexp.fodt +++ b/doc/mkexp.fodt @@ -3879,11 +3879,11 @@ <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/>[[job]]</text:p> <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="4"/>.var_format = <text:span text:style-name="T260">"</text:span><text:span text:style-name="T258">' + str(</text:span>%s<text:span text:style-name="T283">)</text:span> <text:span text:style-name="T258">+ '</text:span><text:span text:style-name="T260">"</text:span></text:p> <text:p text:style-name="P97">#%# joe1234.job.tmpl</text:p> - <text:p text:style-name="P285">#! /usr/bin/env python </text:p> + <text:p text:style-name="P285">#! /usr/bin/env python3 </text:p> <text:p text:style-name="Preformatted_20_Text">NAME = '%{NAME}' </text:p> <text:p text:style-name="Preformatted_20_Text">print<text:span text:style-name="T320">(</text:span>'%{MESSAGE}'<text:span text:style-name="T320">)</text:span> </text:p> <text:p text:style-name="P156">This setup will expand to</text:p> - <text:p text:style-name="P285"><text:soft-page-break/>#! /usr/bin/env python </text:p> + <text:p text:style-name="P285"><text:soft-page-break/>#! /usr/bin/env python3 </text:p> <text:p text:style-name="P285">NAME = '<text:span text:style-name="T283">Joe User</text:span>' </text:p> <text:p text:style-name="P157">print<text:span text:style-name="T320">(</text:span>'<text:span text:style-name="T157">This experiment was generated by </text:span><text:span text:style-name="T166">' + str(</text:span><text:span text:style-name="T157">NAME) </text:span><text:span text:style-name="T166">+ '</text:span>'<text:span text:style-name="T320">)</text:span></text:p> <text:h text:style-name="P160" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2574_1114405012"/>Initializing native script variables<text:bookmark-end text:name="__RefHeading__2574_1114405012"/></text:h> diff --git a/editexp b/editexp index 6a4b7fa..3b950b6 100755 --- a/editexp +++ b/editexp @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # # Edit experiment config for given update file # diff --git a/getconfig b/getconfig index 48d9601..9c8c8b0 100755 --- a/getconfig +++ b/getconfig @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # # Reconstruct config from update file, including command line # diff --git a/getexp b/getexp index 3d76660..aa64b54 100755 --- a/getexp +++ b/getexp @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # # Print experiment info in shell-digestible form # diff --git a/mkexp b/mkexp index dcc732c..9f3c00c 100755 --- a/mkexp +++ b/mkexp @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # # Generate an experiment from templates and the given configuration file. # diff --git a/selconfig b/selconfig index e4332d5..9edff8e 100755 --- a/selconfig +++ b/selconfig @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 '''\ Select the given section of a config file diff --git a/set_doc_release b/set_doc_release index 6c0303b..7228a2e 100755 --- a/set_doc_release +++ b/set_doc_release @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 import fileinput import re diff --git a/setconfig b/setconfig index 37832cb..561f5f5 100755 --- a/setconfig +++ b/setconfig @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 '''\ Change configuration using command line diff --git a/unmergeconfig b/unmergeconfig index f83eb73..1c502c8 100755 --- a/unmergeconfig +++ b/unmergeconfig @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 '''\ Create top level variables based on a higher level config -- GitLab