From 7d3462c9e46367f1dfd8a4e47c5df64b0d5d2803 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 18:46:42 +0000 Subject: [PATCH 1/3] Update numpy requirement from <1.25.0 to <2.1.0 in /MPI Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v0.2.0...v2.0.2) --- updated-dependencies: - dependency-name: numpy dependency-version: 2.0.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- MPI/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPI/pyproject.toml b/MPI/pyproject.toml index 9ee0e98a..c32412f7 100644 --- a/MPI/pyproject.toml +++ b/MPI/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ ] dependencies = [ "numba<0.57.0", - "numpy<1.25.0", + "numpy<2.1.0", "numba_mpi>=0.30", "PyMPDATA", "PyMPDATA-examples", From 2f3895a6003e2aed825b6977298a02a418066980 Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Tue, 30 Dec 2025 13:42:11 +0100 Subject: [PATCH 2/3] bump codecov action to version 5.5.2 to solve upload issue? --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1877efda..7e4184fb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -101,7 +101,7 @@ jobs: pip install pytest-cov pytest --durations=10 -We tests/unit_tests --cov-report=xml --cov=PyMPDATA - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5.5.2 with: env_vars: PYTHON,MPI token: ${{ secrets.CODECOV_TOKEN }} From f9a74a430241b7b5f001665b6a29a375670e94b4 Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Tue, 30 Dec 2025 13:54:36 +0100 Subject: [PATCH 3/3] remove numpy version pin from dependencies --- MPI/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPI/pyproject.toml b/MPI/pyproject.toml index c32412f7..04e2b477 100644 --- a/MPI/pyproject.toml +++ b/MPI/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ ] dependencies = [ "numba<0.57.0", - "numpy<2.1.0", + "numpy", "numba_mpi>=0.30", "PyMPDATA", "PyMPDATA-examples",