mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[version] Set version number based on UTC time, not local time
This commit is contained in:
parent
46261325be
commit
f3b7c69377
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ old_version_list = old_version.split(".", 4)
|
|||
old_ver = '.'.join(old_version_list[:3])
|
||||
old_rev = old_version_list[3] if len(old_version_list) > 3 else ''
|
||||
|
||||
ver = datetime.now().strftime("%Y.%m.%d")
|
||||
ver = datetime.utcnow().strftime("%Y.%m.%d")
|
||||
rev = str(int(old_rev or 0) + 1) if old_ver == ver else ''
|
||||
|
||||
VERSION = '.'.join((ver, rev)) if rev else ver
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue