From f6af76d78f8b060d6ef0bd5c4cbc956d82ec675f Mon Sep 17 00:00:00 2001 From: mhostetter Date: Thu, 5 Sep 2024 20:45:30 -0400 Subject: [PATCH 1/3] Support NumPy 2.1 Fixes #432 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 780fcff1c..5bd3fa942 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "numba", # Use galois's version limitation "scipy", "matplotlib", - "galois == 0.4.1", # Exact match required because of use of internals + "galois == 0.4.2", # Exact match required because of use of internals "typing_extensions >= 4.0.0", # v4.0.0 is needed for use of Self (Python 3.11+) and Literal (Python 3.8+) ] dynamic = ["version"] From b5a2918db9cd0379bd1ecb3db2d77a6acf5dc974 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Thu, 5 Sep 2024 20:46:30 -0400 Subject: [PATCH 2/3] Fix codecov CI --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bda5e9896..6c35ea71b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -73,6 +73,7 @@ jobs: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: + version: v0.7.3 fail_ci_if_error: false verbose: true @@ -126,6 +127,7 @@ jobs: # - name: Upload coverage report # uses: codecov/codecov-action@v3 # with: + # version: v0.7.3 # fail_ci_if_error: false # verbose: true @@ -176,5 +178,6 @@ jobs: - name: Upload coverage report uses: codecov/codecov-action@v3 with: + version: v0.7.3 fail_ci_if_error: false verbose: true From 8c9d8789a674f855e1e9940b6e80ccb2351b7fe2 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Thu, 5 Sep 2024 20:47:28 -0400 Subject: [PATCH 3/3] Add release notes for v0.0.24 --- docs/release-notes/v0.0.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/release-notes/v0.0.md b/docs/release-notes/v0.0.md index 4520cc27e..d3b4814a4 100644 --- a/docs/release-notes/v0.0.md +++ b/docs/release-notes/v0.0.md @@ -4,6 +4,18 @@ tocdepth: 2 # v0.0 +## v0.0.24 + +*Released September 5, 2024* + +### Changes + +- Added support for NumPy 2.1. + +### Contributors + +- Matt Hostetter ([@mhostetter](https://github.com/mhostetter)) + ## v0.0.23 *Released July 28, 2024*