Skip to content

Commit 7aa48d7

Browse files
authored
release hyppo 0.2.2 (#236)
* fix inccorect p-value in unit tests * fix MGC unit tests * update version to 0.2.2
1 parent b8c04d0 commit 7aa48d7

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

docs/news.rst

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,44 @@ Changelog
55

66
*Note: People with a "+" by their names contributed a patch for the first time.*
77

8+
v0.2.2
9+
------
10+
| **Release date:** 7 December 2021
11+
| **Supports:** Python 3.6+.
12+
13+
**New features:**
14+
15+
* Functions now can be reproducible using a `random_state` parameter
16+
* Add warning for redundant rows when running :class:`hyppo.independence.MGC`
17+
* Tests now also retun a ``namedtuple``
18+
19+
**Bug Fixes:**
20+
21+
* Change from L1 to L2 distance for the median heuristic
22+
* Make median heuristic default for RBF and Gaussian kernels
23+
24+
**Documentation:**
25+
26+
* Update license in ``setup.py``
27+
* Change reference style and store reference in a ``refs.bib`` file
28+
* Updated papers in documentation from preprint to published versions
29+
* Rename badges in README
30+
31+
**Maintenance:**
32+
33+
* Added support for Python 3.9
34+
* Update pytest orbs version
35+
* Make repository citeable with the new GitHub feature
36+
37+
**Authors:**
38+
39+
+ sampan501
40+
+ kareef928 +
41+
+ rflperry
42+
+ Verathagnus +
43+
+ PSSF23 +
44+
+ hadasarik +
45+
846
v0.2.1
947
------
1048
| **Release date:** 25 February 2021

hyppo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
import hyppo.time_series
55
import hyppo.tools
66

7-
__version__ = "0.2.1"
7+
__version__ = "0.2.2"

hyppo/independence/tests/test_mgc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_oned(self, sim, obs_stat, obs_pvalue):
3838
"sim, obs_stat, obs_pvalue",
3939
[
4040
(linear, 0.463, 1 / 1000), # test linear simulation
41-
(spiral, 0.091, 0.003), # test spiral simulation
41+
(spiral, 0.091, 0.01), # test spiral simulation
4242
],
4343
)
4444
def test_fived(self, sim, obs_stat, obs_pvalue):

0 commit comments

Comments
 (0)