Skip to content

Commit

Permalink
do_cmake.sh: fedora-32 (rawhide) build with python-3.8
Browse files Browse the repository at this point in the history
Fedora-32 now has python-3.8.

Fedora-29 is EOL. All non-EOL versions of Fedora have python-3.7, except
Fedora-32

(Unclear to me why PYBUILD="3" isn't used, like Ubuntu and FreeBSD. That
would eliminate breakage when pyhon versions change in Rawhide.)

Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
  • Loading branch information
kalebskeithley committed Jan 3, 2020
1 parent aafef60 commit 5c80bb8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions do_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ if [ -r /etc/os-release ]; then
source /etc/os-release
case "$ID" in
fedora)
if [ "$VERSION_ID" -ge "29" ] ; then
PYBUILD="3.7"
PYBUILD="3.7"
if [ "$VERSION_ID" -ge "32" ] ; then
PYBUILD="3.8"
fi
;;
rhel|centos)
Expand Down

0 comments on commit 5c80bb8

Please sign in to comment.