mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2026-04-13 11:03:31 +00:00
tomli/tomllib compatibility layer added.
python version requirement changed. updated installation instructions tomli added as runtime dependency if py ver < 3.11 minor version bump.
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
from pathlib import Path
|
||||
|
||||
import tomllib
|
||||
try:
|
||||
import tomllib
|
||||
except ModuleNotFoundError:
|
||||
import tomli as tomllib
|
||||
|
||||
configuration = {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user