From ba0ce2eb28f3356c75ba6ca38e09571137bc374b Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Sat, 14 Aug 2021 09:25:47 -0600 Subject: [PATCH] Allow LGPL deps --- tools/python/test_licenses.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/python/test_licenses.py b/tools/python/test_licenses.py index b9cf27a..524c99f 100644 --- a/tools/python/test_licenses.py +++ b/tools/python/test_licenses.py @@ -21,6 +21,7 @@ APPROVED_LICENSES = [ MPL20 := "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", PSFL := "License :: OSI Approved :: Python Software Foundation License", LGPL := "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", + LGPL3 := "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", ISCL := "License :: OSI Approved :: ISC License (ISCL)", ] @@ -42,6 +43,8 @@ LICENSES_BY_LOWERNAME = { "gpl": GPL1, "gpl2": GPL2, "gpl3": GPL3, + "lgpl": LGPL, + "lgpl3": LGPL3, "isc": ISCL,