Skip to content

Commit

Permalink
install-fedora: add python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Mar 18, 2021
1 parent 9c93944 commit 0ee2844
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install-fedora
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ fi


pyCmd=
for minor in 8 7 6 5 ; do
for minor in 9 8 7 6 5 ; do
cmd="/usr/bin/python3.$minor"
if [ -f "$cmd" ] ; then
pyCmd="$cmd"
break
fi
done
if [ -z "$pyCmd" ] ; then
echo "Please install python3.8 and try again (or older down to python3.5)" >&2
echo "Please install python3.9 and try again (or older down to python3.5)" >&2
exit 1
fi
echo "Using python: \"$pyCmd\""
Expand Down

0 comments on commit 0ee2844

Please sign in to comment.