File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22# git_verinfo.py - GSAS-II version info from git
33# Do not edit, generated by 'GSASII/install/incr-version.py' script
4- # Created 2025-05-01 14:59:54.796300 -05:00
4+ # Created 2025-05-05 10:06:44.092051 -05:00
55
6- git_version = 'ae984498e42fa51cdda5e0d4071e9453b338bc33 '
7- git_tags = ['5810 ' ]
8- git_prevtaggedversion = '4fe4437a74feacd1a8276f275667d67468cc5ad2 '
9- git_prevtags = ['5809 ' ]
10- git_versiontag = 'v5.4.3 '
6+ git_version = 'a95be82a9e08ad537dca1547dcab2f1fcd0bd3a8 '
7+ git_tags = ['5811 ' ]
8+ git_prevtaggedversion = 'ae984498e42fa51cdda5e0d4071e9453b338bc33 '
9+ git_prevtags = ['5810 ' ]
10+ git_versiontag = 'v5.4.4 '
Original file line number Diff line number Diff line change 6060 tags0 = g2repo .git .tag ('--points-at' ,commit )
6161 if tags0 : tags0 = tags0 .split ('\n ' )
6262 if tags0 :
63- print (f'Latest commit ({ commit .hexsha [:7 ]} ) is already tagged ({ ', ' .join (tags0 )} ).' )
63+ print (f'Latest commit ({ commit .hexsha [:7 ]} ) is already tagged ({ ", " .join (tags0 )} ).' )
6464 sys .exit ()
6565 prev = g2repo .head .commit .parents
6666 if len (prev ) == 1 :
6767 tagsm1 = g2repo .git .tag ('--points-at' ,prev [0 ])
6868 if tagsm1 : tagsm1 = tagsm1 .split ('\n ' )
6969 if tagsm1 :
70- print (f'Previous commit ({ prev [0 ].hexsha [:7 ]} ) is already tagged ({ ', ' .join (tagsm1 )} ).' )
70+ print (f'Previous commit ({ prev [0 ].hexsha [:7 ]} ) is already tagged ({ ", " .join (tagsm1 )} ).' )
7171 sys .exit ()
7272
7373 # get the latest version number
You can’t perform that action at this time.
0 commit comments