File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ COPY extend_start.sh /usr/local/bin/kolla_extend_start
49
49
# NOTE(kevko): This dance with local settings python paths below is needed
50
50
# because we are using different distros with different python version and we need to
51
51
# know to which path symlink should point to.
52
+ # NOTE(mnasiadka): pinning setuptools due to https://bugs.launchpad.net/horizon/+bug/2007574
52
53
RUN ln -s horizon-source/* horizon \
54
+ && {{ macros.install_pip(['setuptools==67.2.*'] ) }} \
53
55
&& {{ macros.upper_constraints_remove("horizon") }} \
54
56
&& {{ macros.install_pip(horizon_pip_packages | customizable("pip_packages")) }} \
55
57
&& mkdir -p /etc/openstack-dashboard \
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ RUN ln -s openstack-base-source/* /requirements \
211
211
212
212
ENV PATH /var/lib/kolla/venv/bin:$PATH
213
213
214
- RUN {{ macros.install_pip(['pip', 'wheel', 'setuptools==67.2.* '] ) }} \
214
+ RUN {{ macros.install_pip(['pip', 'wheel', 'setuptools'] ) }} \
215
215
&& {{ macros.install_pip(openstack_base_pip_packages | customizable("pip_packages")) }}
216
216
217
217
{% if base_package_type == 'rpm' %}
You can’t perform that action at this time.
0 commit comments