From d5162dd28092725a56e16b549ea74f6feaf53c01 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 27 Jul 2026 21:36:38 +0200 Subject: [PATCH] [ci] Add back ruff pyflake checks and allow 3.14t to fail --- .github/workflows/pytest.yml | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 80c1d732..55f9281e 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,6 +13,7 @@ on: jobs: pytest: runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.python-version == '3.14t' }} strategy: fail-fast: false matrix: diff --git a/pyproject.toml b/pyproject.toml index 26a56cb0..02507dad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" target-version = "py310" [tool.ruff.lint] -select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF"] +select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF", "F"] ignore = [ "F403", # star imports in __init__ files are intentional "E501", # line too long