Use a PEP-440 dev version instead of snapshot-.
authorRobert Collins <robertc@robertcollins.net>
Sat, 15 Nov 2014 19:46:53 +0000 (08:46 +1300)
committerRobert Collins <robertc@robertcollins.net>
Sat, 15 Nov 2014 19:46:53 +0000 (08:46 +1300)
This will hopefully fix travis during dev periods.

Change-Id: I63b33c33999a09cc3e52c6cba6b31292b13960e7

setup.py

index 1d9489365d9fbb777e2b4c6e6d2e09c2983c6fa7..a6c3e18a647f986ef008c9908af24243621ecd55 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@ def get_version():
     # Apparently if we just say "snapshot" then distribute won't accept it
     # as satisfying versioned dependencies. This is a problem for the
     # daily build version.
-    return "snapshot-%s" % (version,)
+    return "%s.0dev0" % (version,)
 
 
 def get_long_description():