Pin setuptools=67.2.*

67.3.1 is out and it broke Horizon builds

Change-Id: Ie6c078a9c37f54d60f0d5a4aadb647e184489cb8
This commit is contained in:
Michal Nasiadka 2023-02-15 11:21:57 +01:00
parent d49cca5492
commit ca472c5f7c

View File

@ -330,7 +330,8 @@ RUN ln -s openstack-base-source/* /requirements \
ENV PATH /var/lib/kolla/venv/bin:$PATH
{% if (base_distro == 'centos' and base_distro_tag.startswith('stream9')) or base_distro == 'rocky' %}
{# NOTE: pin setuptools on python 3.9 (centos,debian) due to horizon build failures #}
{% if distro_python_version == '3.9' %}
RUN {{ macros.install_pip(['pip', 'wheel', 'setuptools==67.2.*']) }} \
{% else %}
RUN {{ macros.install_pip(['pip', 'wheel', 'setuptools']) }} \