introPy
introPy copied to clipboard
Deprecation warning from scipy.stats (binder)
1_python_basics.ipynb gives a deprecation warning when executed on binder:
# a fancy import
from scipy.stats import binom_test as omg_binomial_testing_so_cool
print(omg_binomial_testing_so_cool(0.5, 10))
/tmp/ipykernel_87/3349728447.py:3: DeprecationWarning: 'binom_test' is deprecated in favour of 'binomtest' from version 1.7.0 and will be removed in Scipy 1.12.0.
print(omg_binomial_testing_so_cool(0.5, 10))
Version currently is 1.11.2, probably not far from 1.12.0.