mirror of
https://github.com/onyx-and-iris/nvda-addon-voicemeeter.git
synced 2026-03-20 20:09:11 +00:00
patch bump
upd ruff config
This commit is contained in:
parent
df023c67ea
commit
4c176cfd77
@ -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
|
||||
|
||||
@ -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" }
|
||||
|
||||
[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"]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user