Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit cb52b30

Browse files
clsullivalexjch
authored andcommitted
deploy.sh: install uwsgidecoders correctly, don't pip install uwsgi
We aren't using the uwsgi python library anywhere so don't pip install it. We just use the binary which can and should be supplied by the distro. uwsgidecoders is a normal python library we rely on, so install it the same way we install other libraries. Signed-off-by: California Sullivan <[email protected]>
1 parent 4b5b57e commit cb52b30

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/deploy.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ python-editor==1.0.3
236236
redis==3.1.0
237237
six==1.10.0
238238
SQLAlchemy==1.1.13
239+
uwsgidecorators==1.1.0
239240
Werkzeug==0.12.2
240241
WTForms==2.1
241242
EOF
@@ -245,7 +246,7 @@ _install_pip_pkgs() {
245246
local log=$REMOTE_APP_DIR/install.log
246247
local reqs=$1
247248
sudo rm -f "$log"
248-
sudo bash -c "https_proxy=$https_proxy source venv/bin/activate && https_proxy=$https_proxy pip3 --log $log install -r $reqs uwsgi uwsgidecorators"
249+
sudo bash -c "https_proxy=$https_proxy source venv/bin/activate && https_proxy=$https_proxy pip3 --log $log install -r $reqs"
249250
}
250251

251252
_install_virtual_env() {

0 commit comments

Comments
 (0)