Skip to content

Commit 2e4a856

Browse files
committed
release v0.5.2
1 parent a6cb745 commit 2e4a856

5 files changed

Lines changed: 23 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ hyppo requires the following:
3333
* [joblib](https://joblib.readthedocs.io/en/latest/) (>= 0.17.0)
3434
* [statsmodels](https://www.statsmodels.org/) (>= 0.14.4)
3535
* [patsy](https://patsy.readthedocs.io/en/latest/) (>= 0.5.1)
36-
* [pandas](https://pandas.pydata.org/) (>= 2.2.3)
36+
* [future](https://pypi.org/project/future/) (>=1.0.0)
3737

3838
### User installation
3939

docs/changelog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This is the list of changes to hyppo between each release. For full details, see
66
.. toctree::
77
:maxdepth: 1
88

9+
v0.5.2.md
910
v0.5.1.md
1011
v0.5.0.md
1112
v0.4.0.md

docs/changelog/v0.5.2.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# hyppo v0.5.2
2+
3+
## What's Changed
4+
* Update cca.py by @ricor07 in https://github.com/neurodata/hyppo/pull/425
5+
* fix of negative unbiased dcov for chi-square test by @LaggyMan in https://github.com/neurodata/hyppo/pull/430
6+
* Causal Treatment Effect Testing by @ebridge2 in https://github.com/neurodata/hyppo/pull/431
7+
* Bump ipython from 7.19.0 to 8.10.0 in /docs by @dependabot in https://github.com/neurodata/hyppo/pull/433
8+
* Remove autograd fallback in DifferentiableKernel and enforce manual gradients (Issue 322) by @tjoab in https://github.com/neurodata/hyppo/pull/432
9+
* fix future bug that is affecting package installs by @sampan501 in https://github.com/neurodata/hyppo/pull/435
10+
11+
## New Contributors
12+
* @ricor07 made their first contribution in https://github.com/neurodata/hyppo/pull/425
13+
* @LaggyMan made their first contribution in https://github.com/neurodata/hyppo/pull/430
14+
* @ebridge2 made their first contribution in https://github.com/neurodata/hyppo/pull/431
15+
* @tjoab made their first contribution in https://github.com/neurodata/hyppo/pull/432
16+
17+
**Full Changelog**: https://github.com/neurodata/hyppo/compare/v0.5.1...v0.5.2

hyppo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
import hyppo.causal
1010

1111

12-
__version__ = "0.5.1"
12+
__version__ = "0.5.2"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def run(self):
7979
author_email=AUTHOR_EMAIL,
8080
install_requires=REQUIRED_PACKAGES,
8181
url=URL,
82-
license="PolyForm Noncommercial License 1.0.0",
82+
license="MIT License",
8383
classifiers=[
8484
"Development Status :: 3 - Alpha",
8585
"Intended Audience :: Science/Research",
@@ -91,6 +91,8 @@ def run(self):
9191
"Programming Language :: Python :: 3.10",
9292
"Programming Language :: Python :: 3.11",
9393
"Programming Language :: Python :: 3.12",
94+
"Programming Language :: Python :: 3.13",
95+
"Programming Language :: Python :: 3.14",
9496
],
9597
packages=find_packages(),
9698
include_package_data=True,

0 commit comments

Comments
 (0)