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