Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release hyppo 0.2.2 #236

Merged
merged 3 commits into from
Dec 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,44 @@ Changelog

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

v0.2.2
------
| **Release date:** 7 December 2021
| **Supports:** Python 3.6+.

**New features:**

* Functions now can be reproducible using a `random_state` parameter
* Add warning for redundant rows when running :class:`hyppo.independence.MGC`
* Tests now also retun a ``namedtuple``

**Bug Fixes:**

* Change from L1 to L2 distance for the median heuristic
* Make median heuristic default for RBF and Gaussian kernels

**Documentation:**

* Update license in ``setup.py``
* Change reference style and store reference in a ``refs.bib`` file
* Updated papers in documentation from preprint to published versions
* Rename badges in README

**Maintenance:**

* Added support for Python 3.9
* Update pytest orbs version
* Make repository citeable with the new GitHub feature

**Authors:**

+ sampan501
+ kareef928 +
+ rflperry
+ Verathagnus +
+ PSSF23 +
+ hadasarik +

v0.2.1
------
| **Release date:** 25 February 2021
Expand Down
2 changes: 1 addition & 1 deletion hyppo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
import hyppo.time_series
import hyppo.tools

__version__ = "0.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion hyppo/independence/tests/test_mgc.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_oned(self, sim, obs_stat, obs_pvalue):
"sim, obs_stat, obs_pvalue",
[
(linear, 0.463, 1 / 1000), # test linear simulation
(spiral, 0.091, 0.003), # test spiral simulation
(spiral, 0.091, 0.01), # test spiral simulation
],
)
def test_fived(self, sim, obs_stat, obs_pvalue):
Expand Down