From de9b6e6802e209eb7fbfe93aa53e181e5156b845 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 23:19:21 +0000 Subject: [PATCH] Update maturin requirement from <0.14,>=0.13 to >=0.13,<1.8 in /tsar-py Updates the requirements on [maturin](https://github.com/pyo3/maturin) to permit the latest version. - [Release notes](https://github.com/pyo3/maturin/releases) - [Changelog](https://github.com/PyO3/maturin/blob/main/Changelog.md) - [Commits](https://github.com/pyo3/maturin/compare/v0.13.0...v1.7.5) --- updated-dependencies: - dependency-name: maturin dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yaml | 2 +- tsar-py/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ef3ad00..a648e75 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -48,7 +48,7 @@ jobs: - uses: messense/maturin-action@v1 with: command: build - args: --manifest-path tsar-py/Cargo.toml --release -o dist --universal2 + args: --manifest-path tsar-py/Cargo.toml --release -o dist - name: Upload wheels uses: actions/upload-artifact@v4 with: diff --git a/tsar-py/pyproject.toml b/tsar-py/pyproject.toml index f92b278..4e1c9c1 100644 --- a/tsar-py/pyproject.toml +++ b/tsar-py/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=0.13,<0.14"] +requires = ["maturin>=0.13,<1.8"] build-backend = "maturin" [project]