From 4fe962792f22912295ad96967bd64c9b860377f7 Mon Sep 17 00:00:00 2001 From: James Douglass Date: Tue, 8 Oct 2024 11:27:35 -0700 Subject: [PATCH 1/2] Update HISTORY.rst for 2.4.5 release. --- HISTORY.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 191573d3..6662f102 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,9 @@ Release History =============== -Unreleased Changes +.. Unreleased Changes + +2.4.5 (2024-10-08) ------------------ * Updating for numpy 2.0 API changes. Pygeoprocessing is now compatible with numpy 2.0 and later. https://github.com/natcap/pygeoprocessing/issues/396 From 25a1babc1357ad614820c7d7ac3a7d0ff2ba39b1 Mon Sep 17 00:00:00 2001 From: James Douglass Date: Tue, 8 Oct 2024 11:35:31 -0700 Subject: [PATCH 2/2] Updating the upload-artifact action to v4, per GHA warnings. --- .github/workflows/build-py-dists.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-py-dists.yml b/.github/workflows/build-py-dists.yml index 2a9e4fd0..013b6987 100644 --- a/.github/workflows/build-py-dists.yml +++ b/.github/workflows/build-py-dists.yml @@ -30,7 +30,7 @@ jobs: - name: Build wheel run: python -m build --wheel - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v4 with: name: Wheel for ${{ matrix.os }} ${{ matrix.python-version }} path: dist @@ -58,7 +58,7 @@ jobs: - name: Build source distribution run: python -m build --sdist - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v4 with: name: Source distribution path: dist