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 c0089b1 commit e7716b3Copy full SHA for e7716b3
setup.py
@@ -33,7 +33,8 @@ def test_python_version():
33
34
# Set version
35
__version__ = '0.0.0' # Explicit default
36
-execfile('stackdio/client/version.py')
+with open('stackdio/client/version.py') as f:
37
+ exec(f.read())
38
39
40
SHORT_DESCRIPTION = ('A cloud deployment, automation, and orchestration '
0 commit comments