This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new 713f543f9 AVRO-3667: [Python] Python 3.10 CI test fails since a while
(#1962)
713f543f9 is described below
commit 713f543f97e8f8c8a621be4ec1c1d29ba599e2a3
Author: Martin Grigorov <[email protected]>
AuthorDate: Mon Nov 14 13:05:23 2022 +0200
AVRO-3667: [Python] Python 3.10 CI test fails since a while (#1962)
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
(cherry picked from commit 53cdb411ef6477f0443b6a653d42354b8f6f3692)
---
lang/py/avro/compatibility.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lang/py/avro/compatibility.py b/lang/py/avro/compatibility.py
index 0ce084ae6..9aefc0075 100644
--- a/lang/py/avro/compatibility.py
+++ b/lang/py/avro/compatibility.py
@@ -82,7 +82,7 @@ class SchemaCompatibilityResult:
def __init__(
self,
compatibility: SchemaCompatibilityType =
SchemaCompatibilityType.recursion_in_progress,
- incompatibilities: List[SchemaIncompatibilityType] = None,
+ incompatibilities: Optional[List[SchemaIncompatibilityType]] = None,
messages: Optional[Set[str]] = None,
locations: Optional[Set[str]] = None,
):