Use older maturin version due to PyO3/maturin#478

This commit is contained in:
Wilson Lin 2021-04-06 19:28:34 +10:00
parent a21cc0b64f
commit a2cc9d9ad6
1 changed files with 2 additions and 2 deletions

View File

@ -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