From a3a4063195038c9e3e2d104c0d85fb54a1b084c9 Mon Sep 17 00:00:00 2001 From: Marcin Wojdyr Date: Wed, 6 Jul 2022 13:23:29 +0200 Subject: [PATCH] use python3 for local testing --- dimple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dimple b/dimple index 4062fbd..b2821da 100755 --- a/dimple +++ b/dimple @@ -3,7 +3,7 @@ this_dir="$(cd "$(dirname "$0")" && pwd)" if [ -e "$this_dir/main.py" ] && [ "$this_dir" != "$CCP4/bin" ]; then # development (source tree) version - exec python2.7 "$this_dir/main.py" "$@" + exec python3 "$this_dir/main.py" "$@" else # installed module exec "$CCP4/bin/ccp4-python" -m dimple "$@"