File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 88init (autoreset = True )
99
1010def 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
1414if __name__ == "__main__" :
1515 main ()
Original file line number Diff line number Diff line change 22"""Simple hello world program using colorama package."""
33
44from colorama import Fore , Style , init
5- import pytorch
5+ import torch
66
77# Initialize colorama
88init (autoreset = True )
99
1010def main ():
11+ print ("Pytorch version:" , torch .__version__ )
1112 print (f"{ Fore .GREEN } Hello World!{ Style .RESET_ALL } " )
12- print ("Pytorch version:" , pytorch .__version__ )
1313
1414if __name__ == "__main__" :
1515 main ()
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "hello-world"
33version = " 1.0.0"
44description = " A simple hello world program"
55readme = " README.md"
6- requires-python = " >=3.8 "
6+ requires-python = " >=3.10 "
77dependencies = [
88 " colorama>=0.4.6" ,
99 " torch>=2.9.0" ,
You can’t perform that action at this time.
0 commit comments