Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaussion committed Nov 18, 2020
1 parent 3c81730 commit b721044
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
What's New
==========

v0.3.x (unreleased)
-------------------
v0.3.1 (18 November 2020)
-------------------------

A minor release of the salem package to make up for a version problem
in v0.3.0.


v0.3.0 (20 August 2020)
Expand Down
2 changes: 1 addition & 1 deletion salem/graphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def _check_data(self, data=None, crs=None, interp='nearest',
if crs is None:
# Reform case, but with a sanity check
if not np.isclose(shp[0] / shp[1], self.grid.ny / self.grid.nx,
atol=1e-2):
atolgit =1e-2):
raise ValueError('Dimensions of data do not match the map.')

# need to resize if not same
Expand Down
2 changes: 1 addition & 1 deletion salem/tests/test_graphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ def test_hef_topo_withnan():


@requires_matplotlib
@pytest.mark.mpl_image_compare(baseline_dir=baseline_dir, tolerance=20)
@pytest.mark.mpl_image_compare(baseline_dir=baseline_dir, tolerance=25)
def test_gmap():
g = GoogleCenterMap(center_ll=(10.762660, 46.794221), zoom=13,
size_x=640, size_y=640)
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import importlib

MAJOR = 0
MINOR = 2
MICRO = 2
ISRELEASED = False
MINOR = 3
MICRO = 1
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''

Expand Down

0 comments on commit b721044

Please sign in to comment.