diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index ac3f30a..0e81e0a 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -124,7 +124,7 @@ 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/CHANGELOG.md b/CHANGELOG.md index 8eee17f..324223a 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 diff --git a/pyproject.toml b/pyproject.toml index d93ec5e..a3357b3 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"