diff --git a/platformio/package/manifest/schema.py b/platformio/package/manifest/schema.py index f293ba5a..a818271f 100644 --- a/platformio/package/manifest/schema.py +++ b/platformio/package/manifest/schema.py @@ -252,5 +252,4 @@ 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" - return json.loads(fetch_remote_content(spdx_data_url)) + return json.load(open("@SPDX_LICENSE_LIST_DATA@/json/licenses.json"))