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 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* 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"]