From da3e96b51e169c0825a55e39999959b38f369ab4 Mon Sep 17 00:00:00 2001 From: davebshow <davebshow@gmail.com> Date: Sat, 15 Jul 2017 12:51:15 -0400 Subject: [PATCH] fixed custom command for gremlinpython install --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3543dca..c53a680 100644 --- a/setup.py +++ b/setup.py @@ -6,10 +6,7 @@ from distutils.command.build_py import build_py as _build_py class build_py(_build_py): """Don't install tornado when installing gremlinpython""" def run(self): - pip.main([ - 'install', - 'gremlinpython==3.2.5', - '--no-deps']) + pip.main(['install', 'gremlinpython==3.2.5', '--no-deps']) _build_py.run(self) setup( -- GitLab