Skip to content

Commit

Permalink
DRAFT: Python 3.13 fails only on Windows (#65)
Browse files Browse the repository at this point in the history
* DRAFT: Test on Python 3.13 beta

* Python 3.13 production release

* Update ci.yml

* Update ci.yml
  • Loading branch information
cclauss authored Dec 10, 2024
1 parent af83c1f commit 28b8e66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 28b8e66

Please sign in to comment.