Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion template/gradio/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ datasets==2.12.0
numpy==1.22.4
pandas==1.5.3
session_info==1.0.0
scikit-learn==1.2.2
scikit-learn==1.5.0
transformers==4.28.1
IPython==7.34.0
2 changes: 1 addition & 1 deletion template/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
torchvision
accelerate
gradio
zenml[server]==0.56.3
zenml[server]>=0.56.3
5 changes: 2 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# permissions and limitations under the License.


import contextlib
import os
import sys
import shutil
Expand Down Expand Up @@ -101,9 +102,7 @@ def clean_zenml_client(
# remove all traces, and change working directory back to base path
os.chdir(orig_cwd)
if sys.platform == "win32":
try:
with contextlib.suppress(Exception):
shutil.rmtree(str(tmp_path))
except:
pass
else:
shutil.rmtree(str(tmp_path))