From 79f13c5a6438c2182657fda8f97283bb8e4a63db Mon Sep 17 00:00:00 2001 From: Jeremy Phelps Date: Tue, 27 Mar 2018 17:43:51 -0500 Subject: Fix version to reside in setup.py There are better ways to do this according to the community but I cannot get it to work with tox atm. This will unblock the project though. Change-Id: Ia6b42c8b2078938b0cbc76618938f953f2ab9cb2 Issue-ID: CIMAN-145 Signed-off-by: Jeremy Phelps --- aria/aria-rest-server/setup.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'aria/aria-rest-server/setup.py') diff --git a/aria/aria-rest-server/setup.py b/aria/aria-rest-server/setup.py index 799fe46021..eca497c1d4 100644 --- a/aria/aria-rest-server/setup.py +++ b/aria/aria-rest-server/setup.py @@ -19,15 +19,9 @@ from setuptools import setup, find_packages -try: - with open('VERSION') as v_file: - version = v_file.read().strip() -except IOError: - print "There was a problem parsing the VERSION file." - setup( name='aria-rest-server', - version=version, + version='0.1.0', packages=find_packages(), author = '', author_email = '', -- cgit 1.2.3-korg