From 28b8e66bc6d273398f87105f93735e01300c7dcf Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 10 Dec 2024 20:42:54 +0100 Subject: [PATCH] DRAFT: Python 3.13 fails only on Windows (#65) * DRAFT: Test on Python 3.13 beta * Python 3.13 production release * Update ci.yml * Update ci.yml --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4abc39c..e2afe74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: astral-sh/ruff-action@v2 - run: pipx run 'codespell[toml]' **/*.py **/*.txt --skip="venv/lib/python3*" - - run: pipx run ruff check --output-format=github --target-version=py39 ci: needs: [codespell_and_ruff] @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 - with: {python-version: 3.x} + with: {python-version: 3.13} - if: runner.os == 'Linux' run: | sudo apt-get update @@ -34,11 +34,11 @@ jobs: run: | brew install fluid-synth echo "DYLD_LIBRARY_PATH=$(brew --prefix fluid-synth)/lib/" >> $GITHUB_ENV - - if: runner.os == 'Windows' - run: choco install fluidsynth - run: python -m pip install --upgrade pip - run: pip install pyaudio - run: pip install --editable . + - if: runner.os == 'Windows' + run: choco install fluidsynth - shell: python run: | import fluidsynth