From d70208d6ecf7722d630ec2a50f83d95b73b91cce Mon Sep 17 00:00:00 2001 From: Marco Bartoli Date: Sun, 2 Apr 2017 22:11:58 +0200 Subject: [PATCH] Recent versions break things, limit to 2.0 Just if someone wants to run the old version without problems... --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4f679f7..ac53cb2 100644 --- a/setup.py +++ b/setup.py @@ -22,5 +22,5 @@ def read(fname): 'joernsteps/taintTracking/initGraphs/*.groovy', 'joernsteps/typeInference/*.groovy', ]}, - install_requires = ['py2neo >= 2.0.7'] + install_requires = ['py2neo == 2.0.9'] )