Add python 3.14 to supported versions (#1599)

* Add python 3.14 to our supported versions and to our CI
* Convert to use pyproject.toml standard dependency groups
* Fix any issues reported by CI
This commit is contained in:
Teemu R.
2026-07-07 20:46:57 +02:00
committed by GitHub
parent 531be8437a
commit 8840fc395e
11 changed files with 1488 additions and 895 deletions

View File

@@ -414,7 +414,7 @@ async def shell(dev: Device) -> None:
@click.argument("parameters", default=None, required=False)
async def raw_command(ctx, module, command, parameters):
"""Run a raw command on the device."""
logging.warning("Deprecated, use 'kasa command --module %s %s'", module, command)
logging.warning("Deprecated, use 'kasa command --module %s %s'", module, command) # noqa: LOG015
return await ctx.forward(cmd_command)