From b04e316974907e454e147d5698ba2841f111fa06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 04:31:44 +0000 Subject: [PATCH 1/2] Bump actions/configure-pages from 4 to 5 Bumps [actions/configure-pages](https://github.com/actions/configure-pages) from 4 to 5. - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/configure-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index de12489a..488a4071 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/configure-pages@v4 + - uses: actions/configure-pages@v5 - uses: actions/jekyll-build-pages@v1 with: source: ./pages/ From c1d9cf5f4304e5a1145945caf2fde4b56b5cbbbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 04:41:23 +0000 Subject: [PATCH 2/2] Update numpy requirement from 0.20 to 0.21 Updates the requirements on [numpy](https://github.com/PyO3/rust-numpy) to permit the latest version. - [Release notes](https://github.com/PyO3/rust-numpy/releases) - [Changelog](https://github.com/PyO3/rust-numpy/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyO3/rust-numpy/compare/v0.20.0...v0.20.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dc9b2443..a69d648a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ extern = [] python = ["dep:numpy", "dep:pyo3"] [dependencies] -numpy = {version = "0.20", optional = true} +numpy = {version = "0.21", optional = true} pyo3 = {version = "0.20", features = ["extension-module"], optional = true} rand = "0.8.5" rand_distr = "0.4.3"