You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: setup.py
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,9 +63,15 @@
63
63
ifmajor==2andminor1==2:
64
64
print>>sys.stderr, "***\n\nWARNING, see build info for python2.2 in the header of setup.py\n\n***"
65
65
ifmajor==2andminor1<=3:
66
-
try: importsetuptools# setuptools monkeypatches distutils.core.Distribution to support package_data
66
+
# setuptools monkeypatches distutils.core.Distribution to support
67
+
# package_data
68
+
try: importsetuptools
67
69
exceptImportError:
68
-
raiseSystemExit('matplotlib requires setup tools for installation. Please download http://peak.telecommunity.com/dist/ez_setup.py and run it (as su if you are doing a systemwide install) to install the proper version of setuptools for your system')
70
+
raiseSystemExit("""\
71
+
matplotlib requires setuptools for installation. Please download
72
+
http://peak.telecommunity.com/dist/ez_setup.py and run it (as su if
73
+
you are doing a system wide install) to install the proper version of
0 commit comments