summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-09-23 14:03:37 -0600
committerCharles Harris <charlesr.harris@gmail.com>2015-09-23 15:01:50 -0600
commitfe857457d4f3fa268495cb962521769bd4ce1da0 (patch)
treec1010a99f2281c0466f402ff21f314b2174e0a71
parent941a4e037d394dada43e3c2beef1e650d5505742 (diff)
downloadnumpy-fe857457d4f3fa268495cb962521769bd4ce1da0.tar.gz
BUG: PEP440 compliant versioning for development releases.
The pavement script was not using the new '.dev0+' GIT_REVISION[:7] suffix for development releases.
-rw-r--r--pavement.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py
index ac857a492..acceed0ad 100644
--- a/pavement.py
+++ b/pavement.py
@@ -89,7 +89,7 @@ try:
GIT_REVISION = "Unknown"
if not setup_py.ISRELEASED:
- FULLVERSION += '.dev-' + GIT_REVISION[:7]
+ FULLVERSION += '.dev0+' + GIT_REVISION[:7]
finally:
sys.path.pop(0)