From 64e4fe0f016dabaec1711d122077a3aef04fa301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCller?= Date: Wed, 22 Jun 2016 14:58:32 +0200 Subject: [PATCH] setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 2ad5390..66c0c53 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,6 @@ def check_header_version(include_path): with open(os.path.join(include_path, 'gromacs/version.h')) as f: for l in f.readlines(): if '#define GMX_API_VERSION' in l: - print(l) version = int(l.split()[-1]) assert version >= 50100, 'Installed gromacs version is too low!' return