Replace occurrences of execfile()

This commit is contained in:
Lance Edgar 2017-07-06 16:25:29 -05:00
parent 91a14c81a9
commit 5bded89466
2 changed files with 3 additions and 3 deletions

View file

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