From a2cc9d9ad6215e3f731ccbca045c112b267f9608 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Tue, 6 Apr 2021 19:28:34 +1000 Subject: [PATCH] Use older maturin version due to PyO3/maturin#478 --- .github/workflows/python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 8e1b4e5..cefacdb 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -51,10 +51,10 @@ jobs: - name: Install Python build tools (macOS) if: runner.os == 'macOS' - run: sudo pip install --upgrade maturin setuptools wheel twine + run: sudo pip install --upgrade maturin==0.9.4 setuptools wheel twine - name: Install Python build tools (Linux, Windows) if: runner.os != 'macOS' - run: pip install --upgrade maturin setuptools wheel twine + run: pip install --upgrade maturin==0.9.4 setuptools wheel twine - name: Pack and publish package shell: bash