File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ datasets==2.12.0
7
7
numpy == 1.22.4
8
8
pandas == 1.5.3
9
9
session_info == 1.0.0
10
- scikit-learn == 1.2.2
10
+ scikit-learn == 1.5.0
11
11
transformers == 4.28.1
12
12
IPython == 7.34.0
Original file line number Diff line number Diff line change 1
1
torchvision
2
2
accelerate
3
3
gradio
4
- zenml [server ]= =0.56.3
4
+ zenml [server ]> =0.56.3
Original file line number Diff line number Diff line change 13
13
# permissions and limitations under the License.
14
14
15
15
16
+ import contextlib
16
17
import os
17
18
import sys
18
19
import shutil
@@ -101,9 +102,7 @@ def clean_zenml_client(
101
102
# remove all traces, and change working directory back to base path
102
103
os .chdir (orig_cwd )
103
104
if sys .platform == "win32" :
104
- try :
105
+ with contextlib . suppress ( Exception ):
105
106
shutil .rmtree (str (tmp_path ))
106
- except :
107
- pass
108
107
else :
109
108
shutil .rmtree (str (tmp_path ))
You can’t perform that action at this time.
0 commit comments