@@ -360,7 +360,7 @@ def __init__(self):
360360 self ._khiops_version = None
361361 self ._samples_dir = None
362362
363- # Whether to write the khiops-python version of the scenarios
363+ # Whether to write the Khiops Python library version of the scenarios
364364 # For development uses only
365365 self ._write_version = True
366366
@@ -393,7 +393,7 @@ def root_temp_dir(self):
393393 r"""str: The runner's temporary directory
394394
395395 The temporary scenarios/templates and dictionary files created by
396- khiops-python are stored here.
396+ the Khiops Python library are stored here.
397397
398398 Default value:
399399 - Windows: ``%TEMP%\khiops\python``
@@ -619,7 +619,7 @@ def _build_status_message(self):
619619 if caught_warnings is not None :
620620 warning_list += caught_warnings
621621
622- status_msg = "khiops-python settings\n "
622+ status_msg = "Khiops Python library settings\n "
623623 status_msg += f"version : { khiops .__version__ } \n "
624624 status_msg += f"runner class : { self .__class__ .__name__ } \n "
625625 status_msg += f"max cores : { self .max_cores } "
@@ -641,14 +641,14 @@ def print_status(self):
641641 try :
642642 status_msg , warning_list = self ._build_status_message ()
643643 except (KhiopsEnvironmentError , KhiopsRuntimeError ) as error :
644- print (f"khiops-python status KO: { error } " )
644+ print (f"Khiops Python library status KO: { error } " )
645645 return 1
646646
647647 # Print status details
648648 print (status_msg , end = "" )
649649
650650 # Print status
651- print ("khiops-python status OK" , end = "" )
651+ print ("Khiops Python library status OK" , end = "" )
652652 if warning_list :
653653 print (", with warnings:" )
654654 for warning in warning_list :
@@ -1415,21 +1415,21 @@ def _initialize_khiops_version(self):
14151415 else :
14161416 khiops_version_str , _ , _ , _ = _get_tool_info_khiops9 (self , "khiops" )
14171417 warnings .warn (
1418- "Khiops version is earlier than 10.0; khiops-python will "
1418+ "Khiops version is earlier than 10.0; the Khiops Python library will "
14191419 f"run in legacy mode. Khiops path: { self ._tool_path ('khiops' )} " ,
14201420 stacklevel = 3 ,
14211421 )
14221422 self ._khiops_version = KhiopsVersion (khiops_version_str )
14231423
1424- # Warn if the khiops version is too far from the khiops-python version
1424+ # Warn if the khiops version is too far from the Khiops Python library version
14251425 compatible_khiops_version = khiops .get_compatible_khiops_version ()
14261426 if self ._khiops_version .major > compatible_khiops_version .major :
14271427 warnings .warn (
14281428 f"Khiops version '{ self ._khiops_version } ' is ahead of "
1429- f"the khiops-python version '{ khiops .__version__ } '. "
1429+ f"the Khiops Python library version '{ khiops .__version__ } '. "
14301430 "There may be compatibility errors and "
1431- "we recommend you to update to the latest khiops-python version. "
1432- "Go to https://khiops.org for more information." ,
1431+ "we recommend you to update to the latest Khiops Python "
1432+ "library version. See https://khiops.org for more information." ,
14331433 stacklevel = 3 ,
14341434 )
14351435
0 commit comments