From 244dba361471384c78ae137f2e6dc645d4a56cea Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 3 Mar 2021 21:31:42 +0200 Subject: [PATCH] JFrog shutdowns Bintray --- docs | 2 +- platformio/package/manifest/schema.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs b/docs index 0613d4fb..5502e13c 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 0613d4fba959dda936b55676fba42853f2533b65 +Subproject commit 5502e13ca5377bcd29bbec6db03599cf3742c929 diff --git a/platformio/package/manifest/schema.py b/platformio/package/manifest/schema.py index a3d940ee..612112ff 100644 --- a/platformio/package/manifest/schema.py +++ b/platformio/package/manifest/schema.py @@ -253,5 +253,9 @@ class ManifestSchema(BaseSchema): @staticmethod @memoized(expire="1h") def load_spdx_licenses(): - spdx_data_url = "https://dl.bintray.com/platformio/dl-misc/spdx-licenses-3.json" + version = "3.11" + spdx_data_url = ( + "hhttps://raw.githubusercontent.com/spdx/license-list-data/" + "v%s/json/licenses.json" % version + ) return json.loads(fetch_remote_content(spdx_data_url))