Skip to content

Commit

Permalink
Specify the minimum supported python version
Browse files Browse the repository at this point in the history
  • Loading branch information
nanonanomachine committed Mar 9, 2025
1 parent 5237551 commit 496c4f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
python -m pip install --upgrade pip
pip install ruff
- name: Lint Python code
run: ruff check ${{ runner.workspace }}/pedalboard --ignore=E203,F541 --exclude .git,dist,doc,build,vendors,'*.pyi' --line-length 100
run: ruff check ${{ runner.workspace }}/pedalboard --ignore=E203,F541 --exclude .git,dist,doc,build,vendors,'*.pyi' --line-length 100 --target-version py38
- name: Check Python formatting
run: ruff format --check ${{ runner.workspace }}/pedalboard --exclude .git,dist,doc,build,JUCE,examples,vendors,'*.pyi' --diff --line-length 100
run: ruff format --check ${{ runner.workspace }}/pedalboard --exclude .git,dist,doc,build,JUCE,examples,vendors,'*.pyi' --diff --line-length 100 --target-version py38

lint-cpp:
runs-on: 'ubuntu-20.04'
Expand Down

0 comments on commit 496c4f0

Please sign in to comment.