Skip to content

Commit

Permalink
Update Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
osubboo committed Nov 1, 2024
1 parent 73f45e7 commit 295981b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/bbs_build
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ realpath() (
SCRIPT=$(realpath "$0")

# Find suitable python version and invoke the tool.
for pyver in 3.10 3.9 3.8 3.7 3.6 3 ""; do
for pyver in 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3 ""; do
python$pyver -V > /dev/null 2>&1 && exec python$pyver "${SCRIPT}.py" "$@"
done
echo "No appropriate python interpreter found." >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/bbs_build_env
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ realpath() (
SCRIPT=$(realpath "$0")

# Find suitable python version and invoke the tool
for pyver in 3.10 3.9 3.8 3.7 3.6 3 ""; do
for pyver in 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3 ""; do
python$pyver -V > /dev/null 2>&1 && exec python$pyver "${SCRIPT}.py" "$@"
done
echo "No appropriate python interpreter found." >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/bbs_make_vscode
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ realpath() (

SCRIPT=$(realpath "$0")
# Find suitable python version and invoke the tool
for pyver in 3.10 3.9 3.8 3.7 3.6 3 ""; do
for pyver in 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3 ""; do
python$pyver -V > /dev/null 2>&1 && exec python$pyver "${SCRIPT}.py" "$@"
done
echo "No appropriate python interpreter found." >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/bbs_make_vspresets
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ realpath() (
SCRIPT=$(realpath "$0")

# Find suitable python version and invoke the tool
for pyver in 3.10 3.9 3.8 3.7 3.6 3 ""; do
for pyver in 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3 ""; do
python$pyver -V > /dev/null 2>&1 && exec python$pyver "${SCRIPT}.py" "$@"
done
echo "No appropriate python interpreter found." >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/bde-format-code-comment
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ realpath() (

SCRIPT=$(realpath "$0")
# Find suitable python version and invoke the tool
for pyver in 3.10 3.9 3.8 3.7 3.6 3 ""; do
for pyver in 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3 ""; do
python$pyver -V > /dev/null 2>&1 && exec python$pyver "${SCRIPT}.py" "$@"
done
echo "No appropriate python interpreter found." >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/get_dependers
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ realpath() (
SCRIPT=$(realpath "$0")

# Find suitable python version and invoke the tool
for pyver in 3.10 3.9 3.8 3.7 3.6 3 ""; do
for pyver in 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3 ""; do
python$pyver -V > /dev/null 2>&1 && exec python$pyver "${SCRIPT}.py" "$@"
done
echo "No appropriate python interpreter found." >&2
Expand Down

0 comments on commit 295981b

Please sign in to comment.