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 45
45
"GitPython>=3.1.40" ,
46
46
"psutil" ,
47
47
"wmi" ,
48
+ "pytz" ,
48
49
# Conditional dependencies for ONNXRuntime backends
49
50
"onnxruntime >=1.10.1;platform_system=='Linux' and extra != 'llm-oga-cuda'" ,
50
51
"onnxruntime-directml >=1.19.0;platform_system=='Windows' and extra != 'llm-oga-cuda'" ,
Original file line number Diff line number Diff line change 4
4
import copy
5
5
from datetime import datetime
6
6
from typing import List , Dict , Optional
7
+ import pytz
7
8
import turnkeyml .common .printing as printing
8
9
import turnkeyml .common .exceptions as exp
9
10
import turnkeyml .common .build as build
@@ -128,9 +129,10 @@ def launch(
128
129
state .save_stat (fs .Keys .BUILD_STATUS , build .FunctionStatus .INCOMPLETE )
129
130
130
131
# Save a timestamp so that we know the order of builds within a cache
132
+ pacific_tz = pytz .timezone ("America/Los_Angeles" )
131
133
state .save_stat (
132
134
fs .Keys .TIMESTAMP ,
133
- datetime .now (),
135
+ datetime .now (pacific_tz ),
134
136
)
135
137
136
138
# 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