Skip to content

Commit e5cf28d

Browse files
committed
Improvements.
1 parent eb5387a commit e5cf28d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/bin/integration_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ fn test_tar_gz_approach(
297297
if !last_line.contains("Hello World!") {
298298
return Err(format!(
299299
"Expected last line to contain 'Hello World!', but got:\n{}",
300-
stdout
300+
last_line
301301
)
302302
.into());
303303
}

testprojects/tinycugraph/hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
init(autoreset=True)
99

1010
def main():
11-
print(f"{Fore.GREEN}Hello World!{Style.RESET_ALL}")
1211
print("Cugraph version:", cugraph.__version__)
12+
print(f"{Fore.GREEN}Hello World!{Style.RESET_ALL}")
1313

1414
if __name__ == "__main__":
1515
main()

testprojects/tinytorch/hello.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"""Simple hello world program using colorama package."""
33

44
from colorama import Fore, Style, init
5-
import pytorch
5+
import torch
66

77
# Initialize colorama
88
init(autoreset=True)
99

1010
def main():
11+
print("Pytorch version:", torch.__version__)
1112
print(f"{Fore.GREEN}Hello World!{Style.RESET_ALL}")
12-
print("Pytorch version:", pytorch.__version__)
1313

1414
if __name__ == "__main__":
1515
main()

testprojects/tinytorch/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "hello-world"
33
version = "1.0.0"
44
description = "A simple hello world program"
55
readme = "README.md"
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.10"
77
dependencies = [
88
"colorama>=0.4.6",
99
"torch>=2.9.0",

0 commit comments

Comments
 (0)