Skip to content

Commit d077ec0

Browse files
committed
Check Python versions
Some operational systems (e.g RHEL 9.4) does not have the "python" command, instead "python3" is used. This commit update some scripts to programatically find out which Python command it should use. Signed-off-by: Lucas Alvares Gomes <[email protected]>
1 parent 36dd15d commit d077ec0

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

scripts/generate_packages_to_prefetch.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import shutil
2222
import subprocess
23+
import sys
2324
import tempfile
2425
from os.path import join
2526
from urllib.request import urlretrieve
@@ -142,12 +143,13 @@ def generate_packages_to_be_build(work_directory):
142143
into = join(work_directory, BUILDDEPS_SCRIPT_NAME)
143144
urlretrieve(url, into) # noqa: S310
144145

146+
python_exe = sys.executable
145147
infile = "requirements-build.in"
146148
outfile = "requirements-build.txt"
147149

148150
# generate file requirements-build.in
149151
command = (
150-
"python pip_find_builddeps.py requirements.txt --append "
152+
f"{python_exe} pip_find_builddeps.py requirements.txt --append "
151153
+ f"--only-write-on-update --ignore-errors --allow-binary -o {infile}"
152154
)
153155
shell(command, work_directory)

scripts/get_ocp_plaintext_docs.sh

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,23 @@ set -eou pipefail
33

44
OCP_VERSION=$1
55

6+
# Find the available Python version
7+
if command -v python3 &> /dev/null; then
8+
PYTHON="python3"
9+
elif command -v python &> /dev/null; then
10+
PYTHON="python"
11+
else
12+
echo "Neither python nor python3 is available"
13+
exit 1
14+
fi
15+
616
trap "rm -rf openshift-docs" EXIT
717

818
rm -rf ocp-product-docs-plaintext/${OCP_VERSION}
919

1020
git clone --single-branch --branch enterprise-${OCP_VERSION} https://github.com/openshift/openshift-docs.git
1121

12-
python scripts/asciidoctor-text/convert-it-all.py -i openshift-docs -t openshift-docs/_topic_maps/_topic_map.yml \
22+
$PYTHON scripts/asciidoctor-text/convert-it-all.py -i openshift-docs -t openshift-docs/_topic_maps/_topic_map.yml \
1323
-d openshift-enterprise -o ocp-product-docs-plaintext/${OCP_VERSION} -a scripts/asciidoctor-text/${OCP_VERSION}/attributes.yaml
1424

1525
for f in $(cat config/exclude.conf); do

0 commit comments

Comments
 (0)