Don't upgrade pip to a version which is too new

Amazingly, updating a package has no problems with installing a newer
version incompatible with the current Python version, such as installing
pip 21 when using Python 3.5.
This commit is contained in:
Vadim Zeitlin 2021-04-04 01:34:45 +02:00
parent d5d28e639e
commit c7961fa666

View File

@ -40,7 +40,10 @@ httpbin_launch() {
# Running pip install fails with weird errors out of the box when
# using old pip version because it attempts to use python rather
# than python3, so upgrade it to fix this.
python3 -m pip install --upgrade pip setuptools wheel
#
# However don't upgrade to a version which is too new because then
# it may not support Python version that we actually have.
python3 -m pip install --upgrade pip==20
;;
esac