1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix pyproject.toml license field must be a dict
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2025-09-16
--- python-pysnmp4-7.1.21.orig/pyproject.toml
+++ python-pysnmp4-7.1.21/pyproject.toml
@@ -6,7 +6,7 @@ authors = [
{name = "Ilya Etingof", email = "etingof@gmail.com"},
{name = "LeXtudio Inc.", email = "support@lextudio.com"}
]
-license = "BSD-2-Clause"
+license = { text = "BSD-2-Clause" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
|