Fix: Pin openstacksdk<0.99
[releng/global-jjb.git] / shell / python-tools-install.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2018 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> python-tools-install.sh"
12
13 set -eufo pipefail
14
15 # This script will typically be called during pre-build & post-build.
16 # Create the user venv during pre-build.
17 if [[ ! -f /tmp/pre-build-complete ]]; then
18     requirements_file=$(mktemp /tmp/requirements-XXXXXX)
19
20     # Note: To test lftools master branch change the lftools configuration below in
21     #       the requirements file from "lftools[openstack]~=#.##.#" to
22     #       git+https://github.com/lfit/releng-lftools.git#egg=lftools[openstack]
23
24     echo "Generating Requirements File"
25     cat << 'EOF' > "$requirements_file"
26 openstacksdk<0.99
27 python-heatclient
28 python-openstackclient
29 python-magnumclient
30 kubernetes
31 niet~=1.4.2
32 cryptography<3.4
33 yq
34
35 # PINNED INDIRECT DEPENDENCIES
36 # ============================
37 # The libraries listed below should be considered workarounds and thus need
38 # to have a link to a JIRA and any relevant pkg versions and support packages
39 # necessary so that future maintainers of this file can make decisions to
40 # remove the workarounds in the future.
41 importlib-resources<2.0.0  # virtualenv 20.0.21 requires importlib-resources<2.0.0 (RELENG-2993)
42 pyparsing<3.0.0 # httplib2 0.20.1 requires pyparsing<3,>=2.4.2
43 EOF
44
45     #Python 3.5 in Ubuntu 16.04 workaround
46     if [[ -f /etc/lsb-release ]]; then
47         # shellcheck disable=SC1091
48         source /etc/lsb-release
49         if [[ $DISTRIB_RELEASE == "16.04" && $DISTRIB_ID == "Ubuntu" ]]; then
50             echo "WARNING: Python projects should move to Ubuntu 18.04 to continue receiving support"
51             echo "zipp==1.1.0" >> "$requirements_file"
52         fi
53     fi
54
55     python3 -m pip install --user --quiet --upgrade pip
56     python3 -m pip install --user --quiet --no-warn-script-location --upgrade setuptools
57     python3 -m pip install --user --quiet --no-warn-script-location --upgrade lftools[openstack]
58     python3 -m pip install --user --quiet --no-warn-script-location --upgrade \
59         --upgrade-strategy eager -r "$requirements_file"
60     # installs are silent, show version details in log
61     python3 --version
62     python3 -m pip --version
63     python3 -m pip freeze
64
65     rm -rf "$requirements_file"
66     touch /tmp/pre-build-complete
67 fi