File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ https://keepachangelog.com/en/1.0.0/
1010https://semver.org/spec/v2.0.0.html
1111
1212
13- ## [ 1.3.5]
13+ ## [ 1.3.5] - 2022-10-25
1414
1515### Fixed
1616- Fix broken array slicing inside ` addcyclic ` (PR [ #559 ] , solves issue
@@ -1020,7 +1020,9 @@ https://github.com/matplotlib/basemap/issues/228
10201020https://github.com/matplotlib/basemap/issues/179
10211021
10221022[ Unreleased] :
1023- https://github.com/matplotlib/basemap/compare/v1.3.4...develop
1023+ https://github.com/matplotlib/basemap/compare/v1.3.5...develop
1024+ [ 1.3.5] :
1025+ https://github.com/matplotlib/basemap/compare/v1.3.4...v1.3.5
10241026[ 1.3.4] :
10251027https://github.com/matplotlib/basemap/compare/v1.3.3...v1.3.4
10261028[ 1.3.3] :
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def run(self):
172172 "name" :
173173 "basemap" ,
174174 "version" :
175- "1.3.4 " ,
175+ "1.3.5 " ,
176176 "license" :
177177 "MIT" ,
178178 "description" :
Original file line number Diff line number Diff line change 5353import _geoslib
5454import functools
5555
56+
57+ __version__ = "1.3.5"
58+
5659# basemap data files now installed in lib/matplotlib/toolkits/basemap/data
5760# check to see if environment variable BASEMAPDATA set to a directory,
5861# and if so look for the data there.
6467 from mpl_toolkits import basemap_data
6568 basemap_datadir = os .path .abspath (list (basemap_data .__path__ )[0 ])
6669
67- __version__ = "1.3.4"
68-
6970# module variable that sets the default value for the 'latlon' kwarg.
7071# can be set to True by user so plotting functions can take lons,lats
7172# in degrees by default, instead of x,y (map projection coords in meters).
Original file line number Diff line number Diff line change 1010 # as textwrap.dedent.
1111 from matplotlib .cbook import dedent
1212
13- __version__ = "1.3.4"
13+
14+ __version__ = "1.3.5"
15+
1416_dg2rad = math .radians (1. )
1517_rad2dg = math .degrees (1. )
1618
You can’t perform that action at this time.
0 commit comments