Skip to content

Commit

Permalink
fix typo in tests and tag version 0.8.2
Browse files Browse the repository at this point in the history
changes since 0.8.1:

- bugfix for windows (e80401d)
- nodata_value property exposed on RegularGrid
- experimental RegularGrid._align_origin method
- resample functions in raster.crfuncs not take an `na` parameter
  • Loading branch information
njwilson23 committed Mar 26, 2017
1 parent d2a7ce3 commit a2253b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# The short X.Y version.
version = '0.8'
# The full version, including alpha/beta/rc tags.
release = '0.8.1'
release = '0.8.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion karta/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.1"
__version__ = "0.8.2"
2 changes: 1 addition & 1 deletion tests/grid_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def test_align_origin(self):
xx, yy = np.meshgrid(np.linspace(0, 1, 50), np.linspace(0, 1, 30))
zz = 2.0*xx**2 - 3.0*yy**2
grid = RegularGrid((27, 53, 5, 5, 0, 0), values=zz)
new_grid = grid.align_origin(5, 5, method='linear')
new_grid = grid._align_origin(5, 5, method='linear')
self.assertEqual(new_grid.origin, (25, 55))
self.assertTrue(np.isnan(new_grid.values[0, 0]))
return
Expand Down

0 comments on commit a2253b1

Please sign in to comment.