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