From 2f411ee4e3038f412c0478a6c78da9043b944980 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Thu, 7 Nov 2024 18:03:00 -0700 Subject: [PATCH 1/2] Add changelog for 2.1.2 release --- docs/changelog.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 66f61d9..fe72889 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2.1.2 (2024-11-07) + +## Major Changes + +- array-api-strict now requires NumPy >= 2.1 and Python >= 3.10 + ## 2.1.1 (2024-11-07) ### Major Changes From c9fe697bec8de8e402d8beb71bbeb96ca70c772e Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Thu, 7 Nov 2024 18:09:02 -0700 Subject: [PATCH 2/2] Revert "Revert "Comment out TestPyPI publishing"" This reverts commit 2d3ebd9b4ef1df51535605d54a9c47ae026b4e50. --- .github/workflows/publish-package.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index bddb802..825b0a0 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -91,16 +91,16 @@ jobs: - name: List all files run: ls -lh dist - - name: Publish distribution 📦 to Test PyPI - # Publish to TestPyPI on tag events of if manually triggered - # Compare to 'true' string as booleans get turned into strings in the console - if: >- - (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) - || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true') - uses: pypa/gh-action-pypi-publish@v1.12.2 - with: - repository-url: https://test.pypi.org/legacy/ - print-hash: true + # - name: Publish distribution 📦 to Test PyPI + # # Publish to TestPyPI on tag events of if manually triggered + # # Compare to 'true' string as booleans get turned into strings in the console + # if: >- + # (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) + # || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true') + # uses: pypa/gh-action-pypi-publish@v1.12.2 + # with: + # repository-url: https://test.pypi.org/legacy/ + # print-hash: true - name: Publish distribution 📦 to PyPI if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')