diff --git a/buildVars.py b/buildVars.py index e2fd115..3e3a42b 100644 --- a/buildVars.py +++ b/buildVars.py @@ -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 ', # URL for the add-on documentation support diff --git a/pyproject.toml b/pyproject.toml index 1aa2766..1d87e66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]