mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* Print Python and pip version.
* Try a newer setuptools.
* Dump more info.
* Try to upgrade setuptools outside the venv.
* pip36 -> pip3
(cherry picked from commit 75d1894866
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
e03ade818a
commit
572e3f0814
1 changed files with 14 additions and 0 deletions
|
@ -8,7 +8,21 @@ fi
|
|||
|
||||
set -eux
|
||||
|
||||
uname -a
|
||||
if [[ $(uname -a) =~ FreeBSD\ 12\.0-RELEASE ]]
|
||||
then
|
||||
# On FreeBSD 12.0 images, upgrade setuptools to avoid error with multidict
|
||||
# This is a bug in pip, which happens because the old setuptools from outside
|
||||
# the venv leaks into the venv (https://github.com/pypa/pip/issues/6264).
|
||||
# Since it is not fixed in latest pip (which is available in the venv), we
|
||||
# need to upgrade setuptools outside the venv.
|
||||
pip3 install --upgrade setuptools
|
||||
fi
|
||||
|
||||
source virtualenv.sh
|
||||
python --version
|
||||
pip --version
|
||||
pip show setuptools
|
||||
pip install openshift -c constraints.txt
|
||||
|
||||
./server.py &
|
||||
|
|
Loading…
Reference in a new issue