From 413668baacc0ddfc462b444b479aab6d28ae954b Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 4 May 2026 21:01:01 +0300 Subject: [PATCH 1/3] fix condition to allow upload to anaconda.org --- .github/workflows/posix.yml | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index ac3f30af..4365664e 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -124,7 +124,8 @@ jobs: path: dist/scipy_openblas*.whl - name: Upload to ananconda.org - if: ${{ inputs.publish == false && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }} + if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || + (github.event_name == 'push' && github.ref == 'refs/heads/main') }} uses: scientific-python/upload-nightly-action@0.6.4 with: artifacts_path: dist diff --git a/pyproject.toml b/pyproject.toml index d93ec5eb..a3357b32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "scipy-openblas64" # v0.3.33 -version = "0.3.33.0.0" +version = "0.3.33.0.1" requires-python = ">=3.7" description = "Provides OpenBLAS for python packaging" readme = "README.md" From dc860573058f178fa2b7ddfe473af29c838e4f5c Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 4 May 2026 23:37:38 +0300 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eee17f3..324223a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## OpenBLAS v0.3.33 +### 0.3.33.0.1 (2026-05-04) +- Fix posix uploads to anaconda.org + ### 0.3.33.0.0 (2026-05-03) - Update to OpenBLAS 0.3.33 From e0a38101f110aa961f2ea723fe938d5fff1a5335 Mon Sep 17 00:00:00 2001 From: mattip Date: Tue, 5 May 2026 09:54:04 +0300 Subject: [PATCH 3/3] typo --- .github/workflows/posix.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index 4365664e..0e81e0a0 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -124,8 +124,7 @@ jobs: path: dist/scipy_openblas*.whl - name: Upload to ananconda.org - if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || - (github.event_name == 'push' && github.ref == 'refs/heads/main') }} + if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }} uses: scientific-python/upload-nightly-action@0.6.4 with: artifacts_path: dist