Skip to content

Commit a61dc7d

Browse files
authored
Merge pull request #722 from bashtage/rls-7
DOC: Update for release 7.0
2 parents 578501d + 1f656e5 commit a61dc7d

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

arch/tests/covariance/test_covariance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

ci/azure/install-posix.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,5 @@ eval $CMD
3939
if [ "${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
4443
fi

doc/source/changes.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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-

doc/source/changes/7.0.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.

0 commit comments

Comments
 (0)