File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,10 @@ ADD plugins-archive /
101
101
'/plugins/*'
102
102
] %}
103
103
104
+ # NOTE(hrw): nova lists powervm in requirements and it wants 'futures' on py3.6 which can not be installed.
105
+ # So let drop it as we do not support POWER architecture.
104
106
RUN ln -s nova-base-source/* nova \
107
+ && sed -i -e "/^pypowervm/d" nova/requirements.txt \
105
108
&& {{ macros.install_pip(nova_base_pip_packages | customizable("pip_packages")) }} \
106
109
&& mkdir -p /etc/nova/ \
107
110
&& cp -r /nova/etc/nova/* /etc/nova/ \
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Nova images are built without ``pypowervm`` package. It is needed only for
5
+ POWER architecture support (which we do not support) and breaks CentOS
6
+ builds by trying to install (Python 2 only) 'futures' package.
You can’t perform that action at this time.
0 commit comments