Replace occurrences of execfile()

This commit is contained in:
Lance Edgar 2017-07-06 16:34:34 -05:00
parent 06be2e2122
commit e08b789393

View file

@ -10,7 +10,7 @@ from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
execfile(os.path.join(here, 'rattail_tempmon_demo', '_version.py')) exec(open(os.path.join(here, 'rattail_tempmon_demo', '_version.py')).read())
README = open(os.path.join(here, 'README.rst')).read() README = open(os.path.join(here, 'README.rst')).read()