Skip to content

Commit 2a4d253

Browse files
committed
Use version.cfg when git is not installed
1 parent a07adf1 commit 2a4d253

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ def getversioncfg():
3232
cp.read(versioncfgfile)
3333
gitdir = os.path.join(MYDIR, '.git')
3434
if not os.path.isdir(gitdir): return cp
35+
try:
36+
g = gitinfo()
37+
except OSError:
38+
return cp
3539
d = cp.defaults()
36-
g = gitinfo()
3740
if g['version'] != d.get('version') or g['commit'] != d.get('commit'):
3841
cp.set('DEFAULT', 'version', g['version'])
3942
cp.set('DEFAULT', 'commit', g['commit'])

0 commit comments

Comments
 (0)