File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4545 "GitPython>=3.1.40" ,
4646 "psutil" ,
4747 "wmi" ,
48+ "pytz" ,
4849 # Conditional dependencies for ONNXRuntime backends
4950 "onnxruntime >=1.10.1;platform_system=='Linux' and extra != 'llm-oga-cuda'" ,
5051 "onnxruntime-directml >=1.19.0;platform_system=='Windows' and extra != 'llm-oga-cuda'" ,
Original file line number Diff line number Diff line change 44import copy
55from datetime import datetime
66from typing import List , Dict , Optional
7+ import pytz
78import turnkeyml .common .printing as printing
89import turnkeyml .common .exceptions as exp
910import turnkeyml .common .build as build
@@ -128,9 +129,10 @@ def launch(
128129 state .save_stat (fs .Keys .BUILD_STATUS , build .FunctionStatus .INCOMPLETE )
129130
130131 # Save a timestamp so that we know the order of builds within a cache
132+ pacific_tz = pytz .timezone ("America/Los_Angeles" )
131133 state .save_stat (
132134 fs .Keys .TIMESTAMP ,
133- datetime .now (),
135+ datetime .now (pacific_tz ),
134136 )
135137
136138 # Save the system information used for this build
Original file line number Diff line number Diff line change 1- __version__ = "4.0.9 "
1+ __version__ = "4.0.10 "
You can’t perform that action at this time.
0 commit comments