File tree 4 files changed +11
-6
lines changed
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/
10
10
https://semver.org/spec/v2.0.0.html
11
11
12
12
13
- ## [ 1.3.5]
13
+ ## [ 1.3.5] - 2022-10-25
14
14
15
15
### Fixed
16
16
- Fix broken array slicing inside ` addcyclic ` (PR [ #559 ] , solves issue
@@ -1020,7 +1020,9 @@ https://github.com/matplotlib/basemap/issues/228
1020
1020
https://github.com/matplotlib/basemap/issues/179
1021
1021
1022
1022
[ 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
1024
1026
[ 1.3.4] :
1025
1027
https://github.com/matplotlib/basemap/compare/v1.3.3...v1.3.4
1026
1028
[ 1.3.3] :
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def run(self):
172
172
"name" :
173
173
"basemap" ,
174
174
"version" :
175
- "1.3.4 " ,
175
+ "1.3.5 " ,
176
176
"license" :
177
177
"MIT" ,
178
178
"description" :
Original file line number Diff line number Diff line change 53
53
import _geoslib
54
54
import functools
55
55
56
+
57
+ __version__ = "1.3.5"
58
+
56
59
# basemap data files now installed in lib/matplotlib/toolkits/basemap/data
57
60
# check to see if environment variable BASEMAPDATA set to a directory,
58
61
# and if so look for the data there.
64
67
from mpl_toolkits import basemap_data
65
68
basemap_datadir = os .path .abspath (list (basemap_data .__path__ )[0 ])
66
69
67
- __version__ = "1.3.4"
68
-
69
70
# module variable that sets the default value for the 'latlon' kwarg.
70
71
# can be set to True by user so plotting functions can take lons,lats
71
72
# in degrees by default, instead of x,y (map projection coords in meters).
Original file line number Diff line number Diff line change 10
10
# as textwrap.dedent.
11
11
from matplotlib .cbook import dedent
12
12
13
- __version__ = "1.3.4"
13
+
14
+ __version__ = "1.3.5"
15
+
14
16
_dg2rad = math .radians (1. )
15
17
_rad2dg = math .degrees (1. )
16
18
You can’t perform that action at this time.
0 commit comments