We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed24486 commit 0f7e24dCopy full SHA for 0f7e24d
setup.py
@@ -28,7 +28,7 @@
28
29
30
here = os.path.abspath(os.path.dirname(__file__))
31
-execfile(os.path.join(here, 'sqlalchemy_pervasive', '_version.py'))
+exec(compile(open(os.path.join(here, 'sqlalchemy_pervasive', '_version.py')).read(), os.path.join(here, 'sqlalchemy_pervasive', '_version.py'), 'exec'))
32
33
README = open(os.path.join(here, 'README.rst')).read()
34
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
0 commit comments