setup.py: look for a tag named after APPNAME, not necessarily "allmydata-tahoe". refs #1146
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
parent
2eeb8ee6f5
commit
e1a3a2001f
3
setup.py
3
setup.py
|
@ -366,7 +366,8 @@ Warning: no version information found. This may cause tests to fail.
|
|||
""")
|
||||
|
||||
def try_from_git(self):
|
||||
versions = versions_from_git("allmydata-tahoe-")
|
||||
# If we change APPNAME, the release tag names should also change from then on.
|
||||
versions = versions_from_git(APPNAME + '-')
|
||||
if versions:
|
||||
f = open(VERSION_PY_FILENAME, "wb")
|
||||
f.write(GIT_VERSION_BODY %
|
||||
|
|
Loading…
Reference in New Issue