Skip to content

Commit

Permalink
Use scikit-learn<1.1.0 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelvallat committed Jun 18, 2022
1 parent d7481ab commit 742f930
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ b. Allow :py:func:`pingouin.bayesfactor_binom` to take Beta alternative model. `
c. Allow keyword arguments for logistic regression in :py:func:`pingouin.mediation_analysis`. `PR 245 <https://github.com/raphaelvallat/pingouin/pull/245>`_.
d. Major speed improvements for the Holm and FDR correction in :py:func:`pingouin.bayesfactor_binom`. `PR 271 <https://github.com/raphaelvallat/pingouin/pull/271>`_.

**Dependencies**

a. Force scikit-learn<1.1.0 to avoid bug in :py:func:`pingouin.logistic_regression`. `PR 272 <https://github.com/raphaelvallat/pingouin/issues/272>`_.

v0.5.1 (February 2022)
----------------------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas>=1.0
matplotlib>=3.0.2
seaborn>=0.11
statsmodels>=0.13
scikit-learn
scikit-learn<1.1.0
pandas_flavor>=0.2.0
outdated
tabulate
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(fname):
'matplotlib>=3.0.2',
'seaborn>=0.11',
'statsmodels>=0.13',
'scikit-learn',
'scikit-learn<1.1.0',
'pandas_flavor>=0.2.0',
'outdated',
'tabulate'
Expand Down

0 comments on commit 742f930

Please sign in to comment.