From 3613d055693a04ecc73e4e89353bf2644b10b0e7 Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Fri, 12 Jan 2024 13:54:14 +0100 Subject: [PATCH] Update maturin to release version --- .github/workflows/test_and_deploy.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 0508e3b..1e2e7bd 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -31,7 +31,7 @@ jobs: toolchain: stable override: true - name: Install dependencies - run: pip install "maturin>=0.14,<0.15" "oldest-supported-numpy" pytest + run: pip install maturin "oldest-supported-numpy" pytest - name: Build wheel run: maturin build --release -i python -o dist - name: Install wheel @@ -55,7 +55,7 @@ jobs: with: python-version: "3.12" - name: Install dependencies - run: pip install "maturin>=0.14,<0.15" pytest + run: pip install maturin pytest - name: Build source distribution run: maturin sdist -o dist - name: Install source distribution diff --git a/pyproject.toml b/pyproject.toml index 2f85ba1..ab55e78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ python-source = "python-src" [build-system] requires = [ - "maturin>=0.14,<0.15", + "maturin", "oldest-supported-numpy" ] build-backend = "maturin"