Skip to content
Snippets Groups Projects
Commit 19014492 authored by Jeffrey Zhang's avatar Jeffrey Zhang
Browse files

Revert "Fix pycparser wheel package issue"

the bad pycparser wheel package has beed removed.

This reverts commit 195bcd0f.

Change-Id: I4669a627b68c4bd7534288c4a594a49226db3832
parent f9f619d2
No related branches found
No related tags found
No related merge requests found
......@@ -48,13 +48,11 @@ MAINTAINER {{ maintainer }}
{% endif %}
{{ macros.install_packages(kolla_toolbox_packages | customizable("packages")) }}
# TODO(Jeffrey4l): remove `--no-binary pycparser` when the bug[0] is fixed.
# [0] https://github.com/eliben/pycparser/issues/147
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
&& python get-pip.py \
&& rm get-pip.py \
&& pip --no-cache-dir install pytz \
&& pip --no-cache-dir install --no-binary pycparser \
&& pip --no-cache-dir install \
ansible==2.1.1.0 \
MySQL-python \
os-client-config==1.16.0 \
......
......@@ -15,9 +15,5 @@
{% macro install_pip(packages) %}
{#-
TODO(Jeffrey4l): remove `--no-binary pycparser` when the bug[0] is fixed.
[0] https://github.com/eliben/pycparser/issues/147
-#}
RUN /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade --no-binary pycparser -c requirements/upper-constraints.txt {% for package in packages %}{{ package }} {% endfor %}
RUN /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt {% for package in packages %}{{ package }} {% endfor %}
{% endmacro %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment