From 919dc0d325fafaf01882ed0ec42c775b149eaf07 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 7 Mar 2026 21:27:01 +0000 Subject: [PATCH] requires-plugins seems to be bugged on Windows... see https://github.com/python-poetry/poetry/issues/10028 upd poe dep so it uses the one in poetry environment --- pyproject.toml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 12663da..ae4db36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,21 +2,17 @@ name = "voicemeeter-api" version = "2.7.2" description = "A Python wrapper for the Voiceemeter API" -authors = [ - {name = "Onyx and Iris",email = "code@onyxandiris.online"} -] -license = {text = "MIT"} +authors = [{ name = "Onyx and Iris", email = "code@onyxandiris.online" }] +license = { text = "MIT" } readme = "README.md" requires-python = ">=3.10" -dependencies = [ - "tomli (>=2.0.1,<3.0) ; python_version < '3.11'", -] +dependencies = ["tomli (>=2.0.1,<3.0) ; python_version < '3.11'"] [tool.poetry] packages = [{ include = "voicemeeterlib" }] [tool.poetry.requires-plugins] -poethepoet = "^0.35.0" +poethepoet = ">=0.42.0" [tool.poetry.group.dev.dependencies] pytest = "^8.3.4" @@ -125,7 +121,4 @@ docstring-code-line-length = "dynamic" max-complexity = 10 [tool.ruff.lint.per-file-ignores] -"__init__.py" = [ - "E402", - "F401", -] +"__init__.py" = ["E402", "F401"]