From f85cf61d68014b1bcfe543cc2b22babdadeb17fd Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 8 Jul 2020 23:23:14 +0300 Subject: [PATCH] Revert back max length of author name to 50 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 080a7654..e19e6f25 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=100)) + name = fields.Str(required=True, validate=validate.Length(min=1, max=50)) 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))