From e48dfbaadca2b50b2a0e32128a8fa132fd8a1bd6 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 19 Jun 2023 11:38:43 +0300 Subject: [PATCH] Update SPDX Data to v3.21 --- platformio/package/manifest/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio/package/manifest/schema.py b/platformio/package/manifest/schema.py index 2075ac03..f1ec9445 100644 --- a/platformio/package/manifest/schema.py +++ b/platformio/package/manifest/schema.py @@ -276,9 +276,9 @@ class ManifestSchema(BaseSchema): @staticmethod @memoized(expire="1h") def load_spdx_licenses(): - version = "3.20" + version = "3.21" spdx_data_url = ( "https://raw.githubusercontent.com/spdx/license-list-data/" - "v%s/json/licenses.json" % version + f"v{version}/json/licenses.json" ) return json.loads(fetch_remote_content(spdx_data_url))