@@ -79,6 +79,9 @@ def info_main(*args):
79
79
logger .info ('' .join ([Style .BRIGHT , Fore .GREEN ] + list (args ) +
80
80
[Style .RESET_ALL , Fore .RESET ]))
81
81
82
+ def info_notify (s ):
83
+ info ('{}{}{}{}' .format (Style .BRIGHT , Fore .LIGHTBLUE_EX , s , Style .RESET_ALL ))
84
+
82
85
def pretty_log_dists (dists ):
83
86
infos = []
84
87
for dist in dists :
@@ -1868,6 +1871,8 @@ def build_recipes(names, ctx):
1868
1871
recipe_loaded .append (name )
1869
1872
build_order = list (graph .find_order ())
1870
1873
info ("Recipe build order is {}" .format (build_order ))
1874
+ info_notify (('The requirements ({}) were not found as recipes, they will be '
1875
+ 'installed with pip.' ).format (', ' .join (python_modules )))
1871
1876
ctx .recipe_build_order = build_order
1872
1877
1873
1878
recipes = [Recipe .get_recipe (name , ctx ) for name in build_order ]
@@ -2069,7 +2074,7 @@ def build_dist_from_args(ctx, dist, args_list):
2069
2074
bs = Bootstrap .get_bootstrap (args .bootstrap , ctx )
2070
2075
info_main ('# Creating dist with with {} bootstrap' .format (bs .name ))
2071
2076
bs .distribution = dist
2072
- info ('Dist will have name {} and recipes ({})' .format (
2077
+ info_notify ('Dist will have name {} and recipes ({})' .format (
2073
2078
dist .name , ', ' .join (dist .recipes )))
2074
2079
2075
2080
ctx .dist_name = bs .distribution .name
0 commit comments