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

Commit bc068e7

Browse files
committed
TM
1 parent 320be49 commit bc068e7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.actions/assistant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def bash_test(folder: str, output_file: str = PATH_SCRIPT_TEST) -> Optional[str]
372372
if AssistantCLI._valid_accelerator(folder):
373373
# and install specific packages
374374
pip_req, pip_args = AssistantCLI._parse_requirements(folder)
375-
cmd += [f"pip install {pip_req} {pip_args}", "pip list"] # TODO: add ` --quiet`
375+
cmd += [f"pip install {pip_req} --quiet {pip_args}", "pip list"]
376376
# Export the actual packages used in runtime
377377
cmd.append(f"meta_file=$(python .actions/assistant.py update-env-details {folder} --base_path .)")
378378
# show created meta config

templates/titanic/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ description: |
88
This is a template to show how to contribute a tutorial.
99
requirements:
1010
- lightning-flash[tabular]>=0.7
11+
- torchmetrics<0.8 # collision with `pytorch-tabular` which require PL 1.3.6
1112
- pandas>=1.0
1213
- matplotlib>=3.0
1314
- seaborn

0 commit comments

Comments
 (0)