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):
125
125
assert int (nw .bandwidth ) == expected_bw
126
126
expected = 1.0 - np .arange (nw .bandwidth + 1 ) / (nw .bandwidth + 1 )
127
127
assert_allclose (nw .kernel_weights , expected )
128
- resid = data - np .asarray (data .mean (0 ))
128
+ resid = data - np .asarray (data .mean (axis = 0 ))
129
129
resid = np .asarray (resid )
130
130
nobs = resid .shape [0 ]
131
131
expected_cov = resid .T @ resid / nobs
Original file line number Diff line number Diff line change @@ -39,6 +39,5 @@ eval $CMD
39
39
if [ " ${PIP_PRE} " = true ]; then
40
40
python -m pip install matplotlib cython --upgrade
41
41
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
44
43
fi
Original file line number Diff line number Diff line change @@ -10,9 +10,10 @@ Past Releases
10
10
.. toctree ::
11
11
:maxdepth: 1
12
12
13
+ changes/7.0
14
+ changes/6.0
13
15
changes/5.0
14
16
changes/4.0
15
17
changes/3.0
16
18
changes/2.0
17
19
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