summarylogtreecommitdiffstats
path: root/python311.patch
blob: 92a91b15ff087afa07395f4eed6f29a06bcaed42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff '--color=auto' --unified --recursive --text cavalcade-git.orig/cavalcade/version.py cavalcade-git.new/cavalcade/version.py
--- cavalcade-git.orig/cavalcade/version.py	2023-05-04 13:05:39.104644632 +0300
+++ cavalcade-git.new/cavalcade/version.py	2023-05-04 13:11:48.847967829 +0300
@@ -25,7 +25,7 @@
 		elif branch == _DEVELOPMENT_BRANCH:
 			version = "%.1f.dev%s-%s" % (float(v) + 0.1, n, commit)
 		else:
-			version = "%s-%s-%s" % (v, branch, commit)
+			version = "%s.dev%s+%s" % (v, n, commit)
 	except Exception as e:
 		# use plain print instead of logger to avoid potential error on setup
 		print("Can't read git output:\n%s", e)