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:
onyx-and-iris
2022-09-03 19:29:57 +01:00
parent 0c0a4372e7
commit b116c6a24f
7 changed files with 47 additions and 45 deletions

View File

@@ -1,6 +1,9 @@
from pathlib import Path
import tomllib
try:
import tomllib
except ModuleNotFoundError:
import tomli as tomllib
configuration = {}