Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 16e050d

Browse files
committed
req
1 parent 91a7d31 commit 16e050d

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.actions/assistant.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,10 +363,12 @@ def bash_test(folder: str, output_file: str = PATH_SCRIPT_TEST) -> Optional[str]
363363
# prepare isolated environment with inheriting the global packages
364364
path_venv = os.path.join(folder, 'venv')
365365
cmd += [
366-
f"rm -rf {path_venv}",
366+
f"rm -rf {path_venv}", # FixMe: remove
367+
"pip list", # FixMe: remove
367368
f"python -m virtualenv --system-site-packages {path_venv}",
368369
f"source {os.path.join(path_venv, 'bin', 'activate')}",
369370
"pip --version",
371+
"pip list", # FixMe: remove
370372
]
371373

372374
cmd.append(f"# available: {AssistantCLI.DEVICE_ACCELERATOR}")

templates/img-classify/.meta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ tags:
99
description: |
1010
This is a template to show simple image classification case if for some reason accelerator is required.
1111
requirements:
12-
- lightning-flash[image]
13-
- pandas
14-
- matplotlib
12+
- lightning-flash[image]>=0.6
13+
- pandas>=1.0
14+
- matplotlib>=3.0
1515
- seaborn
1616
accelerator:
1717
- GPU

templates/titanic/.meta.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ build: 0
77
description: |
88
This is a template to show how to contribute a tutorial.
99
requirements:
10-
- lightning-flash[tabular]
11-
- matplotlib
10+
- lightning-flash[tabular]>=0.6
11+
- pandas>=1.0
12+
- matplotlib>=3.0
1213
- seaborn
1314
accelerator:
1415
- CPU

0 commit comments

Comments
 (0)