#1112545 nala: please make use of python3-tomli optional on modern Debian

#1112545#5
Date:
2025-08-30 17:09:36 UTC
From:
To:
Dear Maintainer,

python3-tomli will be dropped someday.

Please hybridize you code to make it prefer tomllib.

tomllib is the name of the copy of tomli that
got merged in the standard lbirary from Python 3.11 and up

https://wiki.debian.org/Python/Backports


Greetings

Alexandre







diff --git a/nala/options.py b/nala/options.py
index 7b92245..dde9270 100644
--- a/nala/options.py
+++ b/nala/options.py
@@ -30,7 +30,10 @@ from pydoc import pager
 from subprocess import run
 from typing import Dict, List, NoReturn, Optional, Union, cast