From cc6f77136869544bf09d460f26db92c1a631b835 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Thu, 12 Dec 2019 18:10:22 -0500 Subject: [PATCH] [skip ci] strip whitespace from VERSION --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index f53a08513..7324a6840 100644 --- a/python/setup.py +++ b/python/setup.py @@ -2,7 +2,7 @@ import setuptools import os with open(os.path.join(os.path.dirname(__file__),'damask/VERSION')) as f: - version = f.readline() + version = f.readline().strip() setuptools.setup( name="damask",