Changeset 2169 for trunk/python
- Timestamp:
- 05/17/11 15:22:45 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asaplotbase.py
r2068 r2169 22 22 from matplotlib.transforms import blend_xy_sep_transform as blended_transform_factory 23 23 24 if int(matplotlib.__version__.split(".")[1]) < 99: 24 mvers = matplotlib.__version__.split(".") 25 if int(mvers[0]) == 0 and int(mvers[1]) < 99: 25 26 #print "Warning: matplotlib version < 0.87. This might cause errors. Please upgrade." 26 27 asaplog.push( "matplotlib version < 0.99. This might cause errors. Please upgrade." )
Note:
See TracChangeset
for help on using the changeset viewer.