Add python-pika to install script
Currently pip is pulling a new pre-release version of pika. This version does not seem to be backwards compatible and is the reason why uploads fail on new installs. Since there are packages available for pika on all major distros we can get away with just installing those as pip will not try to replace/upgrade them the way it is currently configured.
This commit is contained in:
parent
c3bd93779b
commit
81f6845fc5
|
@ -28,6 +28,7 @@ libvo-aacenc0
|
|||
python-rgain
|
||||
python-gst-1.0
|
||||
gstreamer1.0-plugins-ugly
|
||||
python-pika
|
||||
|
||||
patch
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ libsamplerate0
|
|||
python-rgain
|
||||
python-gst-1.0
|
||||
gstreamer1.0-plugins-ugly
|
||||
python-pika
|
||||
|
||||
patch
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@ libsamplerate0
|
|||
python-rgain
|
||||
python-gst-1.0
|
||||
gstreamer1.0-plugins-ugly
|
||||
python-pika
|
||||
|
||||
patch
|
||||
|
||||
|
|
|
@ -75,6 +75,7 @@ rabbitmqctl add_vhost /airtime
|
|||
rabbitmqctl set_permissions -p /airtime airtime ".*" ".*" ".*"
|
||||
|
||||
# LibreTime deps
|
||||
# TODO: move me to requirements-file ala debian e.a.
|
||||
yum install -y \
|
||||
git \
|
||||
php \
|
||||
|
@ -94,6 +95,7 @@ yum install -y \
|
|||
selinux-policy \
|
||||
policycoreutils-python \
|
||||
python-celery \
|
||||
python2-pika \
|
||||
lsof
|
||||
|
||||
# for pip ssl install
|
||||
|
|
Loading…
Reference in New Issue