From fd7dba1d746d6a7fb10a04e7bc62e6fde4e5266e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 13 Aug 2020 17:50:44 +0300 Subject: [PATCH] Package Manifest: increase package author.name field to the 100 chars --- platformio/package/manifest/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/package/manifest/schema.py b/platformio/package/manifest/schema.py index b886fb5a..8befab52 100644 --- a/platformio/package/manifest/schema.py +++ b/platformio/package/manifest/schema.py @@ -84,7 +84,7 @@ class StrictListField(fields.List): class AuthorSchema(StrictSchema): - name = fields.Str(required=True, validate=validate.Length(min=1, max=50)) + name = fields.Str(required=True, validate=validate.Length(min=1, max=100)) email = fields.Email(validate=validate.Length(min=1, max=50)) maintainer = fields.Bool(default=False) url = fields.Url(validate=validate.Length(min=1, max=255))