Skip to content

Commit

Permalink
Bug Fix: Rocky Linux 8.8-8.10 requires Python 3.11
Browse files Browse the repository at this point in the history
When updating the images the Python 8.8-8.10 images were changed
from Python 3.11 Devel to just Python3 Devel which meant depending
on Python 3.6.

Interestingly if Python 3.6 and 3.11 are installed then CMake will
lock only Python 3.6. So we have to cleanup the image so it will
build correctly too.
  • Loading branch information
BenjamenMeyer committed Oct 12, 2024
1 parent 6f750d3 commit e6db8ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ function bootstrapOnRockyLinux ()
libpng-devel \
expat-devel \
gtk3-devel \
python3-devel \
python3.11-devel \
rpm-build \
make \
clang
Expand All @@ -1761,7 +1761,7 @@ function bootstrapOnRockyLinux ()
libpng-devel \
expat-devel \
gtk3-devel \
python3-devel \
python3.11-devel \
rpm-build \
make \
clang
Expand All @@ -1788,7 +1788,7 @@ function bootstrapOnRockyLinux ()
libpng-devel \
expat-devel \
gtk3-devel \
python3-devel \
python3.11-devel \
rpm-build \
make \
clang
Expand Down

0 comments on commit e6db8ae

Please sign in to comment.