File tree Expand file tree Collapse file tree 3 files changed +19
-9
lines changed Expand file tree Collapse file tree 3 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 1
- version 1.0.8 (not yet released )
1
+ version 1.1.0 (git tag v1.1.0rel )
2
2
--------------------------------
3
- * removes inline pyshp and pyproj code and uses makes these packages required
4
- external dependencies (handling issue 230).
3
+ * pyshp/pyproj are now external dependencies (PR #234)
4
+ * Proper clipping of plots regardless of projection (issue 175)
5
+ * drawmapscale() supports "feet" as an input unit (PR 289)
6
+ * nightshade() supports datetime timezone-aware datetime objects
7
+ as long as the timezone is UTC. Still assumes timezone-naive
8
+ objects are UTC as well. (issue 272)
9
+ * Properly perform input validation/casting (issue 260)
10
+ * Support newer versions of OWSLib (PR 259)
11
+ * Use integer indexes (PR #246)
12
+ * Stop ResourceWarnings for unclosed files in py3k (PR #244)
5
13
* add 'textcolor' kwarg to drawmeridians and drawparallels (issue 145).
6
14
* don't assume grid is regular when adding cyclic point in addcyclic.
7
15
New kwargs 'axis' and 'cyclic' added. More than one array
Original file line number Diff line number Diff line change 47
47
else :
48
48
basemap_datadir = os .sep .join ([os .path .dirname (__file__ ), 'data' ])
49
49
50
- __version__ = '1.0.8 '
50
+ __version__ = '1.1.0 '
51
51
52
52
# module variable that sets the default value for the 'latlon' kwarg.
53
53
# can be set to True by user so plotting functions can take lons,lats
Original file line number Diff line number Diff line change @@ -115,20 +115,22 @@ def checkversion(GEOS_dir):
115
115
"pyshp >= 1.2.0"
116
116
]
117
117
118
- __version__ = "1.0.8 "
118
+ __version__ = "1.1.0 "
119
119
setup (
120
120
name = "basemap" ,
121
121
version = __version__ ,
122
122
description = "Plot data on map projections with matplotlib" ,
123
123
long_description = """
124
124
An add-on toolkit for matplotlib that lets you plot data
125
125
on map projections with coastlines, lakes, rivers and political boundaries.
126
- See http://www.scipy. org/wikis/topical_software/Maps for an
127
- example of what it can do.""" ,
128
- url = "http://matplotlib.sourceforge.net/toolkits.html " ,
129
- download_url = "https://downloads.sourceforge.net/project/ matplotlib/matplotlib-toolkits/ basemap-{0}/basemap- {0}.tar.gz" .format (__version__ ),
126
+ See http://matplotlib. org/basemap/users/examples.html for
127
+ examples of what it can do.""" ,
128
+ url = "http://matplotlib.org/basemap/ " ,
129
+ download_url = "https://github.com/ matplotlib/basemap/archive/v {0}rel .tar.gz" .format (__version__ ),
130
130
author = "Jeff Whitaker" ,
131
131
author_email = "[email protected] " ,
132
+ maintainer = "Ben Root" ,
133
+ maintainer_email = "[email protected] " ,
132
134
install_requires = requirements ,
133
135
platforms = ["any" ],
134
136
license = "OSI Approved" ,
You can’t perform that action at this time.
0 commit comments