From ea31bbfc80c5e29c1cd7b2f0906acb9041cfaced Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Sun, 15 Dec 2024 23:12:22 -0500 Subject: [PATCH] Adds bump to another place in CI yaml and in README --- .github/workflows/ci.yaml | 2 +- README.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f7f815910..b8526e51a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -100,7 +100,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Install openblas run: sudo apt-get install libopenblas-dev gfortran - - run: ./scripts/blas-integ-tests.sh "$FEATURES" 1.67.0 + - run: ./scripts/blas-integ-tests.sh "$FEATURES" 1.71.0 miri: runs-on: ubuntu-latest diff --git a/README.rst b/README.rst index ef6577f13..3d0567639 100644 --- a/README.rst +++ b/README.rst @@ -161,8 +161,8 @@ BLAS on MSRV ------------ Although ``ndarray`` currently maintains an MSRV of 1.64.0, this is separate from the MSRV (either stated or real) of the various BLAS providers. -As of the time of writing, ``openblas`` currently supports MSRV of 1.67.0. -So, while ``ndarray`` and ``openblas-src`` are compatible, they can only work together with toolchains 1.67.0 or above. +As of the time of writing, ``openblas`` currently supports MSRV of 1.71.0. +So, while ``ndarray`` and ``openblas-src`` are compatible, they can only work together with toolchains 1.71.0 or above. Recent Changes --------------