@@ -360,7 +360,7 @@ def check_provide_pytz(hasdatetime=True):
360
360
import pytz
361
361
except ImportError :
362
362
if hasdatetime and provide_pytz :
363
- print_status ("pytz" , "mpl-provided " )
363
+ print_status ("pytz" , "matplotlib will provide " )
364
364
return True
365
365
else :
366
366
print_status ("pytz" , "no" )
@@ -374,7 +374,7 @@ def check_provide_dateutil(hasdatetime=True):
374
374
import dateutil
375
375
except ImportError :
376
376
if hasdatetime and provide_dateutil :
377
- print_status ("dateutil" , "mpl-provided " )
377
+ print_status ("dateutil" , "matplotlib will provide " )
378
378
return True
379
379
else :
380
380
print_status ("dateutil" , "no" )
@@ -391,7 +391,7 @@ def check_provide_configobj():
391
391
import configobj
392
392
except ImportError :
393
393
if provide_configobj :
394
- print_status ("configobj" , "mpl-provided " )
394
+ print_status ("configobj" , "matplotlib will provide " )
395
395
return True
396
396
else :
397
397
print_status ("configobj" , "no" )
@@ -410,14 +410,14 @@ def check_provide_traits():
410
410
return False
411
411
else :
412
412
if version .version .endswith ('mpl' ):
413
- print_status ("enthought.traits" , "mpl-provided " )
413
+ print_status ("enthought.traits" , "matplotlib will provide " )
414
414
return True
415
415
else :
416
416
print_status ("enthought.traits" , version .version )
417
417
return False
418
418
except ImportError :
419
419
if provide_traits :
420
- print_status ("enthought.traits" , "mpl-provided " )
420
+ print_status ("enthought.traits" , "matplotlib will provide " )
421
421
return True
422
422
else :
423
423
print_status ("enthought.traits" , "no" )
0 commit comments