Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7082d1 commit e6c4277Copy full SHA for e6c4277
1 file changed
setup.py
@@ -108,14 +108,12 @@
108
BUILD_NXUTILS = 1
109
110
for line in file('lib/matplotlib/__init__.py').readlines():
111
- if (line.startswith('__version__') or
112
- line.startswith('__revision__') or
113
- line.startswith('__date__')):
+ if (line.startswith('__version__')):
114
exec(line.strip())
115
116
print_line()
117
print_raw("BUILDING MATPLOTLIB")
118
-print_status('matplotlib', '%s (r%s)' % (__version__, __revision__.split()[-2]))
+print_status('matplotlib', __version__)
119
print_status('python', sys.version)
120
print_status('platform', sys.platform)
121
if sys.platform == 'win32':
0 commit comments