add eqedit poe script

minor bump
This commit is contained in:
onyx-and-iris 2025-06-15 23:38:11 +01:00
parent 1ff2017d51
commit 7232ba6248
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "voicemeeter-api"
version = "2.6.1"
version = "2.7.0"
description = "A Python wrapper for the Voiceemeter API"
authors = [
{name = "Onyx and Iris",email = "code@onyxandiris.online"}
@ -37,6 +37,7 @@ levels.script = "scripts:ex_levels"
midi.script = "scripts:ex_midi"
obs.script = "scripts:ex_obs"
observer.script = "scripts:ex_observer"
eqedit.script = "scripts:ex_eqedit"
test-basic.script = "scripts:test_basic"
test-banana.script = "scripts:test_banana"
test-potato.script = "scripts:test_potato"

View File

@ -37,6 +37,11 @@ def ex_observer():
subprocess.run([sys.executable, str(scriptpath)])
def ex_eqedit():
scriptpath = Path.cwd() / 'examples' / 'eq_edit' / '.'
subprocess.run([sys.executable, str(scriptpath)])
def test_basic():
subprocess.run(['tox'], env=os.environ.copy() | {'KIND': 'basic'})