From de9526dddb8535024cdeb7a82311a8f5f1164446 Mon Sep 17 00:00:00 2001 From: BoazBD <50696333+BoazBD@users.noreply.github.com> Date: Tue, 7 Jan 2025 17:53:28 +0200 Subject: [PATCH] Update ORT approved list (#2922) update ort script to ignore approved liceneses and packages Signed-off-by: BoazBD --- utils/get_licenses_from_ort.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/get_licenses_from_ort.py b/utils/get_licenses_from_ort.py index 6b4b6cb60e..0ba84559e7 100644 --- a/utils/get_licenses_from_ort.py +++ b/utils/get_licenses_from_ort.py @@ -34,6 +34,7 @@ "BSD-3-Clause OR Apache-2.0", "ISC", "MIT", + "MPL-2.0", "Zlib", "MIT OR Unlicense", "PSF-2.0", @@ -42,7 +43,9 @@ # Packages with non-pre-approved licenses that received manual approval. APPROVED_PACKAGES = [ "PyPI::pathspec:0.12.1", - "PyPI::certifi:2023.11.17" + "PyPI::certifi:2023.11.17", + "Crate::ring:0.17.8", + "Maven:org.json:json:20231013" ] SCRIPT_PATH = os.path.dirname(os.path.realpath(__file__))