pre-commit: Upgrade the Python linter ruff (#2370)

This commit is contained in:
Christian Clauss
2025-08-18 13:36:36 +02:00
committed by GitHub
parent 67fa31e4ea
commit 4bf3651c9a
5 changed files with 4 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ repos:
- tomli - tomli
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.8 rev: v0.12.8
hooks: hooks:
- id: ruff - id: ruff
exclude: core/tests exclude: core/tests

View File

@@ -10,7 +10,7 @@ from pyscript import document, window, PyWorker
from libthree import THREE, clear, SoundPlayer from libthree import THREE, clear, SoundPlayer
from libthree import get_renderer, get_ortho_camera from libthree import get_renderer, get_ortho_camera
from libthree import get_loading_manager, get_stats_gl from libthree import get_loading_manager, get_stats_gl
from libthree import lsgeo, line2, linemat, lsgeo from libthree import line2, linemat, lsgeo
from libfft import BeatSync from libfft import BeatSync
from multipyjs import MICROPYTHON, new, call, to_js, create_proxy from multipyjs import MICROPYTHON, new, call, to_js, create_proxy

View File

@@ -32,7 +32,7 @@ def test_js_module_is_available_on_worker():
@upytest.skip("Worker only.", skip_when=not RUNNING_IN_WORKER) @upytest.skip("Worker only.", skip_when=not RUNNING_IN_WORKER)
def test_js_module_is_available_on_worker(): def test_js_module_is_available_on_greeting_worker():
""" """
The "hello" function in the example_js_worker_module.js file is available The "hello" function in the example_js_worker_module.js file is available
via the js_modules object while running in a worker. via the js_modules object while running in a worker.

View File

@@ -2,7 +2,6 @@
Tests for the PyScript media module. Tests for the PyScript media module.
""" """
from pyscript import media
import upytest import upytest
from pyscript import media from pyscript import media

View File

@@ -5,5 +5,5 @@ skip = "*.js,*.json"
[tool.ruff] [tool.ruff]
line-length = 114 line-length = 114
lint.select = ["C4", "C90", "E", "EM", "F", "PIE", "PYI", "PLC", "Q", "RET", "W"] lint.select = ["C4", "C90", "E", "EM", "F", "PIE", "PYI", "PLC", "Q", "RET", "W"]
lint.ignore = ["E402", "E722", "E731", "E741", "F401", "F704", "F811", "F821"] lint.ignore = ["E402", "E722", "E731", "E741", "F401", "F704", "F821", "PLC0415"]
lint.mccabe.max-complexity = 27 lint.mccabe.max-complexity = 27