We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b99aeb2 commit 32b9659Copy full SHA for 32b9659
2 files changed
.githooks/fill-changelog-metadata.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python3
2
import yaml
3
import subprocess
4
-from datetime import datetime
+from datetime import datetime, timezone
5
from pathlib import Path
6
7
@@ -39,7 +39,7 @@ def main():
39
return
40
41
modified = False
42
- today = datetime.utcnow().strftime('%Y-%m-%d %H:%M UTC')
+ today = datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M UTC')
43
author = get_git_username()
44
45
for entry in changelog['changelog']:
perf-changelog.yaml
@@ -1,5 +1,5 @@
changelog:
- config-key: dsr1-fp8-h200-trt
description: Test change abc
- date: 2025-12-02 22:18 UTC
+ date: 2025-12-02 22:19 UTC
author: Cam Quilici
0 commit comments