From 880cc99806a78b9f9cc5a46a1b95a3f39b260916 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 13 Jun 2023 12:11:10 +0200 Subject: [PATCH] ruff --target-version=py38 --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2508fe3480..43f7c0ccf6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,8 @@ jobs: steps: - uses: actions/checkout@v3 - run: pip install --user ruff - - run: ruff --format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="PLC1901,S101,UP031" --target-version=py37 . + - run: ruff --format=github --select="E,F,PLC,PLE,UP,W,YTT" + --ignore="PLC1901,S101,UP031" --target-version=py38 . Tests: strategy: fail-fast: false