We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e611387 commit 82b26dbCopy full SHA for 82b26db
setup.py
@@ -34,8 +34,11 @@ def getversioncfg():
34
cp.read(versioncfgfile)
35
gitdir = os.path.join(MYDIR, '.git')
36
if not os.path.isdir(gitdir): return cp
37
+ try:
38
+ g = gitinfo()
39
+ except OSError:
40
+ return cp
41
d = cp.defaults()
- g = gitinfo()
42
if g['version'] != d.get('version') or g['commit'] != d.get('commit'):
43
cp.set('DEFAULT', 'version', g['version'])
44
cp.set('DEFAULT', 'commit', g['commit'])
0 commit comments