projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa5e0a3
)
this_version.py: fix release mode
author
Paul Brossier
<piem@piem.org>
Thu, 23 Mar 2017 17:56:26 +0000
(18:56 +0100)
committer
Paul Brossier
<piem@piem.org>
Thu, 23 Mar 2017 17:56:26 +0000
(18:56 +0100)
this_version.py
patch
|
blob
|
history
diff --git
a/this_version.py
b/this_version.py
index
59bc65b
..
69d2f56
100644
(file)
--- a/
this_version.py
+++ b/
this_version.py
@@
-60,7
+60,9
@@
def get_aubio_pyversion():
pep440str = aubio_version.replace('+', '.')
verstr = pep440str.replace('~git.', 'a0+')
elif '~alpha' in aubio_version:
- verstr = "a0"
+ verstr = aubio_version.replace('~alpha', 'a0')
+ else:
+ verstr = aubio_version
return verstr
def get_git_revision_hash(short=True):