Skip to content

Commit 39e07ea

Browse files
committed
Merge branch 'release-1.3.1' into develop
2 parents dcd60fe + 438dea7 commit 39e07ea

File tree

7 files changed

+19
-14
lines changed

7 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and the
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
66
since version 1.3.0.
77

8-
## [Unreleased]
8+
## [1.3.1] - 2022-01-22
99

1010
### Added
1111
- Support for Python 3.10 (issues [#530] and [#531]).
@@ -16,6 +16,10 @@ since version 1.3.0.
1616
- Upgrade development requirements for Python 3.10.
1717
- Move `doc` folder into `packages/basemap`.
1818

19+
### Fixed
20+
- Fix error message when trying to load high- and full-resolution datasets
21+
without installing the `basemap-data-hires` package.
22+
1923
## [1.3.0] - 2021-12-28
2024

2125
### Added
@@ -891,7 +895,9 @@ https://github.com/matplotlib/basemap/issues/228
891895
https://github.com/matplotlib/basemap/issues/179
892896

893897
[Unreleased]:
894-
https://github.com/matplotlib/basemap/compare/v1.3.0...develop
898+
https://github.com/matplotlib/basemap/compare/v1.3.1...develop
899+
[1.3.1]:
900+
https://github.com/matplotlib/basemap/compare/v1.3.0...v1.3.1
895901
[1.3.0]:
896902
https://github.com/matplotlib/basemap/compare/v1.2.2rel...v1.3.0
897903
[1.2.2]:

packages/basemap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ https://spdx.org/licenses/LGPL-2.1-only.html
4545
https://spdx.org/licenses/MIT.html
4646

4747
[`LICENSE`]:
48-
https://github.com/matplotlib/basemap/blob/v1.3.0/packages/basemap/LICENSE
48+
https://github.com/matplotlib/basemap/blob/v1.3.1/packages/basemap/LICENSE
4949
[`LICENSE.geos`]:
50-
https://github.com/matplotlib/basemap/blob/v1.3.0/packages/basemap/LICENSE.geos
50+
https://github.com/matplotlib/basemap/blob/v1.3.1/packages/basemap/LICENSE.geos

packages/basemap/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def _default_to_zip(self):
170170
"name":
171171
"basemap",
172172
"version":
173-
"1.3.0+dev",
173+
"1.3.1",
174174
"license":
175175
"MIT",
176176
"description":

packages/basemap/src/mpl_toolkits/basemap/__init__.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
from mpl_toolkits import basemap_data
6565
basemap_datadir = os.path.abspath(list(basemap_data.__path__)[0])
6666

67-
__version__ = '1.3.0+dev'
67+
__version__ = "1.3.1"
6868

6969
# module variable that sets the default value for the 'latlon' kwarg.
7070
# can be set to True by user so plotting functions can take lons,lats
@@ -1223,11 +1223,10 @@ def _readboundarydata(self,name,as_polygons=False):
12231223
read boundary data, clip to map projection region.
12241224
"""
12251225
msg = dedent("""
1226-
Unable to open boundary dataset file. Only the 'crude', 'low',
1227-
'intermediate' and 'high' resolution datasets are installed by default.
1228-
If you are requesting a 'full' resolution dataset, you may need to
1229-
download and install those files separately
1230-
(see the basemap README for details).""")
1226+
Unable to open boundary dataset file. Only the 'crude', 'low' and
1227+
'intermediate' resolution datasets are installed by default. If you
1228+
are requesting a 'high' or 'full' resolution dataset, you need to
1229+
install the `basemap-data-hires` package.""")
12311230
# only gshhs coastlines can be polygons.
12321231
if name != 'gshhs': as_polygons=False
12331232
try:

packages/basemap/src/mpl_toolkits/basemap/proj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# as textwrap.dedent.
1111
from matplotlib.cbook import dedent
1212

13-
__version__ = '1.3.0+dev'
13+
__version__ = "1.3.1"
1414
_dg2rad = math.radians(1.)
1515
_rad2dg = math.degrees(1.)
1616

packages/basemap_data/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _default_to_zip(self):
8787
"name":
8888
"basemap_data",
8989
"version":
90-
"1.3.0+dev",
90+
"1.3.0",
9191
"license":
9292
"GNU Lesser General Public License v3 or later (LGPLv3+)",
9393
"description":

packages/basemap_data_hires/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _default_to_zip(self):
6565
"name":
6666
"basemap_data_hires",
6767
"version":
68-
"1.3.0+dev",
68+
"1.3.0",
6969
"license":
7070
"GNU Lesser General Public License v3 or later (LGPLv3+)",
7171
"description":

0 commit comments

Comments
 (0)