Skip to content

Commit

Permalink
release: prepare v1.9.7 release
Browse files Browse the repository at this point in the history
- Update version and readme
- Fix documentation build
  • Loading branch information
slobodan-ilic committed Feb 15, 2019
1 parent ca45eb0 commit 7817a33
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ The detailed description can be found

## Changes

#### 1.9.7
- Implement Min Base Size suppression masks

#### 1.9.6
- Make `margin` explicit in CubeSlice
- Fix calculation of `scale_means_margin` as a result
Expand Down
2 changes: 1 addition & 1 deletion src/cr/cube/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

"""Initialization module for crunch-cube package."""

__version__ = "1.9.6"
__version__ = "1.9.7"
8 changes: 4 additions & 4 deletions src/cr/cube/cube_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ def min_base_size_mask(self, size, hs_dims=None):
(the values of the unweighted margins).

Usage:
>>> slice_ = cube.slices[0] # obtain a valid cube slice
>>> slice_.min_base_size_mask(30).row_mask
>>> slice_.min_base_size_mask(50).column_mask
>>> slice_.min_base_size_mask(22).table_mask
>>> cube_slice = CrunchCube(response).slices[0] # obtain a valid cube slice
>>> cube_slice.min_base_size_mask(30).row_mask
>>> cube_slice.min_base_size_mask(50).column_mask
>>> cube_slice.min_base_size_mask(22).table_mask
"""
return MinBaseSizeMask(self, size, hs_dims)

Expand Down

0 comments on commit 7817a33

Please sign in to comment.