File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed
Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ def test_bartlett_auto(data: ArrayLike):
125125 assert int (nw .bandwidth ) == expected_bw
126126 expected = 1.0 - np .arange (nw .bandwidth + 1 ) / (nw .bandwidth + 1 )
127127 assert_allclose (nw .kernel_weights , expected )
128- resid = data - np .asarray (data .mean (0 ))
128+ resid = data - np .asarray (data .mean (axis = 0 ))
129129 resid = np .asarray (resid )
130130 nobs = resid .shape [0 ]
131131 expected_cov = resid .T @ resid / nobs
Original file line number Diff line number Diff line change @@ -39,6 +39,5 @@ eval $CMD
3939if [ " ${PIP_PRE} " = true ]; then
4040 python -m pip install matplotlib cython --upgrade
4141 python -m pip uninstall -y numpy pandas scipy matplotlib statsmodels
42- python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy pandas scipy matplotlib --upgrade --use-deprecated=legacy-resolver
43- python -m pip install git+https://github.com/statsmodels/statsmodels.git --upgrade --no-build-isolation -v
42+ python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy pandas scipy matplotlib statsmodels --upgrade --use-deprecated=legacy-resolver
4443fi
Original file line number Diff line number Diff line change @@ -10,9 +10,10 @@ Past Releases
1010.. toctree ::
1111 :maxdepth: 1
1212
13+ changes/7.0
14+ changes/6.0
1315 changes/5.0
1416 changes/4.0
1517 changes/3.0
1618 changes/2.0
1719 changes/1.0
18-
Original file line number Diff line number Diff line change 1+ =========
2+ Version 7
3+ =========
4+
5+ Release 7.0
6+ ===========
7+ - Full compatability with NumPy 2
8+ - Improved compatability with future changes in pandas 3.
9+ - Increases in related minimum requirements.
10+
11+ .. note ::
12+
13+ In order to use NumPy 2, the environment must consist of packages
14+ that have been built against NumPy 2.0.0rc1 or later.
You can’t perform that action at this time.
0 commit comments