fix: 将支持的manifest版本从3更改为1

pull/1050/head
墨梓柒 2025-06-19 23:48:17 +08:00
parent 2bc0451f62
commit 250baa0172
No known key found for this signature in database
GPG Key ID: 4A65B9DBA35F7635
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ class ManifestValidator:
# 建议填写的字段(会给出警告但不会导致验证失败)
RECOMMENDED_FIELDS = ["license", "keywords", "categories"]
SUPPORTED_MANIFEST_VERSIONS = [3]
SUPPORTED_MANIFEST_VERSIONS = [1]
def __init__(self):
self.validation_errors = []