From 606fd9de93e44edfc20366c9be1a6a2667abdc01 Mon Sep 17 00:00:00 2001 From: Matti Picus Date: Tue, 20 Jan 2026 09:48:25 +1100 Subject: [PATCH] update to v0.3.31-22-g5ffbf38b --- OpenBLAS | 2 +- openblas_commit.txt | 2 +- pyproject.toml | 4 ++-- tools/download-wheels.py | 1 - 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/OpenBLAS b/OpenBLAS index 52ec7fa..5ffbf38 160000 --- a/OpenBLAS +++ b/OpenBLAS @@ -1 +1 @@ -Subproject commit 52ec7faf31c761162f22e9e6c9d91ffe202f2363 +Subproject commit 5ffbf38b41a1fe494d038efcb09cf22f4d527c22 diff --git a/openblas_commit.txt b/openblas_commit.txt index c6f2663..03c7814 100644 --- a/openblas_commit.txt +++ b/openblas_commit.txt @@ -1 +1 @@ -v0.3.30-443-g52ec7faf +v0.3.31-22-g5ffbf38b diff --git a/pyproject.toml b/pyproject.toml index 5e9ec50..bdb64d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,8 +8,8 @@ build-backend = "setuptools.build_meta" [project] name = "scipy-openblas64" -# v0.3.30-443-g52ec7faf -version = "0.3.30.443.1" +# v0.3.31-22-g5ffbf38b +version = "0.3.31.22.0" requires-python = ">=3.7" description = "Provides OpenBLAS for python packaging" readme = "README.md" diff --git a/tools/download-wheels.py b/tools/download-wheels.py index 68ec2e2..bfd79ac 100644 --- a/tools/download-wheels.py +++ b/tools/download-wheels.py @@ -55,7 +55,6 @@ def get_wheel_names(package, version): print(f"looking in {index_url}") index_html = http.request("GET", index_url) soup = BeautifulSoup(index_html.data, "html.parser") - breakpoint() return [xxx['href'] for xxx in soup.find_all('a', href=True) if version in str(xxx)]