From 296f51ff2f74ab21e9ba0be64db6452677415583 Mon Sep 17 00:00:00 2001 From: Felix Ortmann Date: Tue, 23 Feb 2021 10:16:42 +0100 Subject: [PATCH] Default to zmq for local installations via make --- plugins/apps/threatbus_misp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/apps/threatbus_misp/Makefile b/plugins/apps/threatbus_misp/Makefile index 6ae7e548..e93095b8 100644 --- a/plugins/apps/threatbus_misp/Makefile +++ b/plugins/apps/threatbus_misp/Makefile @@ -30,8 +30,8 @@ dist: .PHONY: install install: - pip install . + pip install .[zmq] .PHONY: dev-mode dev-mode: - pip install --editable . + pip install --editable .[zmq]