Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/crtfrmstmf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ check_path() {
check_dependencies() {
# Check if a list of tools are installed and in the system path
check_path
check_tool python3
check_tool python3.9
check_tool bash
check_tool make
}
Expand All @@ -51,4 +51,4 @@ check_dependencies
SCRIPT_DIR="$(readlink -f "$0" | xargs dirname)"
BOB_DIR=$(realpath "${SCRIPT_DIR}/..")

PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} python3 "${BOB_DIR}/src/makei/crtfrmstmf.py" "$@"
PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} /QOpenSys/pkgs/bin/python3.9 "${BOB_DIR}/src/makei/crtfrmstmf.py" "$@"
4 changes: 2 additions & 2 deletions bin/makei
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ check_path() {
check_dependencies() {
# Check if a list of tools are installed and in the system path
check_path
check_tool python3
check_tool python3.9
check_tool bash
check_tool make
}
Expand All @@ -50,4 +50,4 @@ check_dependencies
SCRIPT_DIR="$(readlink -f "$0" | xargs dirname)"
BOB_DIR=$(realpath "${SCRIPT_DIR}/..")

PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} python3 "${BOB_DIR}/src/makei/cli/makei_entry.py" "$@"
PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} /QOpenSys/pkgs/bin/python3.9 "${BOB_DIR}/src/makei/cli/makei_entry.py" "$@"
2 changes: 1 addition & 1 deletion src/mk/def_rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ifndef COLOR_TTY
COLOR_TTY := $(shell [ -t 1 ] && echo true)
endif

SYS_ENCODING := $(shell /QOpenSys/pkgs/bin/python3.6 -c "import sys;print(sys.getdefaultencoding())")
SYS_ENCODING := $(shell /QOpenSys/pkgs/bin/python3.9 -c "import sys;print(sys.getdefaultencoding())")
ifndef UTF8_SUPPORT
ifneq (,$(findstring utf-8,$(SYS_ENCODING)))
UTF8_SUPPORT := true
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/crtfrmstmf
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SCRIPT_DIR="$(dirname "$0")"
BOB_DIR=$(realpath "${SCRIPT_DIR}/../..")

PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} python3 "${BOB_DIR}/src/makei/crtfrmstmf.py" "$@"
PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} /QOpenSys/pkgs/bin/python3.9 "${BOB_DIR}/src/makei/crtfrmstmf.py" "$@"
2 changes: 1 addition & 1 deletion src/scripts/getJobLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SCRIPT_DIR="$(dirname "$0")"
BOB_DIR=$(realpath "${SCRIPT_DIR}/../..")

PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} python3 "${BOB_DIR}/src/makei/cli/get_joblog.py" "$@"
PYTHONPATH="${BOB_DIR}/src":${PYTHONPATH} /QOpenSys/pkgs/bin/python3.9 "${BOB_DIR}/src/makei/cli/get_joblog.py" "$@"