From d251815d973185118643fa9ae9d3c19e513d9115 Mon Sep 17 00:00:00 2001 From: Sameer Sheorey <41028320+ssheorey@users.noreply.github.com> Date: Mon, 30 Dec 2024 21:32:25 -0800 Subject: [PATCH] Pin maturin to 1.7.8 for Windows build wheel CI (#7120) maturin>1.7.8 breaks dependency y-py (Python 3.12) and pywinpty (Python 3.8) wheel building. https://github.com/MichaIng/DietPi/issues/7329#issuecomment-2565130837 --- .github/workflows/windows.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2b05b2a07a9..ca964e050c2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -269,6 +269,9 @@ jobs: working-directory: ${{ env.SRC_DIR }} run: | $ErrorActionPreference = 'Stop' + # maturin>1.7.8 breaks dependency y-py (Python 3.12) and pywinpty (Python 3.8) wheel building + # https://github.com/MichaIng/DietPi/issues/7329#issuecomment-2565130837 + python -m pip install maturin==1.7.8 python -m pip install -r python/requirements.txt python -m pip install -r python/requirements_jupyter_build.txt