Skip to content

Commit

Permalink
Merge pull request #81 from dougiesquire/release_v0.3.2
Browse files Browse the repository at this point in the history
Release v0.3.2
  • Loading branch information
dougiesquire authored Sep 20, 2022
2 parents a681bda + a32899a commit 002d6bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Preparing Pull Requests
Release History
---------------

v0.3.2 (not released)
v0.3.2
~~~~~~~~~~~~~~~~~~~~~~~~~

- Fix bug producing TypeError when `weights` is provided with
Expand Down
3 changes: 2 additions & 1 deletion xhistogram/test/test_chunking_hypotheses.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
pytest.importorskip("hypothesis")

import hypothesis.strategies as st # noqa
from hypothesis import given # noqa
from hypothesis import given, settings # noqa


@st.composite
Expand Down Expand Up @@ -65,6 +65,7 @@ def test_all_chunking_patterns_2d(self, chunks):
np.testing.assert_allclose(hist, h.values)

# TODO mark as slow?
@settings(deadline=None)
@pytest.mark.parametrize("n_vars", [1, 2, 3, 4])
@given(chunk_shapes(n_dim=2, max_arr_len=7))
def test_all_chunking_patterns_dd_hist(self, n_vars, chunk_shapes):
Expand Down

0 comments on commit 002d6bd

Please sign in to comment.