Skip to content
Snippets Groups Projects
Commit 273124ec authored by Dilawar Singh's avatar Dilawar Singh
Browse files

Squashed 'moose-core/' changes from 343cb02..14cf2df

14cf2df Fixed the setup.py file. Use absolute path for script to determine absolute path of VERSION file.

git-subtree-dir: moose-core
git-subtree-split: 14cf2df3a65456c6b4ce67b2d34110fd3400c982
parent 8bfef2e6
No related branches found
No related tags found
No related merge requests found
3.1.0-119-g835bf9a
\ No newline at end of file
3.1.0-120-g343cb02
\ No newline at end of file
......@@ -31,7 +31,9 @@ __status__ = "Development"
import os
from distutils.core import setup
with open( '../../VERSION', 'r' ) as f:
script_dir = os.path.dirname( os.path.abspath( __FILE__ ) )
with open( os.path.join( script_dir, '../../VERSION'), 'r' ) as f:
version = f.read( )
try:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment