##// END OF EJS Templates
Suppress message about pip if we do find a new enough pip
Thomas Kluyver -
Show More
@@ -34,6 +34,9 b' if sys.version_info < (3, 3):'
34 34 if pip_version < (9, 0, 1) :
35 35 pip_message = 'Your pip version is out of date, please install pip >= 9.0.1. '\
36 36 'pip {} detected.'.format(pip.__version__)
37 else:
38 # pip is new enough - it must be something else
39 pip_message = ''
37 40 except Exception:
38 41 pass
39 42
General Comments 0
You need to be logged in to leave comments. Login now