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>
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)