From 496c4f007774bd3e0ca28ef71d39aa000eec672a Mon Sep 17 00:00:00 2001 From: nanonanomachine Date: Sun, 9 Mar 2025 01:03:42 +0900 Subject: [PATCH] Specify the minimum supported python version --- .github/workflows/all.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index 8554a2e5..99e44154 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -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'