We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f22f98c commit 990d05eCopy full SHA for 990d05e
openerp/release.py
@@ -30,7 +30,7 @@
30
# properly comparable using normal operarors, for example:
31
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
32
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
33
-version_info = (8, 0, 0, RELEASE_CANDIDATE, 1)
+version_info = (8, 0, 0, FINAL, 0)
34
version = '.'.join(map(str, version_info[:2])) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '')
35
series = serie = major_version = '.'.join(map(str, version_info[:2]))
36
0 commit comments