From 2728157f081e2a97c3dbcca5e6fc30e3c0e71584 Mon Sep 17 00:00:00 2001 From: TheTechromancer Date: Wed, 11 Oct 2023 13:38:10 -0400 Subject: [PATCH] fix py2neo situation --- bbot/modules/output/neo4j.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbot/modules/output/neo4j.py b/bbot/modules/output/neo4j.py index 477bdd373..18bda8bad 100644 --- a/bbot/modules/output/neo4j.py +++ b/bbot/modules/output/neo4j.py @@ -15,7 +15,7 @@ class neo4j(BaseOutputModule): "username": "Neo4j username", "password": "Neo4j password", } - deps_pip = ["py2neo~=2021.2.3"] + deps_pip = ["git+https://github.com/blacklanternsecurity/py2neo"] batch_size = 50 async def setup(self):