We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d28276 commit c208be2Copy full SHA for c208be2
setup.py
@@ -27,7 +27,7 @@
27
def gitinfo():
28
from subprocess import Popen, PIPE
29
kw = dict(stdout=PIPE, cwd=MYDIR, universal_newlines=True)
30
- proc = Popen(['git', 'describe', '--match=v[[:digit:]]*'], **kw)
+ proc = Popen(['git', 'describe', '--tags', '--match=v[[:digit:]]*'], **kw)
31
desc = proc.stdout.read()
32
proc = Popen(['git', 'log', '-1', '--format=%H %ct %ci'], **kw)
33
glog = proc.stdout.read()
0 commit comments