From 77043dc6305f86a3cb625f7cb5110500c0e33ba7 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 25 Sep 2024 10:20:57 +0100 Subject: [PATCH] use maturin release --- .github/workflows/release.yml | 3 +-- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa64896..cc9cc06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,10 +40,9 @@ jobs: - uses: actions/checkout@v4 - # TODO: swap to `pip install maturin>=1.7.2` once there's a new release - name: Install maturin, CFFI run: | - ${{ matrix.platform.python }} -m pip install git+https://github.com/PyO3/maturin.git + ${{ matrix.platform.python }} -m pip install maturin>=1.7.2 ${{ matrix.platform.python }} -m pip install cffi - name: Build wheel diff --git a/pyproject.toml b/pyproject.toml index 69022a4..f4aa2e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", ] dependencies = [ - "maturin>=1.7", + "maturin>=1.7.2", "numpy", "cffi", 'patchelf; platform_system == "Linux"',