summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@riseup.net>2017-01-09 18:29:31 -0200
committerBruno Wagner <bwagner@riseup.net>2017-01-09 18:29:31 -0200
commitfa3660a5a10935be343f0fcb8b09515375f79736 (patch)
tree1a1782c35b75c38fe2d9602a150ac603f2063ae7 /Makefile
parentbe1f95f20083e64955bb041f94d96bb46b8112b1 (diff)
Added special bundled requirements for pysqlcipher
The build breaks without it, with it most machines can run the tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e903ab34..2d66a79f 100644
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,7 @@ install_py: service/requirements.txt service/test_requirements.txt
@echo "Installing python packages"
@source $(VIRTUALENV)/bin/activate;\
cd service;\
+ pip install pysqlcipher --upgrade --force-reinstall --install-option="--bundled";\
pip install --exists-action s -r requirements.txt -r test_requirements.txt
.PHONY: requirements_js