Install cython with the openstack-health api server
Pandas now has a build dep on cython. So to actually install an api server now we need to ensure that cython is installed on the machine. This commit adds that to api.pp manifest. Change-Id: I55053b4c5d7d6edde191fd0c695d446dc216bcba
This commit is contained in:
parent
86bd0f1d64
commit
a223e47c27
@ -105,11 +105,16 @@ class openstack_health::api(
|
|||||||
ensure => present,
|
ensure => present,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
package {'cython':
|
||||||
|
ensure => present,
|
||||||
|
}
|
||||||
|
|
||||||
exec { 'requirements':
|
exec { 'requirements':
|
||||||
command => "${virtualenv_dir}/bin/pip install -U -r ${source_dir}/requirements.txt",
|
command => "${virtualenv_dir}/bin/pip install -U -r ${source_dir}/requirements.txt",
|
||||||
require => [
|
require => [
|
||||||
Python::Virtualenv[$virtualenv_dir],
|
Python::Virtualenv[$virtualenv_dir],
|
||||||
Package['libmemcached-dev'],
|
Package['libmemcached-dev'],
|
||||||
|
Package['cython'],
|
||||||
],
|
],
|
||||||
subscribe => Vcsrepo[$source_dir],
|
subscribe => Vcsrepo[$source_dir],
|
||||||
refreshonly => true,
|
refreshonly => true,
|
||||||
|
Loading…
Reference in New Issue
Block a user