Skip to content

Commit 82b26db

Browse files
committed
Use version.cfg when git is not installed
1 parent e611387 commit 82b26db

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
@@ -34,8 +34,11 @@ def getversioncfg():
3434
cp.read(versioncfgfile)
3535
gitdir = os.path.join(MYDIR, '.git')
3636
if not os.path.isdir(gitdir): return cp
37+
try:
38+
g = gitinfo()
39+
except OSError:
40+
return cp
3741
d = cp.defaults()
38-
g = gitinfo()
3942
if g['version'] != d.get('version') or g['commit'] != d.get('commit'):
4043
cp.set('DEFAULT', 'version', g['version'])
4144
cp.set('DEFAULT', 'commit', g['commit'])

0 commit comments

Comments
 (0)