patch bump

upd ruff config
This commit is contained in:
onyx-and-iris 2026-03-19 03:58:44 +00:00
parent df023c67ea
commit 4c176cfd77
2 changed files with 9 additions and 15 deletions

View File

@ -28,7 +28,7 @@ addon_info = {
The add-on requires Voicemeeter to be installed."""
),
# version
'addon_version': '1.1.0',
'addon_version': '1.1.1',
# Author(s)
'addon_author': 'onyx-and-iris <code@onyxandiris.online>',
# URL for the add-on documentation support

View File

@ -1,20 +1,15 @@
[project]
name = "nvda-addon-voicemeeter"
version = "1.1.0"
version = "1.1.1"
description = "A GUI-less NVDA Addon for Voicemeeter using the Remote API"
authors = [
{name = "Onyx and Iris", email = "code@onyxandiris.online"},
]
authors = [{ name = "Onyx and Iris", email = "code@onyxandiris.online" }]
dependencies = []
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
license = { text = "MIT" }
[dependency-groups]
build = [
"scons>=4.8.1",
"markdown>=3.7",
]
build = ["scons>=4.8.1", "markdown>=3.7"]
[tool.pdm]
distribution = false
@ -56,9 +51,11 @@ target-version = "py311"
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Enable flake8-errmsg (EM) warnings.
# Enable flake8-bugbear (B) warnings.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E4", "E7", "E9", "F"]
select = ["E4", "E7", "E9", "EM", "F", "B"]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.
@ -100,7 +97,4 @@ docstring-code-line-length = "dynamic"
max-complexity = 10
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"E402",
"F401",
]
"__init__.py" = ["E402", "F401"]