From 203c073a87e9e20ba525ca6e5306557caba9deb6 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 14 Oct 2024 12:02:02 +0200 Subject: [PATCH] ruff --target-version=py39 (#131) Python 3.8 is no longer supported. https://devguide.python.org/versions --- .github/workflows/codespell_and_ruff.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codespell_and_ruff.yml b/.github/workflows/codespell_and_ruff.yml index 608025f..909409e 100644 --- a/.github/workflows/codespell_and_ruff.yml +++ b/.github/workflows/codespell_and_ruff.yml @@ -14,6 +14,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: pip install --user codespell[toml] ruff + - run: pipx install codespell[toml] ruff - run: codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po" - - run: ruff check --output-format=github --target-version=py38 . + - run: ruff check --output-format=github --target-version=py39